Repository: microsoft/cascadia-code Branch: main Commit: 56bcca3f2c1e Files: 41177 Total size: 75.5 MB Directory structure: gitextract_2ieojb86/ ├── .azure-pipelines.yml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_Report.yml │ │ ├── Documentation_Issue.md │ │ └── Feature_Request.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── FONTLOG.txt ├── LICENSE ├── OFL-FAQ.txt ├── README.md ├── SECURITY.md ├── build.py ├── doc/ │ └── CONTRIBUTING.md ├── pipelines/ │ ├── release.yml │ └── templates/ │ └── steps-esrp-signing.yml ├── requirements.in ├── requirements.txt └── sources/ ├── CascadiaCode-Bold.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _alef-ar.fina.rlig.glif │ │ ├── _alef-ar.fina.short.rlig.glif │ │ ├── _alefF_athatan-ar.fina.rlig.glif │ │ ├── _alefH_amzaabove-ar.fina.rlig.glif │ │ ├── _alefH_amzabelow-ar.fina.rlig.glif │ │ ├── _alefM_adda-ar.fina.rlig.glif │ │ ├── _alefT_hreeabove-ar.fina.rlig.glif │ │ ├── _alefT_woabove-ar.fina.rlig.glif │ │ ├── _alefW_asla-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── _alefabove.glif │ │ ├── _bar.glif │ │ ├── _cuberoot_fourthroot-ar.glif │ │ ├── _damma-ar.glif │ │ ├── _dot-ar.glif │ │ ├── _dotV_I_nvertedabove.glif │ │ ├── _dotV_above.glif │ │ ├── _dots.horz.below.glif │ │ ├── _doublebar.glif │ │ ├── _fatha-ar.glif │ │ ├── _four-persian.small01.glif │ │ ├── _fourdotscenter-ar.glif │ │ ├── _fourthroot-ar.glif │ │ ├── _hamzasmall-ar.glif │ │ ├── _hamzawavy.glif │ │ ├── _hehgoalcomma.glif │ │ ├── _highhamzaA_lef-ar.fina.rlig.glif │ │ ├── _invertedstroke.glif │ │ ├── _notdef.glif │ │ ├── _onedotstah.glif │ │ ├── _ringA_rabic.glif │ │ ├── _stroke.glif │ │ ├── _tahabove.glif │ │ ├── _tahabovesmall.glif │ │ ├── _threedots-ar.glif │ │ ├── _twodotshorizontal-ar.glif │ │ ├── _twodotstah.glif │ │ ├── _twodotsverticalabove-ar.glif │ │ ├── _vabove.glif │ │ ├── _vbelow-ar.glif │ │ ├── _vinvertedbelow-ar.glif │ │ ├── _yehR_ohingya-ar.fina.glif │ │ ├── _yehR_ohingya-ar.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae-ar.fina.glif │ │ ├── ae-ar.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── afghani-ar.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── ain-ar.fina.glif │ │ ├── ain-ar.glif │ │ ├── ain-ar.init.glif │ │ ├── ain-ar.medi.glif │ │ ├── ainT_hreedots-ar.fina.glif │ │ ├── ainT_hreedots-ar.glif │ │ ├── ainT_hreedots-ar.init.glif │ │ ├── ainT_hreedots-ar.medi.glif │ │ ├── ainT_hreedotsdownabove-ar.fina.glif │ │ ├── ainT_hreedotsdownabove-ar.glif │ │ ├── ainT_hreedotsdownabove-ar.init.glif │ │ ├── ainT_hreedotsdownabove-ar.medi.glif │ │ ├── ainT_wodotshorizontalabove-ar.fina.glif │ │ ├── ainT_wodotshorizontalabove-ar.glif │ │ ├── ainT_wodotshorizontalabove-ar.init.glif │ │ ├── ainT_wodotshorizontalabove-ar.medi.glif │ │ ├── ainT_wodotsverticalabove-ar.fina.glif │ │ ├── ainT_wodotsverticalabove-ar.glif │ │ ├── ainT_wodotsverticalabove-ar.init.glif │ │ ├── ainT_wodotsverticalabove-ar.medi.glif │ │ ├── alef-ar.fina.alt.glif │ │ ├── alef-ar.fina.glif │ │ ├── alef-ar.fina.rlig.glif │ │ ├── alef-ar.fina.short.alt.glif │ │ ├── alef-ar.fina.short.glif │ │ ├── alef-ar.fina.short.rlig.glif │ │ ├── alef-ar.glif │ │ ├── alef-ar.short.glif │ │ ├── alef-hb.glif │ │ ├── alefF_athatan-ar.fina.glif │ │ ├── alefF_athatan-ar.fina.rlig.glif │ │ ├── alefF_athatan-ar.glif │ │ ├── alefH_amzaabove-ar.fina.alt.glif │ │ ├── alefH_amzaabove-ar.fina.glif │ │ ├── alefH_amzaabove-ar.fina.rlig.glif │ │ ├── alefH_amzaabove-ar.glif │ │ ├── alefH_amzabelow-ar.fina.alt.glif │ │ ├── alefH_amzabelow-ar.fina.glif │ │ ├── alefH_amzabelow-ar.fina.rlig.glif │ │ ├── alefH_amzabelow-ar.glif │ │ ├── alefM_adda-ar.fina.alt.glif │ │ ├── alefM_adda-ar.fina.glif │ │ ├── alefM_adda-ar.fina.rlig.glif │ │ ├── alefM_adda-ar.glif │ │ ├── alefM_aksura-ar.fina.alt.glif │ │ ├── alefM_aksura-ar.fina.glif │ │ ├── alefM_aksura-ar.glif │ │ ├── alefM_aksura-ar.init.alt.glif │ │ ├── alefM_aksura-ar.init.glif │ │ ├── alefM_aksura-ar.medi.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.alt.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.glif │ │ ├── alefM_aksuraA_lefabove-ar.glif │ │ ├── alefT_hreeabove-ar.fina.alt.glif │ │ ├── alefT_hreeabove-ar.fina.glif │ │ ├── alefT_hreeabove-ar.fina.rlig.glif │ │ ├── alefT_hreeabove-ar.glif │ │ ├── alefT_woabove-ar.fina.alt.glif │ │ ├── alefT_woabove-ar.fina.glif │ │ ├── alefT_woabove-ar.fina.rlig.glif │ │ ├── alefT_woabove-ar.glif │ │ ├── alefW_asla-ar.fina.alt.glif │ │ ├── alefW_asla-ar.fina.glif │ │ ├── alefW_asla-ar.fina.rlig.glif │ │ ├── alefW_asla-ar.glif │ │ ├── alefW_avyhamzaabove-ar.fina.alt.glif │ │ ├── alefW_avyhamzaabove-ar.fina.glif │ │ ├── alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── alefW_avyhamzaabove-ar.glif │ │ ├── alefW_avyhamzabelow-ar.fina.alt.glif │ │ ├── alefW_avyhamzabelow-ar.fina.glif │ │ ├── alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── alefW_avyhamzabelow-ar.glif │ │ ├── alefabove-ar.glif │ │ ├── alefbelow-ar.glif │ │ ├── alefdagesh-hb.B_R_A_C_K_E_T_.500.glif │ │ ├── alefdagesh-hb.glif │ │ ├── alefpatah-hb.glif │ │ ├── alefqamats-hb.glif │ │ ├── allah-ar.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk-ar.glif │ │ ├── asterisk.glif │ │ ├── asteriskA_rt-ar.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── ayin-hb.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── beeh-ar.alt.glif │ │ ├── beeh-ar.fina.alt.glif │ │ ├── beeh-ar.fina.glif │ │ ├── beeh-ar.glif │ │ ├── beeh-ar.init.alt.glif │ │ ├── beeh-ar.init.glif │ │ ├── beeh-ar.medi.glif │ │ ├── beh-ar.alt.glif │ │ ├── beh-ar.fina.alt.glif │ │ ├── beh-ar.fina.glif │ │ ├── beh-ar.glif │ │ ├── beh-ar.init.alt.glif │ │ ├── beh-ar.init.glif │ │ ├── beh-ar.medi.glif │ │ ├── behD_otless-ar.alt.glif │ │ ├── behD_otless-ar.fina.alt.glif │ │ ├── behD_otless-ar.fina.glif │ │ ├── behD_otless-ar.glif │ │ ├── behD_otless-ar.init.alt.glif │ │ ├── behD_otless-ar.init.glif │ │ ├── behD_otless-ar.medi.glif │ │ ├── behM_eemabove-ar.alt.glif │ │ ├── behM_eemabove-ar.fina.alt.glif │ │ ├── behM_eemabove-ar.fina.glif │ │ ├── behM_eemabove-ar.glif │ │ ├── behM_eemabove-ar.init.alt.glif │ │ ├── behM_eemabove-ar.init.glif │ │ ├── behM_eemabove-ar.medi.glif │ │ ├── behT_hreedotshorizontalbelow-ar.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.glif │ │ ├── behT_hreedotshorizontalbelow-ar.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.glif │ │ ├── behT_hreedotshorizontalbelow-ar.medi.glif │ │ ├── behT_hreedotsupabove-ar.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.glif │ │ ├── behT_hreedotsupabove-ar.glif │ │ ├── behT_hreedotsupabove-ar.init.alt.glif │ │ ├── behT_hreedotsupabove-ar.init.glif │ │ ├── behT_hreedotsupabove-ar.medi.glif │ │ ├── behT_hreedotsupbelow-ar.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.glif │ │ ├── behT_hreedotsupbelow-ar.glif │ │ ├── behT_hreedotsupbelow-ar.init.alt.glif │ │ ├── behT_hreedotsupbelow-ar.init.glif │ │ ├── behT_hreedotsupbelow-ar.medi.glif │ │ ├── behT_wodotsbelowD_otabove-ar.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── behT_wodotsbelowD_otabove-ar.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.glif │ │ ├── behT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── behV_above-ar.alt.glif │ │ ├── behV_above-ar.fina.alt.glif │ │ ├── behV_above-ar.fina.glif │ │ ├── behV_above-ar.glif │ │ ├── behV_above-ar.init.alt.glif │ │ ├── behV_above-ar.init.glif │ │ ├── behV_above-ar.medi.glif │ │ ├── behV_below-ar.alt.glif │ │ ├── behV_below-ar.fina.alt.glif │ │ ├── behV_below-ar.fina.glif │ │ ├── behV_below-ar.glif │ │ ├── behV_below-ar.init.alt.glif │ │ ├── behV_below-ar.init.glif │ │ ├── behV_below-ar.medi.glif │ │ ├── behV_invertedbelow-ar.alt.glif │ │ ├── behV_invertedbelow-ar.fina.alt.glif │ │ ├── behV_invertedbelow-ar.fina.glif │ │ ├── behV_invertedbelow-ar.glif │ │ ├── behV_invertedbelow-ar.init.alt.glif │ │ ├── behV_invertedbelow-ar.init.glif │ │ ├── behV_invertedbelow-ar.medi.glif │ │ ├── beheh-ar.alt.glif │ │ ├── beheh-ar.fina.alt.glif │ │ ├── beheh-ar.fina.glif │ │ ├── beheh-ar.glif │ │ ├── beheh-ar.init.alt.glif │ │ ├── beheh-ar.init.glif │ │ ├── beheh-ar.medi.glif │ │ ├── behhamzaabove-ar.alt.glif │ │ ├── behhamzaabove-ar.fina.alt.glif │ │ ├── behhamzaabove-ar.fina.glif │ │ ├── behhamzaabove-ar.glif │ │ ├── behhamzaabove-ar.init.glif │ │ ├── behhamzaabove-ar.medi.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── bet-hb.glif │ │ ├── beta.glif │ │ ├── betdagesh-hb.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma-ar.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── cuberoot-ar.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dad-ar.alt.glif │ │ ├── dad-ar.fina.alt.glif │ │ ├── dad-ar.fina.glif │ │ ├── dad-ar.glif │ │ ├── dad-ar.init.glif │ │ ├── dad-ar.medi.glif │ │ ├── dadD_otbelow-ar.alt.glif │ │ ├── dadD_otbelow-ar.fina.alt.glif │ │ ├── dadD_otbelow-ar.fina.glif │ │ ├── dadD_otbelow-ar.glif │ │ ├── dadD_otbelow-ar.init.glif │ │ ├── dadD_otbelow-ar.medi.glif │ │ ├── dagesh-hb.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dahal-ar.fina.glif │ │ ├── dahal-ar.glif │ │ ├── dal-ar.fina.glif │ │ ├── dal-ar.glif │ │ ├── dalD_otbelow-ar.fina.glif │ │ ├── dalD_otbelow-ar.glif │ │ ├── dalD_otbelowT_ah-ar.fina.glif │ │ ├── dalD_otbelowT_ah-ar.glif │ │ ├── dalF_ourdots-ar.fina.glif │ │ ├── dalF_ourdots-ar.glif │ │ ├── dalR_ing-ar.fina.glif │ │ ├── dalR_ing-ar.glif │ │ ├── dalT_hreedotsbelow-ar.fina.glif │ │ ├── dalT_hreedotsbelow-ar.glif │ │ ├── dalT_hreedotsdown-ar.fina.glif │ │ ├── dalT_hreedotsdown-ar.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.fina.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.glif │ │ ├── dalV_invertedabove-ar.fina.glif │ │ ├── dalV_invertedabove-ar.glif │ │ ├── dalV_invertedbelow-ar.fina.glif │ │ ├── dalV_invertedbelow-ar.glif │ │ ├── dalet-hb.glif │ │ ├── daletdagesh-hb.glif │ │ ├── damma-ar.glif │ │ ├── dammatan-ar.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dateseparator-ar.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── ddahal-ar.fina.glif │ │ ├── ddahal-ar.glif │ │ ├── ddal-ar.fina.glif │ │ ├── ddal-ar.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── decimalseparator-ar.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotabove-ar.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelow-ar.glif │ │ ├── dotbelowcomb.glif │ │ ├── dotcenter-ar.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.comb.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dul-ar.fina.glif │ │ ├── dul-ar.glif │ │ ├── dyeh-ar.fina.glif │ │ ├── dyeh-ar.glif │ │ ├── dyeh-ar.init.glif │ │ ├── dyeh-ar.medi.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-ar.fina.alt.glif │ │ ├── e-ar.fina.glif │ │ ├── e-ar.glif │ │ ├── e-ar.init.alt.glif │ │ ├── e-ar.init.glif │ │ ├── e-ar.medi.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── ef-cy.loclB_G_R_.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight-ar.glif │ │ ├── eight-arinferior.glif │ │ ├── eight-arsuperior.glif │ │ ├── eight-persian.glif │ │ ├── eight-persianinferior.glif │ │ ├── eight-persiansuperior.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── el-cy.loclB_G_R_.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── endofayah-ar.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── fatha-ar.glif │ │ ├── fathatan-ar.glif │ │ ├── feh-ar.alt.glif │ │ ├── feh-ar.fina.alt.glif │ │ ├── feh-ar.fina.glif │ │ ├── feh-ar.glif │ │ ├── feh-ar.init.alt.glif │ │ ├── feh-ar.init.glif │ │ ├── feh-ar.medi.glif │ │ ├── fehD_otM_ovedbelow-ar.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.glif │ │ ├── fehD_otM_ovedbelow-ar.glif │ │ ├── fehD_otM_ovedbelow-ar.init.glif │ │ ├── fehD_otM_ovedbelow-ar.medi.glif │ │ ├── fehD_otbelow-ar.alt.glif │ │ ├── fehD_otbelow-ar.fina.alt.glif │ │ ├── fehD_otbelow-ar.fina.glif │ │ ├── fehD_otbelow-ar.glif │ │ ├── fehD_otbelow-ar.init.glif │ │ ├── fehD_otbelow-ar.medi.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.init.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.medi.glif │ │ ├── fehD_otless-ar.alt.glif │ │ ├── fehD_otless-ar.fina.alt.glif │ │ ├── fehD_otless-ar.fina.glif │ │ ├── fehD_otless-ar.glif │ │ ├── fehD_otless-ar.init.alt.glif │ │ ├── fehD_otless-ar.init.glif │ │ ├── fehD_otless-ar.medi.glif │ │ ├── fehT_hreedotsbelow-ar.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.glif │ │ ├── fehT_hreedotsbelow-ar.glif │ │ ├── fehT_hreedotsbelow-ar.init.glif │ │ ├── fehT_hreedotsbelow-ar.medi.glif │ │ ├── fehT_hreedotsupbelow-ar.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.glif │ │ ├── fehT_hreedotsupbelow-ar.glif │ │ ├── fehT_hreedotsupbelow-ar.init.glif │ │ ├── fehT_hreedotsupbelow-ar.medi.glif │ │ ├── fehT_wodotsbelow-ar.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.glif │ │ ├── fehT_wodotsbelow-ar.glif │ │ ├── fehT_wodotsbelow-ar.init.glif │ │ ├── fehT_wodotsbelow-ar.medi.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── finalkaf-hb.glif │ │ ├── finalkafdagesh-hb.glif │ │ ├── finalmem-hb.glif │ │ ├── finalnun-hb.glif │ │ ├── finalpe-hb.glif │ │ ├── finalpedagesh-hb.glif │ │ ├── finaltsadi-hb.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five-ar.glif │ │ ├── five-arinferior.glif │ │ ├── five-arsuperior.glif │ │ ├── five-persian.glif │ │ ├── five-persianinferior.glif │ │ ├── five-persiansuperior.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── footnotemarker-ar.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four-ar.glif │ │ ├── four-arinferior.glif │ │ ├── four-arsuperior.glif │ │ ├── four-persian.glif │ │ ├── four-persian.small01.glif │ │ ├── four-persian.urdu.glif │ │ ├── four-persian.urduinferior.glif │ │ ├── four-persian.urdusuperior.glif │ │ ├── four-persianbelow-ar.glif │ │ ├── four-persiancenter-ar.glif │ │ ├── four-persianinferior.glif │ │ ├── four-persiansuperior.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourdotsabove-ar.glif │ │ ├── fourdotsbelow-ar.glif │ │ ├── fourdotscenter-ar.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fourthroot-ar.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── fullstop-ar.glif │ │ ├── g.glif │ │ ├── gaf-ar.fina.glif │ │ ├── gaf-ar.glif │ │ ├── gaf-ar.init.glif │ │ ├── gaf-ar.medi.glif │ │ ├── gafI_nvertedstroke-ar.fina.glif │ │ ├── gafI_nvertedstroke-ar.glif │ │ ├── gafI_nvertedstroke-ar.init.glif │ │ ├── gafI_nvertedstroke-ar.medi.glif │ │ ├── gafR_ing-ar.fina.glif │ │ ├── gafR_ing-ar.glif │ │ ├── gafR_ing-ar.init.glif │ │ ├── gafR_ing-ar.medi.glif │ │ ├── gafT_hreedots-ar.fina.glif │ │ ├── gafT_hreedots-ar.glif │ │ ├── gafT_hreedots-ar.init.glif │ │ ├── gafT_hreedots-ar.medi.glif │ │ ├── gafT_wodotsbelow-ar.fina.glif │ │ ├── gafT_wodotsbelow-ar.glif │ │ ├── gafT_wodotsbelow-ar.init.glif │ │ ├── gafT_wodotsbelow-ar.medi.glif │ │ ├── gafsarkashabove-ar.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclB_G_R_.glif │ │ ├── geresh-hb.glif │ │ ├── germandbls.glif │ │ ├── gershayim-hb.glif │ │ ├── ghain-ar.fina.glif │ │ ├── ghain-ar.glif │ │ ├── ghain-ar.init.glif │ │ ├── ghain-ar.medi.glif │ │ ├── ghainD_otbelow-ar.fina.glif │ │ ├── ghainD_otbelow-ar.glif │ │ ├── ghainD_otbelow-ar.init.glif │ │ ├── ghainD_otbelow-ar.medi.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gimel-hb.glif │ │ ├── gimeldagesh-hb.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── gueh-ar.fina.glif │ │ ├── gueh-ar.glif │ │ ├── gueh-ar.init.glif │ │ ├── gueh-ar.medi.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hah-ar.fina.glif │ │ ├── hah-ar.glif │ │ ├── hah-ar.init.glif │ │ ├── hah-ar.medi.glif │ │ ├── hahF_ourbelow-ar.fina.glif │ │ ├── hahF_ourbelow-ar.glif │ │ ├── hahF_ourbelow-ar.init.glif │ │ ├── hahF_ourbelow-ar.medi.glif │ │ ├── hahH_amzaabove-ar.fina.glif │ │ ├── hahH_amzaabove-ar.glif │ │ ├── hahH_amzaabove-ar.init.glif │ │ ├── hahH_amzaabove-ar.medi.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_ahabove-ar.fina.glif │ │ ├── hahT_ahabove-ar.glif │ │ ├── hahT_ahabove-ar.init.glif │ │ ├── hahT_ahabove-ar.medi.glif │ │ ├── hahT_ahbelow-ar.fina.glif │ │ ├── hahT_ahbelow-ar.glif │ │ ├── hahT_ahbelow-ar.init.glif │ │ ├── hahT_ahbelow-ar.medi.glif │ │ ├── hahT_hreedotsabove-ar.fina.glif │ │ ├── hahT_hreedotsabove-ar.glif │ │ ├── hahT_hreedotsabove-ar.init.glif │ │ ├── hahT_hreedotsabove-ar.medi.glif │ │ ├── hahT_hreedotsupbelow-ar.fina.glif │ │ ├── hahT_hreedotsupbelow-ar.glif │ │ ├── hahT_hreedotsupbelow-ar.init.glif │ │ ├── hahT_hreedotsupbelow-ar.medi.glif │ │ ├── hahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_wodotsverticalabove-ar.fina.glif │ │ ├── hahT_wodotsverticalabove-ar.glif │ │ ├── hahT_wodotsverticalabove-ar.init.glif │ │ ├── hahT_wodotsverticalabove-ar.medi.glif │ │ ├── hamza-ar.glif │ │ ├── hamzaabove-ar.glif │ │ ├── hamzabelow-ar.glif │ │ ├── hardsign-cy.glif │ │ ├── hardsign-cy.loclB_G_R_.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── he-hb.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hedagesh-hb.glif │ │ ├── heh-ar.fina.glif │ │ ├── heh-ar.glif │ │ ├── heh-ar.init.glif │ │ ├── heh-ar.medi.glif │ │ ├── hehA_lefabove-ar.init.fina.glif │ │ ├── hehA_lefabove-ar.init.glif │ │ ├── hehD_oachashmee-ar.fina.glif │ │ ├── hehD_oachashmee-ar.glif │ │ ├── hehD_oachashmee-ar.init.glif │ │ ├── hehD_oachashmee-ar.medi.glif │ │ ├── hehH_amzaabove-ar.fina.glif │ │ ├── hehH_amzaabove-ar.glif │ │ ├── hehV_invertedabove-ar.fina.glif │ │ ├── hehV_invertedabove-ar.glif │ │ ├── hehV_invertedabove-ar.init.glif │ │ ├── hehV_invertedabove-ar.medi.glif │ │ ├── hehgoal-ar.fina.glif │ │ ├── hehgoal-ar.glif │ │ ├── hehgoal-ar.init.alt.glif │ │ ├── hehgoal-ar.init.glif │ │ ├── hehgoal-ar.medi.glif │ │ ├── hehgoalH_amzaabove-ar.fina.glif │ │ ├── hehgoalH_amzaabove-ar.glif │ │ ├── hehgoalH_amzaabove-ar.init.alt.glif │ │ ├── hehgoalH_amzaabove-ar.init.glif │ │ ├── hehgoalH_amzaabove-ar.medi.glif │ │ ├── het-hb.glif │ │ ├── highhamza-ar.glif │ │ ├── highhamzaA_lef-ar.fina.glif │ │ ├── highhamzaA_lef-ar.fina.rlig.glif │ │ ├── highhamzaA_lef-ar.glif │ │ ├── highhamzaW_aw-ar.fina.glif │ │ ├── highhamzaW_aw-ar.glif │ │ ├── highhamzaY_eh-ar.fina.alt.glif │ │ ├── highhamzaY_eh-ar.fina.glif │ │ ├── highhamzaY_eh-ar.glif │ │ ├── highhamzaY_eh-ar.init.alt.glif │ │ ├── highhamzaY_eh-ar.init.glif │ │ ├── highhamzaY_eh-ar.medi.glif │ │ ├── holam-hb.glif │ │ ├── holamhaser-hb.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── ii-cy.loclB_G_R_.glif │ │ ├── iigrave-cy.glif │ │ ├── iigrave-cy.loclB_G_R_.glif │ │ ├── iishort-cy.glif │ │ ├── iishort-cy.loclB_G_R_.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── jeem-ar.fina.glif │ │ ├── jeem-ar.glif │ │ ├── jeem-ar.init.glif │ │ ├── jeem-ar.medi.glif │ │ ├── jeemT_wodotsabove-ar.fina.glif │ │ ├── jeemT_wodotsabove-ar.glif │ │ ├── jeemT_wodotsabove-ar.init.glif │ │ ├── jeemT_wodotsabove-ar.medi.glif │ │ ├── jeh-ar.fina.glif │ │ ├── jeh-ar.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaf-ar.fina.glif │ │ ├── kaf-ar.glif │ │ ├── kaf-ar.init.glif │ │ ├── kaf-ar.medi.glif │ │ ├── kaf-hb.glif │ │ ├── kafD_otabove-ar.fina.glif │ │ ├── kafD_otabove-ar.glif │ │ ├── kafD_otabove-ar.init.glif │ │ ├── kafD_otabove-ar.medi.glif │ │ ├── kafR_ing-ar.fina.glif │ │ ├── kafR_ing-ar.glif │ │ ├── kafR_ing-ar.init.glif │ │ ├── kafR_ing-ar.medi.glif │ │ ├── kafT_hreedotsbelow-ar.fina.glif │ │ ├── kafT_hreedotsbelow-ar.glif │ │ ├── kafT_hreedotsbelow-ar.init.glif │ │ ├── kafT_hreedotsbelow-ar.medi.glif │ │ ├── kafT_wodotshorizontalabove-ar.fina.glif │ │ ├── kafT_wodotshorizontalabove-ar.glif │ │ ├── kafT_wodotshorizontalabove-ar.init.glif │ │ ├── kafT_wodotshorizontalabove-ar.medi.glif │ │ ├── kafdagesh-hb.glif │ │ ├── kafswash-ar.alt.glif │ │ ├── kafswash-ar.fina.alt.glif │ │ ├── kafswash-ar.fina.glif │ │ ├── kafswash-ar.glif │ │ ├── kafswash-ar.init.alt.glif │ │ ├── kafswash-ar.init.glif │ │ ├── kafswash-ar.medi.alt.glif │ │ ├── kafswash-ar.medi.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kashida-ar.glif │ │ ├── kasra-ar.glif │ │ ├── kasratan-ar.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── keheh-ar.fina.glif │ │ ├── keheh-ar.glif │ │ ├── keheh-ar.init.glif │ │ ├── keheh-ar.medi.glif │ │ ├── kehehD_otabove-ar.fina.glif │ │ ├── kehehD_otabove-ar.glif │ │ ├── kehehD_otabove-ar.init.glif │ │ ├── kehehD_otabove-ar.medi.glif │ │ ├── kehehT_hreedotsabove-ar.fina.glif │ │ ├── kehehT_hreedotsabove-ar.glif │ │ ├── kehehT_hreedotsabove-ar.init.glif │ │ ├── kehehT_hreedotsabove-ar.medi.glif │ │ ├── kehehT_hreedotsbelow-ar.fina.glif │ │ ├── kehehT_hreedotsbelow-ar.glif │ │ ├── kehehT_hreedotsbelow-ar.init.glif │ │ ├── kehehT_hreedotsbelow-ar.medi.glif │ │ ├── kehehT_hreedotsupbelow-ar.fina.glif │ │ ├── kehehT_hreedotsupbelow-ar.glif │ │ ├── kehehT_hreedotsupbelow-ar.init.glif │ │ ├── kehehT_hreedotsupbelow-ar.medi.glif │ │ ├── kehehT_wodotshorizontalabove-ar.fina.glif │ │ ├── kehehT_wodotshorizontalabove-ar.glif │ │ ├── kehehT_wodotshorizontalabove-ar.init.glif │ │ ├── kehehT_wodotshorizontalabove-ar.medi.glif │ │ ├── kgreenlandic.glif │ │ ├── khah-ar.fina.glif │ │ ├── khah-ar.glif │ │ ├── khah-ar.init.glif │ │ ├── khah-ar.medi.glif │ │ ├── kip.glif │ │ ├── kirghizoe-ar.fina.glif │ │ ├── kirghizoe-ar.glif │ │ ├── kirghizyu-ar.fina.glif │ │ ├── kirghizyu-ar.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── lacute.glif │ │ ├── lam-ar.fina.glif │ │ ├── lam-ar.glif │ │ ├── lam-ar.init.glif │ │ ├── lam-ar.init.rlig.glif │ │ ├── lam-ar.medi.glif │ │ ├── lam-ar.medi.rlig.glif │ │ ├── lamB_ar-ar.fina.glif │ │ ├── lamB_ar-ar.glif │ │ ├── lamB_ar-ar.init.glif │ │ ├── lamB_ar-ar.init.rlig.glif │ │ ├── lamB_ar-ar.medi.glif │ │ ├── lamB_ar-ar.medi.rlig.glif │ │ ├── lamD_otabove-ar.fina.glif │ │ ├── lamD_otabove-ar.glif │ │ ├── lamD_otabove-ar.init.glif │ │ ├── lamD_otabove-ar.init.rlig.glif │ │ ├── lamD_otabove-ar.medi.glif │ │ ├── lamD_otabove-ar.medi.rlig.glif │ │ ├── lamD_oublebar-ar.fina.glif │ │ ├── lamD_oublebar-ar.glif │ │ ├── lamD_oublebar-ar.init.glif │ │ ├── lamD_oublebar-ar.init.rlig.glif │ │ ├── lamD_oublebar-ar.medi.glif │ │ ├── lamD_oublebar-ar.medi.rlig.glif │ │ ├── lamT_hreedotsabove-ar.fina.glif │ │ ├── lamT_hreedotsabove-ar.glif │ │ ├── lamT_hreedotsabove-ar.init.glif │ │ ├── lamT_hreedotsabove-ar.init.rlig.glif │ │ ├── lamT_hreedotsabove-ar.medi.glif │ │ ├── lamT_hreedotsabove-ar.medi.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.fina.glif │ │ ├── lamT_hreedotsbelow-ar.glif │ │ ├── lamT_hreedotsbelow-ar.init.glif │ │ ├── lamT_hreedotsbelow-ar.init.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.medi.glif │ │ ├── lamT_hreedotsbelow-ar.medi.rlig.glif │ │ ├── lamV_above-ar.fina.glif │ │ ├── lamV_above-ar.glif │ │ ├── lamV_above-ar.init.glif │ │ ├── lamV_above-ar.init.rlig.glif │ │ ├── lamV_above-ar.medi.glif │ │ ├── lamV_above-ar.medi.rlig.glif │ │ ├── lam_alef-ar.fina.glif │ │ ├── lam_alef-ar.fina.short.glif │ │ ├── lam_alef-ar.glif │ │ ├── lam_alef-ar.short.glif │ │ ├── lam_alefH_amzaabove-ar.fina.glif │ │ ├── lam_alefH_amzaabove-ar.glif │ │ ├── lam_alefH_amzabelow-ar.fina.glif │ │ ├── lam_alefH_amzabelow-ar.glif │ │ ├── lam_alefM_adda-ar.fina.glif │ │ ├── lam_alefM_adda-ar.glif │ │ ├── lam_alefW_asla-ar.fina.glif │ │ ├── lam_alefW_asla-ar.glif │ │ ├── lam_lam_heh-ar.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── lamed-hb.glif │ │ ├── lameddagesh-hb.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbelt.glif │ │ ├── lcaron.glif │ │ ├── lcommaaccent.glif │ │ ├── ldot.glif │ │ ├── ldotbelow.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── lmiddletilde.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── madda-ar.glif │ │ ├── manat.glif │ │ ├── maqaf-hb.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── meem-ar.fina.glif │ │ ├── meem-ar.glif │ │ ├── meem-ar.init.glif │ │ ├── meem-ar.medi.glif │ │ ├── meemD_otabove-ar.fina.glif │ │ ├── meemD_otabove-ar.glif │ │ ├── meemD_otabove-ar.init.glif │ │ ├── meemD_otabove-ar.medi.glif │ │ ├── meemD_otbelow-ar.fina.glif │ │ ├── meemD_otbelow-ar.glif │ │ ├── meemD_otbelow-ar.init.glif │ │ ├── meemD_otbelow-ar.medi.glif │ │ ├── meemS_topabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.fina.glif │ │ ├── meemT_hreedotsabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.init.glif │ │ ├── meemT_hreedotsabove-ar.medi.glif │ │ ├── mem-hb.glif │ │ ├── memdagesh-hb.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── misraC_omma-ar.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── ng-ar.fina.glif │ │ ├── ng-ar.glif │ │ ├── ng-ar.init.glif │ │ ├── ng-ar.medi.glif │ │ ├── ngoeh-ar.fina.glif │ │ ├── ngoeh-ar.glif │ │ ├── ngoeh-ar.init.glif │ │ ├── ngoeh-ar.medi.glif │ │ ├── nhookleft.glif │ │ ├── nine-ar.glif │ │ ├── nine-arinferior.glif │ │ ├── nine-arsuperior.glif │ │ ├── nine-persian.glif │ │ ├── nine-persianinferior.glif │ │ ├── nine-persiansuperior.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── noon-ar.fina.glif │ │ ├── noon-ar.glif │ │ ├── noon-ar.init.alt.glif │ │ ├── noon-ar.init.glif │ │ ├── noon-ar.medi.glif │ │ ├── noonA_frican-ar.fina.glif │ │ ├── noonA_frican-ar.glif │ │ ├── noonA_frican-ar.init.alt.glif │ │ ├── noonA_frican-ar.init.glif │ │ ├── noonA_frican-ar.medi.glif │ │ ├── noonD_otbelow-ar.fina.glif │ │ ├── noonD_otbelow-ar.glif │ │ ├── noonD_otbelow-ar.init.alt.glif │ │ ├── noonD_otbelow-ar.init.glif │ │ ├── noonD_otbelow-ar.medi.glif │ │ ├── noonR_ing-ar.fina.glif │ │ ├── noonR_ing-ar.glif │ │ ├── noonR_ing-ar.init.alt.glif │ │ ├── noonR_ing-ar.init.glif │ │ ├── noonR_ing-ar.medi.glif │ │ ├── noonT_ahabove-ar.fina.glif │ │ ├── noonT_ahabove-ar.glif │ │ ├── noonT_ahabove-ar.init.alt.glif │ │ ├── noonT_ahabove-ar.init.glif │ │ ├── noonT_ahabove-ar.medi.glif │ │ ├── noonT_hreedotsabove-ar.fina.glif │ │ ├── noonT_hreedotsabove-ar.glif │ │ ├── noonT_hreedotsabove-ar.init.alt.glif │ │ ├── noonT_hreedotsabove-ar.init.glif │ │ ├── noonT_hreedotsabove-ar.medi.glif │ │ ├── noonT_wodotsbelow-ar.fina.glif │ │ ├── noonT_wodotsbelow-ar.glif │ │ ├── noonT_wodotsbelow-ar.init.alt.glif │ │ ├── noonT_wodotsbelow-ar.init.glif │ │ ├── noonT_wodotsbelow-ar.medi.glif │ │ ├── noonV_above-ar.fina.glif │ │ ├── noonV_above-ar.glif │ │ ├── noonV_above-ar.init.alt.glif │ │ ├── noonV_above-ar.init.glif │ │ ├── noonV_above-ar.medi.glif │ │ ├── noonabove-ar.glif │ │ ├── noonghunna-ar.fina.glif │ │ ├── noonghunna-ar.glif │ │ ├── noonghunna-ar.init.alt.glif │ │ ├── noonghunna-ar.init.glif │ │ ├── noonghunna-ar.medi.glif │ │ ├── noonghunnaabove-ar.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── number-ar.glif │ │ ├── numbermark-ar.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── nun-hb.glif │ │ ├── nundagesh-hb.glif │ │ ├── nyeh-ar.fina.glif │ │ ├── nyeh-ar.glif │ │ ├── nyeh-ar.init.glif │ │ ├── nyeh-ar.medi.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe-ar.fina.glif │ │ ├── oe-ar.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one-ar.glif │ │ ├── one-arinferior.glif │ │ ├── one-arsuperior.glif │ │ ├── one-persian.glif │ │ ├── one-persianinferior.glif │ │ ├── one-persiansuperior.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── pagenumber-ar.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft-ar.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright-ar.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── paseq-hb.glif │ │ ├── patah-hb.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclB_G_R_.glif │ │ ├── pe-hb.glif │ │ ├── pedagesh-hb.B_R_A_C_K_E_T_.600.glif │ │ ├── pedagesh-hb.glif │ │ ├── peh-ar.alt.glif │ │ ├── peh-ar.fina.alt.glif │ │ ├── peh-ar.fina.glif │ │ ├── peh-ar.glif │ │ ├── peh-ar.init.alt.glif │ │ ├── peh-ar.init.glif │ │ ├── peh-ar.medi.glif │ │ ├── pehM_eemabove-ar.alt.glif │ │ ├── pehM_eemabove-ar.fina.alt.glif │ │ ├── pehM_eemabove-ar.fina.glif │ │ ├── pehM_eemabove-ar.glif │ │ ├── pehM_eemabove-ar.init.alt.glif │ │ ├── pehM_eemabove-ar.init.glif │ │ ├── pehM_eemabove-ar.medi.glif │ │ ├── peheh-ar.alt.glif │ │ ├── peheh-ar.fina.alt.glif │ │ ├── peheh-ar.fina.glif │ │ ├── peheh-ar.glif │ │ ├── peheh-ar.init.alt.glif │ │ ├── peheh-ar.init.glif │ │ ├── peheh-ar.medi.glif │ │ ├── percent-ar.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand-ar.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── qaf-ar.fina.glif │ │ ├── qaf-ar.glif │ │ ├── qaf-ar.init.alt.glif │ │ ├── qaf-ar.init.glif │ │ ├── qaf-ar.medi.glif │ │ ├── qafA_frican-ar.fina.glif │ │ ├── qafA_frican-ar.glif │ │ ├── qafA_frican-ar.init.alt.glif │ │ ├── qafA_frican-ar.init.glif │ │ ├── qafA_frican-ar.medi.glif │ │ ├── qafD_otabove-ar.fina.glif │ │ ├── qafD_otabove-ar.glif │ │ ├── qafD_otabove-ar.init.alt.glif │ │ ├── qafD_otabove-ar.init.glif │ │ ├── qafD_otabove-ar.medi.glif │ │ ├── qafD_otbelow-ar.fina.glif │ │ ├── qafD_otbelow-ar.glif │ │ ├── qafD_otbelow-ar.init.glif │ │ ├── qafD_otbelow-ar.medi.glif │ │ ├── qafD_otless-ar.fina.glif │ │ ├── qafD_otless-ar.glif │ │ ├── qafD_otless-ar.init.alt.glif │ │ ├── qafD_otless-ar.init.glif │ │ ├── qafD_otless-ar.medi.glif │ │ ├── qafT_hreedotsabove-ar.fina.glif │ │ ├── qafT_hreedotsabove-ar.glif │ │ ├── qafT_hreedotsabove-ar.init.glif │ │ ├── qafT_hreedotsabove-ar.medi.glif │ │ ├── qamats-hb.glif │ │ ├── qamatsqatan-hb.glif │ │ ├── qof-hb.glif │ │ ├── qofdagesh-hb.glif │ │ ├── question-ar.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── racute.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── ray-ar.glif │ │ ├── rcaron.glif │ │ ├── rcommaaccent.glif │ │ ├── rdotbelow.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── reh-ar.fina.glif │ │ ├── reh-ar.glif │ │ ├── rehA_lefabove-ar.fina.glif │ │ ├── rehA_lefabove-ar.glif │ │ ├── rehD_otbelow-ar.fina.glif │ │ ├── rehD_otbelow-ar.glif │ │ ├── rehD_otbelowdotabove-ar.fina.glif │ │ ├── rehD_otbelowdotabove-ar.glif │ │ ├── rehF_ourdots-ar.fina.glif │ │ ├── rehF_ourdots-ar.glif │ │ ├── rehH_amzaabove-ar.fina.glif │ │ ├── rehH_amzaabove-ar.glif │ │ ├── rehL_oop-ar.fina.glif │ │ ├── rehL_oop-ar.glif │ │ ├── rehR_ing-ar.fina.glif │ │ ├── rehR_ing-ar.glif │ │ ├── rehS_troke-ar.fina.glif │ │ ├── rehS_troke-ar.glif │ │ ├── rehT_wodots-ar.fina.glif │ │ ├── rehT_wodots-ar.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.glif │ │ ├── rehT_wodotsverticalabove-ar.fina.glif │ │ ├── rehT_wodotsverticalabove-ar.glif │ │ ├── rehV_below-ar.fina.glif │ │ ├── rehV_below-ar.glif │ │ ├── rehV_invertedabove-ar.fina.glif │ │ ├── rehV_invertedabove-ar.glif │ │ ├── rehv-ar.fina.glif │ │ ├── rehv-ar.glif │ │ ├── replacementC_haracter.glif │ │ ├── resh-hb.glif │ │ ├── reshdagesh-hb.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringA_rabic.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rnoon-ar.fina.glif │ │ ├── rnoon-ar.glif │ │ ├── rnoon-ar.init.alt.glif │ │ ├── rnoon-ar.init.glif │ │ ├── rnoon-ar.medi.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── rreh-ar.fina.glif │ │ ├── rreh-ar.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sad-ar.alt.glif │ │ ├── sad-ar.fina.alt.glif │ │ ├── sad-ar.fina.glif │ │ ├── sad-ar.glif │ │ ├── sad-ar.init.glif │ │ ├── sad-ar.medi.glif │ │ ├── sadT_hreedots-ar.alt.glif │ │ ├── sadT_hreedots-ar.fina.alt.glif │ │ ├── sadT_hreedots-ar.fina.glif │ │ ├── sadT_hreedots-ar.glif │ │ ├── sadT_hreedots-ar.init.glif │ │ ├── sadT_hreedots-ar.medi.glif │ │ ├── sadT_hreedotsbelow-ar.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.glif │ │ ├── sadT_hreedotsbelow-ar.glif │ │ ├── sadT_hreedotsbelow-ar.init.glif │ │ ├── sadT_hreedotsbelow-ar.medi.glif │ │ ├── sadT_wodotsbelow-ar.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.glif │ │ ├── sadT_wodotsbelow-ar.glif │ │ ├── sadT_wodotsbelow-ar.init.glif │ │ ├── sadT_wodotsbelow-ar.medi.glif │ │ ├── samekh-hb.glif │ │ ├── samekhdagesh-hb.glif │ │ ├── samvat-ar.glif │ │ ├── scaron.glif │ │ ├── scedilla.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scommaaccent.glif │ │ ├── sdotbelow.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── seen-ar.alt.glif │ │ ├── seen-ar.fina.alt.glif │ │ ├── seen-ar.fina.glif │ │ ├── seen-ar.glif │ │ ├── seen-ar.init.glif │ │ ├── seen-ar.medi.glif │ │ ├── seenD_otbelowD_otabove-ar.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.glif │ │ ├── seenD_otbelowD_otabove-ar.glif │ │ ├── seenD_otbelowD_otabove-ar.init.glif │ │ ├── seenD_otbelowD_otabove-ar.medi.glif │ │ ├── seenF_ourabove-ar.alt.glif │ │ ├── seenF_ourabove-ar.fina.alt.glif │ │ ├── seenF_ourabove-ar.fina.glif │ │ ├── seenF_ourabove-ar.glif │ │ ├── seenF_ourabove-ar.init.glif │ │ ├── seenF_ourabove-ar.medi.glif │ │ ├── seenF_ourdotsabove-ar.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.glif │ │ ├── seenF_ourdotsabove-ar.glif │ │ ├── seenF_ourdotsabove-ar.init.glif │ │ ├── seenF_ourdotsabove-ar.medi.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_hreedotsbelow-ar.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.glif │ │ ├── seenT_hreedotsbelow-ar.glif │ │ ├── seenT_hreedotsbelow-ar.init.glif │ │ ├── seenT_hreedotsbelow-ar.medi.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.init.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.medi.glif │ │ ├── seenT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_wodotshorizontalabove-ar.glif │ │ ├── seenT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_wodotsverticalabove-ar.alt.glif │ │ ├── seenT_wodotsverticalabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.alt.glif │ │ ├── seenV_invertedabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.fina.glif │ │ ├── seenV_invertedabove-ar.glif │ │ ├── seenV_invertedabove-ar.init.glif │ │ ├── seenV_invertedabove-ar.medi.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon-ar.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven-ar.glif │ │ ├── seven-arinferior.glif │ │ ├── seven-arsuperior.glif │ │ ├── seven-persian.glif │ │ ├── seven-persian.urdu.glif │ │ ├── seven-persian.urduinferior.glif │ │ ├── seven-persian.urdusuperior.glif │ │ ├── seven-persianinferior.glif │ │ ├── seven-persiansuperior.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── sha-cy.loclB_G_R_.glif │ │ ├── shadda-ar.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── shcha-cy.loclB_G_R_.glif │ │ ├── sheen-ar.alt.glif │ │ ├── sheen-ar.fina.alt.glif │ │ ├── sheen-ar.fina.glif │ │ ├── sheen-ar.glif │ │ ├── sheen-ar.init.glif │ │ ├── sheen-ar.medi.glif │ │ ├── sheenD_otbelow-ar.alt.glif │ │ ├── sheenD_otbelow-ar.fina.alt.glif │ │ ├── sheenD_otbelow-ar.fina.glif │ │ ├── sheenD_otbelow-ar.glif │ │ ├── sheenD_otbelow-ar.init.glif │ │ ├── sheenD_otbelow-ar.medi.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── shin-hb.glif │ │ ├── shindagesh-hb.glif │ │ ├── shindageshshindot-hb.glif │ │ ├── shindageshsindot-hb.glif │ │ ├── shindot-hb.glif │ │ ├── shinshindot-hb.glif │ │ ├── shinsindot-hb.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── sindhiampersand-ar.glif │ │ ├── sindhipostpositionmen-ar.glif │ │ ├── sindot-hb.glif │ │ ├── six-ar.glif │ │ ├── six-arinferior.glif │ │ ├── six-arsuperior.glif │ │ ├── six-persian.glif │ │ ├── six-persianinferior.glif │ │ ├── six-persiansuperior.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── softsign-cy.loclB_G_R_.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── sukun-ar.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tah-ar.fina.glif │ │ ├── tah-ar.glif │ │ ├── tah-ar.init.glif │ │ ├── tah-ar.medi.glif │ │ ├── tahT_hreedots-ar.fina.glif │ │ ├── tahT_hreedots-ar.glif │ │ ├── tahT_hreedots-ar.init.glif │ │ ├── tahT_hreedots-ar.medi.glif │ │ ├── tahT_wodotsabove-ar.fina.glif │ │ ├── tahT_wodotsabove-ar.glif │ │ ├── tahT_wodotsabove-ar.init.glif │ │ ├── tahT_wodotsabove-ar.medi.glif │ │ ├── tahbelow-ar.glif │ │ ├── tahcenter-ar.glif │ │ ├── tau.glif │ │ ├── tav-hb.glif │ │ ├── tavdagesh-hb.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcheh-ar.fina.glif │ │ ├── tcheh-ar.glif │ │ ├── tcheh-ar.init.glif │ │ ├── tcheh-ar.medi.glif │ │ ├── tchehD_otabove-ar.fina.glif │ │ ├── tchehD_otabove-ar.glif │ │ ├── tchehD_otabove-ar.init.glif │ │ ├── tchehD_otabove-ar.medi.glif │ │ ├── tcheheh-ar.fina.glif │ │ ├── tcheheh-ar.glif │ │ ├── tcheheh-ar.init.glif │ │ ├── tcheheh-ar.medi.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclB_G_R_.glif │ │ ├── teh-ar.alt.glif │ │ ├── teh-ar.fina.alt.glif │ │ ├── teh-ar.fina.glif │ │ ├── teh-ar.glif │ │ ├── teh-ar.init.alt.glif │ │ ├── teh-ar.init.glif │ │ ├── teh-ar.medi.glif │ │ ├── tehM_arbuta-ar.fina.glif │ │ ├── tehM_arbuta-ar.glif │ │ ├── tehM_arbutagoal-ar.fina.glif │ │ ├── tehM_arbutagoal-ar.glif │ │ ├── tehR_ing-ar.alt.glif │ │ ├── tehR_ing-ar.fina.alt.glif │ │ ├── tehR_ing-ar.fina.glif │ │ ├── tehR_ing-ar.glif │ │ ├── tehR_ing-ar.init.alt.glif │ │ ├── tehR_ing-ar.init.glif │ │ ├── tehR_ing-ar.medi.glif │ │ ├── tehT_ehabove-ar.alt.glif │ │ ├── tehT_ehabove-ar.fina.alt.glif │ │ ├── tehT_ehabove-ar.fina.glif │ │ ├── tehT_ehabove-ar.glif │ │ ├── tehT_ehabove-ar.init.alt.glif │ │ ├── tehT_ehabove-ar.init.glif │ │ ├── tehT_ehabove-ar.medi.glif │ │ ├── tehT_hreedotsdown-ar.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.glif │ │ ├── tehT_hreedotsdown-ar.glif │ │ ├── tehT_hreedotsdown-ar.init.alt.glif │ │ ├── tehT_hreedotsdown-ar.init.glif │ │ ├── tehT_hreedotsdown-ar.medi.glif │ │ ├── tehT_hreedotsupbelow-ar.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.glif │ │ ├── tehT_hreedotsupbelow-ar.glif │ │ ├── tehT_hreedotsupbelow-ar.init.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.init.glif │ │ ├── tehT_hreedotsupbelow-ar.medi.glif │ │ ├── tehabove-ar.small.glif │ │ ├── teheh-ar.alt.glif │ │ ├── teheh-ar.fina.alt.glif │ │ ├── teheh-ar.fina.glif │ │ ├── teheh-ar.glif │ │ ├── teheh-ar.init.alt.glif │ │ ├── teheh-ar.init.glif │ │ ├── teheh-ar.medi.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── tet-hb.glif │ │ ├── tetdagesh-hb.glif │ │ ├── thal-ar.fina.glif │ │ ├── thal-ar.glif │ │ ├── thalA_lefabove-ar.fina.glif │ │ ├── thalA_lefabove-ar.glif │ │ ├── theh-ar.alt.glif │ │ ├── theh-ar.fina.alt.glif │ │ ├── theh-ar.fina.glif │ │ ├── theh-ar.glif │ │ ├── theh-ar.init.alt.glif │ │ ├── theh-ar.init.glif │ │ ├── theh-ar.medi.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── thousandseparator-ar.glif │ │ ├── three-ar.glif │ │ ├── three-arinferior.glif │ │ ├── three-arsuperior.glif │ │ ├── three-persian.glif │ │ ├── three-persian.small01.glif │ │ ├── three-persianinferior.glif │ │ ├── three-persiansuperior.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threedots-ar.glif │ │ ├── threedotsdownabove-ar.glif │ │ ├── threedotsdownbelow-ar.glif │ │ ├── threedotsdowncenter-ar.glif │ │ ├── threedotsupabove-ar.glif │ │ ├── threedotsupabove-ar.v2.glif │ │ ├── threedotsupbelow-ar.glif │ │ ├── threedotsupcenter-ar.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tsadi-hb.glif │ │ ├── tsadidagesh-hb.glif │ │ ├── tse-cy.glif │ │ ├── tse-cy.loclB_G_R_.glif │ │ ├── tshe-cy.glif │ │ ├── tteh-ar.alt.glif │ │ ├── tteh-ar.fina.alt.glif │ │ ├── tteh-ar.fina.glif │ │ ├── tteh-ar.glif │ │ ├── tteh-ar.init.alt.glif │ │ ├── tteh-ar.init.glif │ │ ├── tteh-ar.medi.glif │ │ ├── tteheh-ar.alt.glif │ │ ├── tteheh-ar.fina.alt.glif │ │ ├── tteheh-ar.fina.glif │ │ ├── tteheh-ar.glif │ │ ├── tteheh-ar.init.alt.glif │ │ ├── tteheh-ar.init.glif │ │ ├── tteheh-ar.medi.glif │ │ ├── tugrik.glif │ │ ├── two-ar.glif │ │ ├── two-arinferior.glif │ │ ├── two-arsuperior.glif │ │ ├── two-persian.glif │ │ ├── two-persian.small01.glif │ │ ├── two-persianinferior.glif │ │ ├── two-persiansuperior.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twodotshorizontalabove-ar.glif │ │ ├── twodotshorizontalabove-ar.v2.glif │ │ ├── twodotshorizontalbelow-ar.glif │ │ ├── twodotshorizontalcenter-ar.glif │ │ ├── twodotstahbelow-ar.glif │ │ ├── twodotstahcenter-ar.glif │ │ ├── twodotsverticalabove-ar.glif │ │ ├── twodotsverticalbelow-ar.glif │ │ ├── twodotsverticalcenter-ar.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-ar.fina.glif │ │ ├── u-ar.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uH_amzaabove-ar.fina.glif │ │ ├── uH_amzaabove-ar.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── uni08B_3.fina.glif │ │ ├── uni08B_3.glif │ │ ├── uni08B_3.init.glif │ │ ├── uni08B_3.medi.glif │ │ ├── uni08B_4.fina.glif │ │ ├── uni08B_4.glif │ │ ├── uni08B_4.init.glif │ │ ├── uni08B_4.medi.glif │ │ ├── uni08B_9.fina.glif │ │ ├── uniF_B_C_0.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── vabove-ar.glif │ │ ├── vav-hb.glif │ │ ├── vavdagesh-hb.glif │ │ ├── vavholam-hb.glif │ │ ├── ve-ar.fina.glif │ │ ├── ve-ar.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.loclB_G_R_.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── veh-ar.alt.glif │ │ ├── veh-ar.fina.alt.glif │ │ ├── veh-ar.fina.glif │ │ ├── veh-ar.glif │ │ ├── veh-ar.init.alt.glif │ │ ├── veh-ar.init.glif │ │ ├── veh-ar.medi.glif │ │ ├── venus.glif │ │ ├── verseC_omma-ar.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vinvertedabove-ar.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wasla-ar.glif │ │ ├── wavyhamzaabove-ar.glif │ │ ├── wavyhamzabelow-ar.glif │ │ ├── waw-ar.fina.glif │ │ ├── waw-ar.glif │ │ ├── wawD_otabove-ar.fina.glif │ │ ├── wawD_otabove-ar.glif │ │ ├── wawD_otcenter-ar.fina.glif │ │ ├── wawD_otcenter-ar.glif │ │ ├── wawH_amzaabove-ar.fina.glif │ │ ├── wawH_amzaabove-ar.glif │ │ ├── wawS_traight-ar.glif │ │ ├── wawT_hreeA_bove-ar.fina.glif │ │ ├── wawT_hreeA_bove-ar.glif │ │ ├── wawT_woabove-ar.fina.glif │ │ ├── wawT_woabove-ar.glif │ │ ├── wawT_wodots-ar.fina.glif │ │ ├── wawT_wodots-ar.glif │ │ ├── wawring-ar.fina.glif │ │ ├── wawring-ar.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── year-ar.glif │ │ ├── yeh-ar.fina.alt.glif │ │ ├── yeh-ar.fina.glif │ │ ├── yeh-ar.glif │ │ ├── yeh-ar.init.alt.glif │ │ ├── yeh-ar.init.glif │ │ ├── yeh-ar.medi.glif │ │ ├── yeh-farsi.fina.alt.glif │ │ ├── yeh-farsi.fina.glif │ │ ├── yeh-farsi.glif │ │ ├── yeh-farsi.init.alt.glif │ │ ├── yeh-farsi.init.glif │ │ ├── yeh-farsi.medi.glif │ │ ├── yehF_ourbelow-farsi.fina.alt.glif │ │ ├── yehF_ourbelow-farsi.fina.glif │ │ ├── yehF_ourbelow-farsi.glif │ │ ├── yehF_ourbelow-farsi.init.alt.glif │ │ ├── yehF_ourbelow-farsi.init.glif │ │ ├── yehF_ourbelow-farsi.medi.glif │ │ ├── yehH_amzaabove-ar.fina.alt.glif │ │ ├── yehH_amzaabove-ar.fina.glif │ │ ├── yehH_amzaabove-ar.glif │ │ ├── yehH_amzaabove-ar.init.alt.glif │ │ ├── yehH_amzaabove-ar.init.glif │ │ ├── yehH_amzaabove-ar.medi.glif │ │ ├── yehK_ashmiri-ar.fina.alt.glif │ │ ├── yehK_ashmiri-ar.fina.glif │ │ ├── yehK_ashmiri-ar.glif │ │ ├── yehK_ashmiri-ar.init.alt.glif │ │ ├── yehK_ashmiri-ar.init.glif │ │ ├── yehK_ashmiri-ar.medi.glif │ │ ├── yehR_ohingya-ar.fina.glif │ │ ├── yehR_ohingya-ar.glif │ │ ├── yehR_ohingya-ar.isol.glif │ │ ├── yehT_ail-ar.fina.alt.glif │ │ ├── yehT_ail-ar.fina.glif │ │ ├── yehT_ail-ar.glif │ │ ├── yehT_hreeabove-farsi.fina.alt.glif │ │ ├── yehT_hreeabove-farsi.fina.glif │ │ ├── yehT_hreeabove-farsi.glif │ │ ├── yehT_hreeabove-farsi.init.alt.glif │ │ ├── yehT_hreeabove-farsi.init.glif │ │ ├── yehT_hreeabove-farsi.medi.glif │ │ ├── yehT_hreedotsabove-farsi.fina.alt.glif │ │ ├── yehT_hreedotsabove-farsi.fina.glif │ │ ├── yehT_hreedotsabove-farsi.glif │ │ ├── yehT_hreedotsabove-farsi.init.alt.glif │ │ ├── yehT_hreedotsabove-farsi.init.glif │ │ ├── yehT_hreedotsabove-farsi.medi.glif │ │ ├── yehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── yehT_hreedotsbelow-ar.fina.glif │ │ ├── yehT_hreedotsbelow-ar.glif │ │ ├── yehT_hreedotsbelow-ar.init.alt.glif │ │ ├── yehT_hreedotsbelow-ar.init.glif │ │ ├── yehT_hreedotsbelow-ar.medi.glif │ │ ├── yehT_woabove-farsi.fina.alt.glif │ │ ├── yehT_woabove-farsi.fina.glif │ │ ├── yehT_woabove-farsi.glif │ │ ├── yehT_woabove-farsi.init.alt.glif │ │ ├── yehT_woabove-farsi.init.glif │ │ ├── yehT_woabove-farsi.medi.glif │ │ ├── yehT_wodotsabove-farsi.fina.alt.glif │ │ ├── yehT_wodotsabove-farsi.fina.glif │ │ ├── yehT_wodotsabove-farsi.glif │ │ ├── yehT_wodotsabove-farsi.init.alt.glif │ │ ├── yehT_wodotsabove-farsi.init.glif │ │ ├── yehT_wodotsabove-farsi.medi.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.fina.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.medi.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.medi.glif │ │ ├── yehV_above-ar.fina.alt.glif │ │ ├── yehV_above-ar.fina.glif │ │ ├── yehV_above-ar.glif │ │ ├── yehV_above-ar.init.alt.glif │ │ ├── yehV_above-ar.init.glif │ │ ├── yehV_above-ar.medi.glif │ │ ├── yehV_inverted-farsi.fina.alt.glif │ │ ├── yehV_inverted-farsi.fina.glif │ │ ├── yehV_inverted-farsi.glif │ │ ├── yehV_inverted-farsi.init.alt.glif │ │ ├── yehV_inverted-farsi.init.glif │ │ ├── yehV_inverted-farsi.medi.glif │ │ ├── yehbarree-ar.fina.glif │ │ ├── yehbarree-ar.glif │ │ ├── yehbarreeH_amzaabove-ar.fina.glif │ │ ├── yehbarreeH_amzaabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.fina.glif │ │ ├── yehbarreeT_hreeabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.init.alt.glif │ │ ├── yehbarreeT_hreeabove-ar.init.glif │ │ ├── yehbarreeT_hreeabove-ar.medi.glif │ │ ├── yehbarreeT_woabove-ar.fina.glif │ │ ├── yehbarreeT_woabove-ar.glif │ │ ├── yehbarreeT_woabove-ar.init.alt.glif │ │ ├── yehbarreeT_woabove-ar.init.glif │ │ ├── yehbarreeT_woabove-ar.medi.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── yod-hb.glif │ │ ├── yoddagesh-hb.glif │ │ ├── ytilde.glif │ │ ├── yu-ar.fina.glif │ │ ├── yu-ar.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zah-ar.fina.glif │ │ ├── zah-ar.glif │ │ ├── zah-ar.init.glif │ │ ├── zah-ar.medi.glif │ │ ├── zain-ar.fina.glif │ │ ├── zain-ar.glif │ │ ├── zainV_I_nvertedabove-ar.fina.glif │ │ ├── zainV_I_nvertedabove-ar.glif │ │ ├── zayin-hb.glif │ │ ├── zayindagesh-hb.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── zero-ar.glif │ │ ├── zero-arinferior.glif │ │ ├── zero-arsuperior.glif │ │ ├── zero-persian.glif │ │ ├── zero-persianinferior.glif │ │ ├── zero-persiansuperior.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.public.background/ │ │ ├── allah-ar.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ └── numbersign_braceleft.liga.glif │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode-BoldItalic.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _notdef.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── b.alt.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── beta.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── che-cy.salt.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chedescender-cy.salt.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelowcomb.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── f.locl.glif │ │ ├── f.salt.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── g.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclS_R_B_.glif │ │ ├── germandbls.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.alt.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hardsign-cy.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── iigrave-cy.glif │ │ ├── iishort-cy.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.alt.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── k.alt.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.alt.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── kgreenlandic.glif │ │ ├── kip.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── l.salt.glif │ │ ├── lacute.glif │ │ ├── lacute.salt.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbar.salt.glif │ │ ├── lbelt.glif │ │ ├── lbelt.salt.glif │ │ ├── lcaron.glif │ │ ├── lcaron.salt.glif │ │ ├── lcommaaccent.glif │ │ ├── lcommaaccent.salt.glif │ │ ├── ldot.glif │ │ ├── ldot.salt.glif │ │ ├── ldotbelow.glif │ │ ├── ldotbelow.salt.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── llinebelow.salt.glif │ │ ├── lmiddletilde.glif │ │ ├── lmiddletilde.salt.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── lslash.salt.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── manat.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── nhookleft.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclS_R_B_.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── r.salt.glif │ │ ├── racute.glif │ │ ├── racute.salt.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── rcaron.glif │ │ ├── rcaron.salt.glif │ │ ├── rcommaaccent.glif │ │ ├── rcommaaccent.salt.glif │ │ ├── rdotbelow.glif │ │ ├── rdotbelow.salt.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── replacementC_haracter.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── s.salt.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sacute.salt.glif │ │ ├── scaron.glif │ │ ├── scaron.salt.glif │ │ ├── scedilla.glif │ │ ├── scedilla.salt.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scircumflex.salt.glif │ │ ├── scommaaccent.glif │ │ ├── scommaaccent.salt.glif │ │ ├── sdotbelow.glif │ │ ├── sdotbelow.salt.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.alt.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tau.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclS_R_B_.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tse-cy.glif │ │ ├── tshe-cy.glif │ │ ├── tugrik.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.salt.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── venus.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── ytilde.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── ze-cy.salt.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.public.background/ │ │ ├── bar_braceright.liga.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ ├── numbersign_braceleft.liga.glif │ │ └── w_w_w.liga.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode-ExtraLight.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _alef-ar.fina.rlig.glif │ │ ├── _alef-ar.fina.short.rlig.glif │ │ ├── _alefF_athatan-ar.fina.rlig.glif │ │ ├── _alefH_amzaabove-ar.fina.rlig.glif │ │ ├── _alefH_amzabelow-ar.fina.rlig.glif │ │ ├── _alefM_adda-ar.fina.rlig.glif │ │ ├── _alefT_hreeabove-ar.fina.rlig.glif │ │ ├── _alefT_woabove-ar.fina.rlig.glif │ │ ├── _alefW_asla-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── _alefabove.glif │ │ ├── _bar.glif │ │ ├── _cuberoot_fourthroot-ar.glif │ │ ├── _damma-ar.glif │ │ ├── _dot-ar.glif │ │ ├── _dotV_I_nvertedabove.glif │ │ ├── _dotV_above.glif │ │ ├── _dots.horz.below.glif │ │ ├── _doublebar.glif │ │ ├── _fatha-ar.glif │ │ ├── _four-persian.small01.glif │ │ ├── _fourdotscenter-ar.glif │ │ ├── _fourthroot-ar.glif │ │ ├── _hamzasmall-ar.glif │ │ ├── _hamzawavy.glif │ │ ├── _hehgoalcomma.glif │ │ ├── _highhamzaA_lef-ar.fina.rlig.glif │ │ ├── _invertedstroke.glif │ │ ├── _notdef.glif │ │ ├── _onedotstah.glif │ │ ├── _ringA_rabic.glif │ │ ├── _stroke.glif │ │ ├── _tahabove.glif │ │ ├── _tahabovesmall.glif │ │ ├── _threedots-ar.glif │ │ ├── _twodotshorizontal-ar.glif │ │ ├── _twodotstah.glif │ │ ├── _twodotsverticalabove-ar.glif │ │ ├── _vabove.glif │ │ ├── _vbelow-ar.glif │ │ ├── _vinvertedbelow-ar.glif │ │ ├── _yehR_ohingya-ar.fina.glif │ │ ├── _yehR_ohingya-ar.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae-ar.fina.glif │ │ ├── ae-ar.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── afghani-ar.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── ain-ar.fina.glif │ │ ├── ain-ar.glif │ │ ├── ain-ar.init.glif │ │ ├── ain-ar.medi.glif │ │ ├── ainT_hreedots-ar.fina.glif │ │ ├── ainT_hreedots-ar.glif │ │ ├── ainT_hreedots-ar.init.glif │ │ ├── ainT_hreedots-ar.medi.glif │ │ ├── ainT_hreedotsdownabove-ar.fina.glif │ │ ├── ainT_hreedotsdownabove-ar.glif │ │ ├── ainT_hreedotsdownabove-ar.init.glif │ │ ├── ainT_hreedotsdownabove-ar.medi.glif │ │ ├── ainT_wodotshorizontalabove-ar.fina.glif │ │ ├── ainT_wodotshorizontalabove-ar.glif │ │ ├── ainT_wodotshorizontalabove-ar.init.glif │ │ ├── ainT_wodotshorizontalabove-ar.medi.glif │ │ ├── ainT_wodotsverticalabove-ar.fina.glif │ │ ├── ainT_wodotsverticalabove-ar.glif │ │ ├── ainT_wodotsverticalabove-ar.init.glif │ │ ├── ainT_wodotsverticalabove-ar.medi.glif │ │ ├── alef-ar.fina.alt.glif │ │ ├── alef-ar.fina.glif │ │ ├── alef-ar.fina.rlig.glif │ │ ├── alef-ar.fina.short.alt.glif │ │ ├── alef-ar.fina.short.glif │ │ ├── alef-ar.fina.short.rlig.glif │ │ ├── alef-ar.glif │ │ ├── alef-ar.short.glif │ │ ├── alef-hb.glif │ │ ├── alefF_athatan-ar.fina.glif │ │ ├── alefF_athatan-ar.fina.rlig.glif │ │ ├── alefF_athatan-ar.glif │ │ ├── alefH_amzaabove-ar.fina.alt.glif │ │ ├── alefH_amzaabove-ar.fina.glif │ │ ├── alefH_amzaabove-ar.fina.rlig.glif │ │ ├── alefH_amzaabove-ar.glif │ │ ├── alefH_amzabelow-ar.fina.alt.glif │ │ ├── alefH_amzabelow-ar.fina.glif │ │ ├── alefH_amzabelow-ar.fina.rlig.glif │ │ ├── alefH_amzabelow-ar.glif │ │ ├── alefM_adda-ar.fina.alt.glif │ │ ├── alefM_adda-ar.fina.glif │ │ ├── alefM_adda-ar.fina.rlig.glif │ │ ├── alefM_adda-ar.glif │ │ ├── alefM_aksura-ar.fina.alt.glif │ │ ├── alefM_aksura-ar.fina.glif │ │ ├── alefM_aksura-ar.glif │ │ ├── alefM_aksura-ar.init.alt.glif │ │ ├── alefM_aksura-ar.init.glif │ │ ├── alefM_aksura-ar.medi.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.alt.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.glif │ │ ├── alefM_aksuraA_lefabove-ar.glif │ │ ├── alefT_hreeabove-ar.fina.alt.glif │ │ ├── alefT_hreeabove-ar.fina.glif │ │ ├── alefT_hreeabove-ar.fina.rlig.glif │ │ ├── alefT_hreeabove-ar.glif │ │ ├── alefT_woabove-ar.fina.alt.glif │ │ ├── alefT_woabove-ar.fina.glif │ │ ├── alefT_woabove-ar.fina.rlig.glif │ │ ├── alefT_woabove-ar.glif │ │ ├── alefW_asla-ar.fina.alt.glif │ │ ├── alefW_asla-ar.fina.glif │ │ ├── alefW_asla-ar.fina.rlig.glif │ │ ├── alefW_asla-ar.glif │ │ ├── alefW_avyhamzaabove-ar.fina.alt.glif │ │ ├── alefW_avyhamzaabove-ar.fina.glif │ │ ├── alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── alefW_avyhamzaabove-ar.glif │ │ ├── alefW_avyhamzabelow-ar.fina.alt.glif │ │ ├── alefW_avyhamzabelow-ar.fina.glif │ │ ├── alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── alefW_avyhamzabelow-ar.glif │ │ ├── alefabove-ar.glif │ │ ├── alefbelow-ar.glif │ │ ├── alefdagesh-hb.B_R_A_C_K_E_T_.500.glif │ │ ├── alefdagesh-hb.glif │ │ ├── alefpatah-hb.glif │ │ ├── alefqamats-hb.glif │ │ ├── allah-ar.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk-ar.glif │ │ ├── asterisk.glif │ │ ├── asteriskA_rt-ar.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── ayin-hb.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── beeh-ar.alt.glif │ │ ├── beeh-ar.fina.alt.glif │ │ ├── beeh-ar.fina.glif │ │ ├── beeh-ar.glif │ │ ├── beeh-ar.init.alt.glif │ │ ├── beeh-ar.init.glif │ │ ├── beeh-ar.medi.glif │ │ ├── beh-ar.alt.glif │ │ ├── beh-ar.fina.alt.glif │ │ ├── beh-ar.fina.glif │ │ ├── beh-ar.glif │ │ ├── beh-ar.init.alt.glif │ │ ├── beh-ar.init.glif │ │ ├── beh-ar.medi.glif │ │ ├── behD_otless-ar.alt.glif │ │ ├── behD_otless-ar.fina.alt.glif │ │ ├── behD_otless-ar.fina.glif │ │ ├── behD_otless-ar.glif │ │ ├── behD_otless-ar.init.alt.glif │ │ ├── behD_otless-ar.init.glif │ │ ├── behD_otless-ar.medi.glif │ │ ├── behM_eemabove-ar.alt.glif │ │ ├── behM_eemabove-ar.fina.alt.glif │ │ ├── behM_eemabove-ar.fina.glif │ │ ├── behM_eemabove-ar.glif │ │ ├── behM_eemabove-ar.init.alt.glif │ │ ├── behM_eemabove-ar.init.glif │ │ ├── behM_eemabove-ar.medi.glif │ │ ├── behT_hreedotshorizontalbelow-ar.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.glif │ │ ├── behT_hreedotshorizontalbelow-ar.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.glif │ │ ├── behT_hreedotshorizontalbelow-ar.medi.glif │ │ ├── behT_hreedotsupabove-ar.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.glif │ │ ├── behT_hreedotsupabove-ar.glif │ │ ├── behT_hreedotsupabove-ar.init.alt.glif │ │ ├── behT_hreedotsupabove-ar.init.glif │ │ ├── behT_hreedotsupabove-ar.medi.glif │ │ ├── behT_hreedotsupbelow-ar.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.glif │ │ ├── behT_hreedotsupbelow-ar.glif │ │ ├── behT_hreedotsupbelow-ar.init.alt.glif │ │ ├── behT_hreedotsupbelow-ar.init.glif │ │ ├── behT_hreedotsupbelow-ar.medi.glif │ │ ├── behT_wodotsbelowD_otabove-ar.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── behT_wodotsbelowD_otabove-ar.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.glif │ │ ├── behT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── behV_above-ar.alt.glif │ │ ├── behV_above-ar.fina.alt.glif │ │ ├── behV_above-ar.fina.glif │ │ ├── behV_above-ar.glif │ │ ├── behV_above-ar.init.alt.glif │ │ ├── behV_above-ar.init.glif │ │ ├── behV_above-ar.medi.glif │ │ ├── behV_below-ar.alt.glif │ │ ├── behV_below-ar.fina.alt.glif │ │ ├── behV_below-ar.fina.glif │ │ ├── behV_below-ar.glif │ │ ├── behV_below-ar.init.alt.glif │ │ ├── behV_below-ar.init.glif │ │ ├── behV_below-ar.medi.glif │ │ ├── behV_invertedbelow-ar.alt.glif │ │ ├── behV_invertedbelow-ar.fina.alt.glif │ │ ├── behV_invertedbelow-ar.fina.glif │ │ ├── behV_invertedbelow-ar.glif │ │ ├── behV_invertedbelow-ar.init.alt.glif │ │ ├── behV_invertedbelow-ar.init.glif │ │ ├── behV_invertedbelow-ar.medi.glif │ │ ├── beheh-ar.alt.glif │ │ ├── beheh-ar.fina.alt.glif │ │ ├── beheh-ar.fina.glif │ │ ├── beheh-ar.glif │ │ ├── beheh-ar.init.alt.glif │ │ ├── beheh-ar.init.glif │ │ ├── beheh-ar.medi.glif │ │ ├── behhamzaabove-ar.alt.glif │ │ ├── behhamzaabove-ar.fina.alt.glif │ │ ├── behhamzaabove-ar.fina.glif │ │ ├── behhamzaabove-ar.glif │ │ ├── behhamzaabove-ar.init.glif │ │ ├── behhamzaabove-ar.medi.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── bet-hb.glif │ │ ├── beta.glif │ │ ├── betdagesh-hb.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma-ar.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── cuberoot-ar.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dad-ar.alt.glif │ │ ├── dad-ar.fina.alt.glif │ │ ├── dad-ar.fina.glif │ │ ├── dad-ar.glif │ │ ├── dad-ar.init.glif │ │ ├── dad-ar.medi.glif │ │ ├── dadD_otbelow-ar.alt.glif │ │ ├── dadD_otbelow-ar.fina.alt.glif │ │ ├── dadD_otbelow-ar.fina.glif │ │ ├── dadD_otbelow-ar.glif │ │ ├── dadD_otbelow-ar.init.glif │ │ ├── dadD_otbelow-ar.medi.glif │ │ ├── dagesh-hb.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dahal-ar.fina.glif │ │ ├── dahal-ar.glif │ │ ├── dal-ar.fina.glif │ │ ├── dal-ar.glif │ │ ├── dalD_otbelow-ar.fina.glif │ │ ├── dalD_otbelow-ar.glif │ │ ├── dalD_otbelowT_ah-ar.fina.glif │ │ ├── dalD_otbelowT_ah-ar.glif │ │ ├── dalF_ourdots-ar.fina.glif │ │ ├── dalF_ourdots-ar.glif │ │ ├── dalR_ing-ar.fina.glif │ │ ├── dalR_ing-ar.glif │ │ ├── dalT_hreedotsbelow-ar.fina.glif │ │ ├── dalT_hreedotsbelow-ar.glif │ │ ├── dalT_hreedotsdown-ar.fina.glif │ │ ├── dalT_hreedotsdown-ar.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.fina.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.glif │ │ ├── dalV_invertedabove-ar.fina.glif │ │ ├── dalV_invertedabove-ar.glif │ │ ├── dalV_invertedbelow-ar.fina.glif │ │ ├── dalV_invertedbelow-ar.glif │ │ ├── dalet-hb.glif │ │ ├── daletdagesh-hb.glif │ │ ├── damma-ar.glif │ │ ├── dammatan-ar.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dateseparator-ar.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── ddahal-ar.fina.glif │ │ ├── ddahal-ar.glif │ │ ├── ddal-ar.fina.glif │ │ ├── ddal-ar.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── decimalseparator-ar.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotabove-ar.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelow-ar.glif │ │ ├── dotbelowcomb.glif │ │ ├── dotcenter-ar.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.comb.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dul-ar.fina.glif │ │ ├── dul-ar.glif │ │ ├── dyeh-ar.fina.glif │ │ ├── dyeh-ar.glif │ │ ├── dyeh-ar.init.glif │ │ ├── dyeh-ar.medi.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-ar.fina.alt.glif │ │ ├── e-ar.fina.glif │ │ ├── e-ar.glif │ │ ├── e-ar.init.alt.glif │ │ ├── e-ar.init.glif │ │ ├── e-ar.medi.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── ef-cy.loclB_G_R_.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight-ar.glif │ │ ├── eight-arinferior.glif │ │ ├── eight-arsuperior.glif │ │ ├── eight-persian.glif │ │ ├── eight-persianinferior.glif │ │ ├── eight-persiansuperior.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── el-cy.loclB_G_R_.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── endofayah-ar.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── fatha-ar.glif │ │ ├── fathatan-ar.glif │ │ ├── feh-ar.alt.glif │ │ ├── feh-ar.fina.alt.glif │ │ ├── feh-ar.fina.glif │ │ ├── feh-ar.glif │ │ ├── feh-ar.init.alt.glif │ │ ├── feh-ar.init.glif │ │ ├── feh-ar.medi.glif │ │ ├── fehD_otM_ovedbelow-ar.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.glif │ │ ├── fehD_otM_ovedbelow-ar.glif │ │ ├── fehD_otM_ovedbelow-ar.init.glif │ │ ├── fehD_otM_ovedbelow-ar.medi.glif │ │ ├── fehD_otbelow-ar.alt.glif │ │ ├── fehD_otbelow-ar.fina.alt.glif │ │ ├── fehD_otbelow-ar.fina.glif │ │ ├── fehD_otbelow-ar.glif │ │ ├── fehD_otbelow-ar.init.glif │ │ ├── fehD_otbelow-ar.medi.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.init.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.medi.glif │ │ ├── fehD_otless-ar.alt.glif │ │ ├── fehD_otless-ar.fina.alt.glif │ │ ├── fehD_otless-ar.fina.glif │ │ ├── fehD_otless-ar.glif │ │ ├── fehD_otless-ar.init.alt.glif │ │ ├── fehD_otless-ar.init.glif │ │ ├── fehD_otless-ar.medi.glif │ │ ├── fehT_hreedotsbelow-ar.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.glif │ │ ├── fehT_hreedotsbelow-ar.glif │ │ ├── fehT_hreedotsbelow-ar.init.glif │ │ ├── fehT_hreedotsbelow-ar.medi.glif │ │ ├── fehT_hreedotsupbelow-ar.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.glif │ │ ├── fehT_hreedotsupbelow-ar.glif │ │ ├── fehT_hreedotsupbelow-ar.init.glif │ │ ├── fehT_hreedotsupbelow-ar.medi.glif │ │ ├── fehT_wodotsbelow-ar.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.glif │ │ ├── fehT_wodotsbelow-ar.glif │ │ ├── fehT_wodotsbelow-ar.init.glif │ │ ├── fehT_wodotsbelow-ar.medi.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── finalkaf-hb.glif │ │ ├── finalkafdagesh-hb.glif │ │ ├── finalmem-hb.glif │ │ ├── finalnun-hb.glif │ │ ├── finalpe-hb.glif │ │ ├── finalpedagesh-hb.glif │ │ ├── finaltsadi-hb.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five-ar.glif │ │ ├── five-arinferior.glif │ │ ├── five-arsuperior.glif │ │ ├── five-persian.glif │ │ ├── five-persianinferior.glif │ │ ├── five-persiansuperior.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── footnotemarker-ar.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four-ar.glif │ │ ├── four-arinferior.glif │ │ ├── four-arsuperior.glif │ │ ├── four-persian.glif │ │ ├── four-persian.small01.glif │ │ ├── four-persian.urdu.glif │ │ ├── four-persian.urduinferior.glif │ │ ├── four-persian.urdusuperior.glif │ │ ├── four-persianbelow-ar.glif │ │ ├── four-persiancenter-ar.glif │ │ ├── four-persianinferior.glif │ │ ├── four-persiansuperior.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourdotsabove-ar.glif │ │ ├── fourdotsbelow-ar.glif │ │ ├── fourdotscenter-ar.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fourthroot-ar.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── fullstop-ar.glif │ │ ├── g.glif │ │ ├── gaf-ar.fina.glif │ │ ├── gaf-ar.glif │ │ ├── gaf-ar.init.glif │ │ ├── gaf-ar.medi.glif │ │ ├── gafI_nvertedstroke-ar.fina.glif │ │ ├── gafI_nvertedstroke-ar.glif │ │ ├── gafI_nvertedstroke-ar.init.glif │ │ ├── gafI_nvertedstroke-ar.medi.glif │ │ ├── gafR_ing-ar.fina.glif │ │ ├── gafR_ing-ar.glif │ │ ├── gafR_ing-ar.init.glif │ │ ├── gafR_ing-ar.medi.glif │ │ ├── gafT_hreedots-ar.fina.glif │ │ ├── gafT_hreedots-ar.glif │ │ ├── gafT_hreedots-ar.init.glif │ │ ├── gafT_hreedots-ar.medi.glif │ │ ├── gafT_wodotsbelow-ar.fina.glif │ │ ├── gafT_wodotsbelow-ar.glif │ │ ├── gafT_wodotsbelow-ar.init.glif │ │ ├── gafT_wodotsbelow-ar.medi.glif │ │ ├── gafsarkashabove-ar.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclB_G_R_.glif │ │ ├── geresh-hb.glif │ │ ├── germandbls.glif │ │ ├── gershayim-hb.glif │ │ ├── ghain-ar.fina.glif │ │ ├── ghain-ar.glif │ │ ├── ghain-ar.init.glif │ │ ├── ghain-ar.medi.glif │ │ ├── ghainD_otbelow-ar.fina.glif │ │ ├── ghainD_otbelow-ar.glif │ │ ├── ghainD_otbelow-ar.init.glif │ │ ├── ghainD_otbelow-ar.medi.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gimel-hb.glif │ │ ├── gimeldagesh-hb.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── gueh-ar.fina.glif │ │ ├── gueh-ar.glif │ │ ├── gueh-ar.init.glif │ │ ├── gueh-ar.medi.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hah-ar.fina.glif │ │ ├── hah-ar.glif │ │ ├── hah-ar.init.glif │ │ ├── hah-ar.medi.glif │ │ ├── hahF_ourbelow-ar.fina.glif │ │ ├── hahF_ourbelow-ar.glif │ │ ├── hahF_ourbelow-ar.init.glif │ │ ├── hahF_ourbelow-ar.medi.glif │ │ ├── hahH_amzaabove-ar.fina.glif │ │ ├── hahH_amzaabove-ar.glif │ │ ├── hahH_amzaabove-ar.init.glif │ │ ├── hahH_amzaabove-ar.medi.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_ahabove-ar.fina.glif │ │ ├── hahT_ahabove-ar.glif │ │ ├── hahT_ahabove-ar.init.glif │ │ ├── hahT_ahabove-ar.medi.glif │ │ ├── hahT_ahbelow-ar.fina.glif │ │ ├── hahT_ahbelow-ar.glif │ │ ├── hahT_ahbelow-ar.init.glif │ │ ├── hahT_ahbelow-ar.medi.glif │ │ ├── hahT_hreedotsabove-ar.fina.glif │ │ ├── hahT_hreedotsabove-ar.glif │ │ ├── hahT_hreedotsabove-ar.init.glif │ │ ├── hahT_hreedotsabove-ar.medi.glif │ │ ├── hahT_hreedotsupbelow-ar.fina.glif │ │ ├── hahT_hreedotsupbelow-ar.glif │ │ ├── hahT_hreedotsupbelow-ar.init.glif │ │ ├── hahT_hreedotsupbelow-ar.medi.glif │ │ ├── hahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_wodotsverticalabove-ar.fina.glif │ │ ├── hahT_wodotsverticalabove-ar.glif │ │ ├── hahT_wodotsverticalabove-ar.init.glif │ │ ├── hahT_wodotsverticalabove-ar.medi.glif │ │ ├── hamza-ar.glif │ │ ├── hamzaabove-ar.glif │ │ ├── hamzabelow-ar.glif │ │ ├── hardsign-cy.glif │ │ ├── hardsign-cy.loclB_G_R_.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── he-hb.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hedagesh-hb.glif │ │ ├── heh-ar.fina.glif │ │ ├── heh-ar.glif │ │ ├── heh-ar.init.glif │ │ ├── heh-ar.medi.glif │ │ ├── hehA_lefabove-ar.init.fina.glif │ │ ├── hehA_lefabove-ar.init.glif │ │ ├── hehD_oachashmee-ar.fina.glif │ │ ├── hehD_oachashmee-ar.glif │ │ ├── hehD_oachashmee-ar.init.glif │ │ ├── hehD_oachashmee-ar.medi.glif │ │ ├── hehH_amzaabove-ar.fina.glif │ │ ├── hehH_amzaabove-ar.glif │ │ ├── hehV_invertedabove-ar.fina.glif │ │ ├── hehV_invertedabove-ar.glif │ │ ├── hehV_invertedabove-ar.init.glif │ │ ├── hehV_invertedabove-ar.medi.glif │ │ ├── hehgoal-ar.fina.glif │ │ ├── hehgoal-ar.glif │ │ ├── hehgoal-ar.init.alt.glif │ │ ├── hehgoal-ar.init.glif │ │ ├── hehgoal-ar.medi.glif │ │ ├── hehgoalH_amzaabove-ar.fina.glif │ │ ├── hehgoalH_amzaabove-ar.glif │ │ ├── hehgoalH_amzaabove-ar.init.alt.glif │ │ ├── hehgoalH_amzaabove-ar.init.glif │ │ ├── hehgoalH_amzaabove-ar.medi.glif │ │ ├── het-hb.glif │ │ ├── highhamza-ar.glif │ │ ├── highhamzaA_lef-ar.fina.glif │ │ ├── highhamzaA_lef-ar.fina.rlig.glif │ │ ├── highhamzaA_lef-ar.glif │ │ ├── highhamzaW_aw-ar.fina.glif │ │ ├── highhamzaW_aw-ar.glif │ │ ├── highhamzaY_eh-ar.fina.alt.glif │ │ ├── highhamzaY_eh-ar.fina.glif │ │ ├── highhamzaY_eh-ar.glif │ │ ├── highhamzaY_eh-ar.init.alt.glif │ │ ├── highhamzaY_eh-ar.init.glif │ │ ├── highhamzaY_eh-ar.medi.glif │ │ ├── holam-hb.glif │ │ ├── holamhaser-hb.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── ii-cy.loclB_G_R_.glif │ │ ├── iigrave-cy.glif │ │ ├── iigrave-cy.loclB_G_R_.glif │ │ ├── iishort-cy.glif │ │ ├── iishort-cy.loclB_G_R_.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── jeem-ar.fina.glif │ │ ├── jeem-ar.glif │ │ ├── jeem-ar.init.glif │ │ ├── jeem-ar.medi.glif │ │ ├── jeemT_wodotsabove-ar.fina.glif │ │ ├── jeemT_wodotsabove-ar.glif │ │ ├── jeemT_wodotsabove-ar.init.glif │ │ ├── jeemT_wodotsabove-ar.medi.glif │ │ ├── jeh-ar.fina.glif │ │ ├── jeh-ar.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaf-ar.fina.glif │ │ ├── kaf-ar.glif │ │ ├── kaf-ar.init.glif │ │ ├── kaf-ar.medi.glif │ │ ├── kaf-hb.glif │ │ ├── kafD_otabove-ar.fina.glif │ │ ├── kafD_otabove-ar.glif │ │ ├── kafD_otabove-ar.init.glif │ │ ├── kafD_otabove-ar.medi.glif │ │ ├── kafR_ing-ar.fina.glif │ │ ├── kafR_ing-ar.glif │ │ ├── kafR_ing-ar.init.glif │ │ ├── kafR_ing-ar.medi.glif │ │ ├── kafT_hreedotsbelow-ar.fina.glif │ │ ├── kafT_hreedotsbelow-ar.glif │ │ ├── kafT_hreedotsbelow-ar.init.glif │ │ ├── kafT_hreedotsbelow-ar.medi.glif │ │ ├── kafT_wodotshorizontalabove-ar.fina.glif │ │ ├── kafT_wodotshorizontalabove-ar.glif │ │ ├── kafT_wodotshorizontalabove-ar.init.glif │ │ ├── kafT_wodotshorizontalabove-ar.medi.glif │ │ ├── kafdagesh-hb.glif │ │ ├── kafswash-ar.alt.glif │ │ ├── kafswash-ar.fina.alt.glif │ │ ├── kafswash-ar.fina.glif │ │ ├── kafswash-ar.glif │ │ ├── kafswash-ar.init.alt.glif │ │ ├── kafswash-ar.init.glif │ │ ├── kafswash-ar.medi.alt.glif │ │ ├── kafswash-ar.medi.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kashida-ar.glif │ │ ├── kasra-ar.glif │ │ ├── kasratan-ar.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── keheh-ar.fina.glif │ │ ├── keheh-ar.glif │ │ ├── keheh-ar.init.glif │ │ ├── keheh-ar.medi.glif │ │ ├── kehehD_otabove-ar.fina.glif │ │ ├── kehehD_otabove-ar.glif │ │ ├── kehehD_otabove-ar.init.glif │ │ ├── kehehD_otabove-ar.medi.glif │ │ ├── kehehT_hreedotsabove-ar.fina.glif │ │ ├── kehehT_hreedotsabove-ar.glif │ │ ├── kehehT_hreedotsabove-ar.init.glif │ │ ├── kehehT_hreedotsabove-ar.medi.glif │ │ ├── kehehT_hreedotsbelow-ar.fina.glif │ │ ├── kehehT_hreedotsbelow-ar.glif │ │ ├── kehehT_hreedotsbelow-ar.init.glif │ │ ├── kehehT_hreedotsbelow-ar.medi.glif │ │ ├── kehehT_hreedotsupbelow-ar.fina.glif │ │ ├── kehehT_hreedotsupbelow-ar.glif │ │ ├── kehehT_hreedotsupbelow-ar.init.glif │ │ ├── kehehT_hreedotsupbelow-ar.medi.glif │ │ ├── kehehT_wodotshorizontalabove-ar.fina.glif │ │ ├── kehehT_wodotshorizontalabove-ar.glif │ │ ├── kehehT_wodotshorizontalabove-ar.init.glif │ │ ├── kehehT_wodotshorizontalabove-ar.medi.glif │ │ ├── kgreenlandic.glif │ │ ├── khah-ar.fina.glif │ │ ├── khah-ar.glif │ │ ├── khah-ar.init.glif │ │ ├── khah-ar.medi.glif │ │ ├── kip.glif │ │ ├── kirghizoe-ar.fina.glif │ │ ├── kirghizoe-ar.glif │ │ ├── kirghizyu-ar.fina.glif │ │ ├── kirghizyu-ar.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── lacute.glif │ │ ├── lam-ar.fina.glif │ │ ├── lam-ar.glif │ │ ├── lam-ar.init.glif │ │ ├── lam-ar.init.rlig.glif │ │ ├── lam-ar.medi.glif │ │ ├── lam-ar.medi.rlig.glif │ │ ├── lamB_ar-ar.fina.glif │ │ ├── lamB_ar-ar.glif │ │ ├── lamB_ar-ar.init.glif │ │ ├── lamB_ar-ar.init.rlig.glif │ │ ├── lamB_ar-ar.medi.glif │ │ ├── lamB_ar-ar.medi.rlig.glif │ │ ├── lamD_otabove-ar.fina.glif │ │ ├── lamD_otabove-ar.glif │ │ ├── lamD_otabove-ar.init.glif │ │ ├── lamD_otabove-ar.init.rlig.glif │ │ ├── lamD_otabove-ar.medi.glif │ │ ├── lamD_otabove-ar.medi.rlig.glif │ │ ├── lamD_oublebar-ar.fina.glif │ │ ├── lamD_oublebar-ar.glif │ │ ├── lamD_oublebar-ar.init.glif │ │ ├── lamD_oublebar-ar.init.rlig.glif │ │ ├── lamD_oublebar-ar.medi.glif │ │ ├── lamD_oublebar-ar.medi.rlig.glif │ │ ├── lamT_hreedotsabove-ar.fina.glif │ │ ├── lamT_hreedotsabove-ar.glif │ │ ├── lamT_hreedotsabove-ar.init.glif │ │ ├── lamT_hreedotsabove-ar.init.rlig.glif │ │ ├── lamT_hreedotsabove-ar.medi.glif │ │ ├── lamT_hreedotsabove-ar.medi.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.fina.glif │ │ ├── lamT_hreedotsbelow-ar.glif │ │ ├── lamT_hreedotsbelow-ar.init.glif │ │ ├── lamT_hreedotsbelow-ar.init.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.medi.glif │ │ ├── lamT_hreedotsbelow-ar.medi.rlig.glif │ │ ├── lamV_above-ar.fina.glif │ │ ├── lamV_above-ar.glif │ │ ├── lamV_above-ar.init.glif │ │ ├── lamV_above-ar.init.rlig.glif │ │ ├── lamV_above-ar.medi.glif │ │ ├── lamV_above-ar.medi.rlig.glif │ │ ├── lam_alef-ar.fina.glif │ │ ├── lam_alef-ar.fina.short.glif │ │ ├── lam_alef-ar.glif │ │ ├── lam_alef-ar.short.glif │ │ ├── lam_alefH_amzaabove-ar.fina.glif │ │ ├── lam_alefH_amzaabove-ar.glif │ │ ├── lam_alefH_amzabelow-ar.fina.glif │ │ ├── lam_alefH_amzabelow-ar.glif │ │ ├── lam_alefM_adda-ar.fina.glif │ │ ├── lam_alefM_adda-ar.glif │ │ ├── lam_alefW_asla-ar.fina.glif │ │ ├── lam_alefW_asla-ar.glif │ │ ├── lam_lam_heh-ar.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── lamed-hb.glif │ │ ├── lameddagesh-hb.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbelt.glif │ │ ├── lcaron.glif │ │ ├── lcommaaccent.glif │ │ ├── ldot.glif │ │ ├── ldotbelow.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── lmiddletilde.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── madda-ar.glif │ │ ├── manat.glif │ │ ├── maqaf-hb.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── meem-ar.fina.glif │ │ ├── meem-ar.glif │ │ ├── meem-ar.init.glif │ │ ├── meem-ar.medi.glif │ │ ├── meemD_otabove-ar.fina.glif │ │ ├── meemD_otabove-ar.glif │ │ ├── meemD_otabove-ar.init.glif │ │ ├── meemD_otabove-ar.medi.glif │ │ ├── meemD_otbelow-ar.fina.glif │ │ ├── meemD_otbelow-ar.glif │ │ ├── meemD_otbelow-ar.init.glif │ │ ├── meemD_otbelow-ar.medi.glif │ │ ├── meemS_topabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.fina.glif │ │ ├── meemT_hreedotsabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.init.glif │ │ ├── meemT_hreedotsabove-ar.medi.glif │ │ ├── mem-hb.glif │ │ ├── memdagesh-hb.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── misraC_omma-ar.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── ng-ar.fina.glif │ │ ├── ng-ar.glif │ │ ├── ng-ar.init.glif │ │ ├── ng-ar.medi.glif │ │ ├── ngoeh-ar.fina.glif │ │ ├── ngoeh-ar.glif │ │ ├── ngoeh-ar.init.glif │ │ ├── ngoeh-ar.medi.glif │ │ ├── nhookleft.glif │ │ ├── nine-ar.glif │ │ ├── nine-arinferior.glif │ │ ├── nine-arsuperior.glif │ │ ├── nine-persian.glif │ │ ├── nine-persianinferior.glif │ │ ├── nine-persiansuperior.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── noon-ar.fina.glif │ │ ├── noon-ar.glif │ │ ├── noon-ar.init.alt.glif │ │ ├── noon-ar.init.glif │ │ ├── noon-ar.medi.glif │ │ ├── noonA_frican-ar.fina.glif │ │ ├── noonA_frican-ar.glif │ │ ├── noonA_frican-ar.init.alt.glif │ │ ├── noonA_frican-ar.init.glif │ │ ├── noonA_frican-ar.medi.glif │ │ ├── noonD_otbelow-ar.fina.glif │ │ ├── noonD_otbelow-ar.glif │ │ ├── noonD_otbelow-ar.init.alt.glif │ │ ├── noonD_otbelow-ar.init.glif │ │ ├── noonD_otbelow-ar.medi.glif │ │ ├── noonR_ing-ar.fina.glif │ │ ├── noonR_ing-ar.glif │ │ ├── noonR_ing-ar.init.alt.glif │ │ ├── noonR_ing-ar.init.glif │ │ ├── noonR_ing-ar.medi.glif │ │ ├── noonT_ahabove-ar.fina.glif │ │ ├── noonT_ahabove-ar.glif │ │ ├── noonT_ahabove-ar.init.alt.glif │ │ ├── noonT_ahabove-ar.init.glif │ │ ├── noonT_ahabove-ar.medi.glif │ │ ├── noonT_hreedotsabove-ar.fina.glif │ │ ├── noonT_hreedotsabove-ar.glif │ │ ├── noonT_hreedotsabove-ar.init.alt.glif │ │ ├── noonT_hreedotsabove-ar.init.glif │ │ ├── noonT_hreedotsabove-ar.medi.glif │ │ ├── noonT_wodotsbelow-ar.fina.glif │ │ ├── noonT_wodotsbelow-ar.glif │ │ ├── noonT_wodotsbelow-ar.init.alt.glif │ │ ├── noonT_wodotsbelow-ar.init.glif │ │ ├── noonT_wodotsbelow-ar.medi.glif │ │ ├── noonV_above-ar.fina.glif │ │ ├── noonV_above-ar.glif │ │ ├── noonV_above-ar.init.alt.glif │ │ ├── noonV_above-ar.init.glif │ │ ├── noonV_above-ar.medi.glif │ │ ├── noonabove-ar.glif │ │ ├── noonghunna-ar.fina.glif │ │ ├── noonghunna-ar.glif │ │ ├── noonghunna-ar.init.alt.glif │ │ ├── noonghunna-ar.init.glif │ │ ├── noonghunna-ar.medi.glif │ │ ├── noonghunnaabove-ar.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── number-ar.glif │ │ ├── numbermark-ar.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── nun-hb.glif │ │ ├── nundagesh-hb.glif │ │ ├── nyeh-ar.fina.glif │ │ ├── nyeh-ar.glif │ │ ├── nyeh-ar.init.glif │ │ ├── nyeh-ar.medi.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe-ar.fina.glif │ │ ├── oe-ar.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one-ar.glif │ │ ├── one-arinferior.glif │ │ ├── one-arsuperior.glif │ │ ├── one-persian.glif │ │ ├── one-persianinferior.glif │ │ ├── one-persiansuperior.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── pagenumber-ar.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft-ar.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright-ar.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── paseq-hb.glif │ │ ├── patah-hb.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclB_G_R_.glif │ │ ├── pe-hb.glif │ │ ├── pedagesh-hb.B_R_A_C_K_E_T_.600.glif │ │ ├── pedagesh-hb.glif │ │ ├── peh-ar.alt.glif │ │ ├── peh-ar.fina.alt.glif │ │ ├── peh-ar.fina.glif │ │ ├── peh-ar.glif │ │ ├── peh-ar.init.alt.glif │ │ ├── peh-ar.init.glif │ │ ├── peh-ar.medi.glif │ │ ├── pehM_eemabove-ar.alt.glif │ │ ├── pehM_eemabove-ar.fina.alt.glif │ │ ├── pehM_eemabove-ar.fina.glif │ │ ├── pehM_eemabove-ar.glif │ │ ├── pehM_eemabove-ar.init.alt.glif │ │ ├── pehM_eemabove-ar.init.glif │ │ ├── pehM_eemabove-ar.medi.glif │ │ ├── peheh-ar.alt.glif │ │ ├── peheh-ar.fina.alt.glif │ │ ├── peheh-ar.fina.glif │ │ ├── peheh-ar.glif │ │ ├── peheh-ar.init.alt.glif │ │ ├── peheh-ar.init.glif │ │ ├── peheh-ar.medi.glif │ │ ├── percent-ar.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand-ar.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── qaf-ar.fina.glif │ │ ├── qaf-ar.glif │ │ ├── qaf-ar.init.alt.glif │ │ ├── qaf-ar.init.glif │ │ ├── qaf-ar.medi.glif │ │ ├── qafA_frican-ar.fina.glif │ │ ├── qafA_frican-ar.glif │ │ ├── qafA_frican-ar.init.alt.glif │ │ ├── qafA_frican-ar.init.glif │ │ ├── qafA_frican-ar.medi.glif │ │ ├── qafD_otabove-ar.fina.glif │ │ ├── qafD_otabove-ar.glif │ │ ├── qafD_otabove-ar.init.alt.glif │ │ ├── qafD_otabove-ar.init.glif │ │ ├── qafD_otabove-ar.medi.glif │ │ ├── qafD_otbelow-ar.fina.glif │ │ ├── qafD_otbelow-ar.glif │ │ ├── qafD_otbelow-ar.init.glif │ │ ├── qafD_otbelow-ar.medi.glif │ │ ├── qafD_otless-ar.fina.glif │ │ ├── qafD_otless-ar.glif │ │ ├── qafD_otless-ar.init.alt.glif │ │ ├── qafD_otless-ar.init.glif │ │ ├── qafD_otless-ar.medi.glif │ │ ├── qafT_hreedotsabove-ar.fina.glif │ │ ├── qafT_hreedotsabove-ar.glif │ │ ├── qafT_hreedotsabove-ar.init.glif │ │ ├── qafT_hreedotsabove-ar.medi.glif │ │ ├── qamats-hb.glif │ │ ├── qamatsqatan-hb.glif │ │ ├── qof-hb.glif │ │ ├── qofdagesh-hb.glif │ │ ├── question-ar.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── racute.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── ray-ar.glif │ │ ├── rcaron.glif │ │ ├── rcommaaccent.glif │ │ ├── rdotbelow.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── reh-ar.fina.glif │ │ ├── reh-ar.glif │ │ ├── rehA_lefabove-ar.fina.glif │ │ ├── rehA_lefabove-ar.glif │ │ ├── rehD_otbelow-ar.fina.glif │ │ ├── rehD_otbelow-ar.glif │ │ ├── rehD_otbelowdotabove-ar.fina.glif │ │ ├── rehD_otbelowdotabove-ar.glif │ │ ├── rehF_ourdots-ar.fina.glif │ │ ├── rehF_ourdots-ar.glif │ │ ├── rehH_amzaabove-ar.fina.glif │ │ ├── rehH_amzaabove-ar.glif │ │ ├── rehL_oop-ar.fina.glif │ │ ├── rehL_oop-ar.glif │ │ ├── rehR_ing-ar.fina.glif │ │ ├── rehR_ing-ar.glif │ │ ├── rehS_troke-ar.fina.glif │ │ ├── rehS_troke-ar.glif │ │ ├── rehT_wodots-ar.fina.glif │ │ ├── rehT_wodots-ar.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.glif │ │ ├── rehT_wodotsverticalabove-ar.fina.glif │ │ ├── rehT_wodotsverticalabove-ar.glif │ │ ├── rehV_below-ar.fina.glif │ │ ├── rehV_below-ar.glif │ │ ├── rehV_invertedabove-ar.fina.glif │ │ ├── rehV_invertedabove-ar.glif │ │ ├── rehv-ar.fina.glif │ │ ├── rehv-ar.glif │ │ ├── replacementC_haracter.glif │ │ ├── resh-hb.glif │ │ ├── reshdagesh-hb.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringA_rabic.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rnoon-ar.fina.glif │ │ ├── rnoon-ar.glif │ │ ├── rnoon-ar.init.alt.glif │ │ ├── rnoon-ar.init.glif │ │ ├── rnoon-ar.medi.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── rreh-ar.fina.glif │ │ ├── rreh-ar.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sad-ar.alt.glif │ │ ├── sad-ar.fina.alt.glif │ │ ├── sad-ar.fina.glif │ │ ├── sad-ar.glif │ │ ├── sad-ar.init.glif │ │ ├── sad-ar.medi.glif │ │ ├── sadT_hreedots-ar.alt.glif │ │ ├── sadT_hreedots-ar.fina.alt.glif │ │ ├── sadT_hreedots-ar.fina.glif │ │ ├── sadT_hreedots-ar.glif │ │ ├── sadT_hreedots-ar.init.glif │ │ ├── sadT_hreedots-ar.medi.glif │ │ ├── sadT_hreedotsbelow-ar.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.glif │ │ ├── sadT_hreedotsbelow-ar.glif │ │ ├── sadT_hreedotsbelow-ar.init.glif │ │ ├── sadT_hreedotsbelow-ar.medi.glif │ │ ├── sadT_wodotsbelow-ar.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.glif │ │ ├── sadT_wodotsbelow-ar.glif │ │ ├── sadT_wodotsbelow-ar.init.glif │ │ ├── sadT_wodotsbelow-ar.medi.glif │ │ ├── samekh-hb.glif │ │ ├── samekhdagesh-hb.glif │ │ ├── samvat-ar.glif │ │ ├── scaron.glif │ │ ├── scedilla.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scommaaccent.glif │ │ ├── sdotbelow.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── seen-ar.alt.glif │ │ ├── seen-ar.fina.alt.glif │ │ ├── seen-ar.fina.glif │ │ ├── seen-ar.glif │ │ ├── seen-ar.init.glif │ │ ├── seen-ar.medi.glif │ │ ├── seenD_otbelowD_otabove-ar.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.glif │ │ ├── seenD_otbelowD_otabove-ar.glif │ │ ├── seenD_otbelowD_otabove-ar.init.glif │ │ ├── seenD_otbelowD_otabove-ar.medi.glif │ │ ├── seenF_ourabove-ar.alt.glif │ │ ├── seenF_ourabove-ar.fina.alt.glif │ │ ├── seenF_ourabove-ar.fina.glif │ │ ├── seenF_ourabove-ar.glif │ │ ├── seenF_ourabove-ar.init.glif │ │ ├── seenF_ourabove-ar.medi.glif │ │ ├── seenF_ourdotsabove-ar.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.glif │ │ ├── seenF_ourdotsabove-ar.glif │ │ ├── seenF_ourdotsabove-ar.init.glif │ │ ├── seenF_ourdotsabove-ar.medi.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_hreedotsbelow-ar.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.glif │ │ ├── seenT_hreedotsbelow-ar.glif │ │ ├── seenT_hreedotsbelow-ar.init.glif │ │ ├── seenT_hreedotsbelow-ar.medi.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.init.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.medi.glif │ │ ├── seenT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_wodotshorizontalabove-ar.glif │ │ ├── seenT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_wodotsverticalabove-ar.alt.glif │ │ ├── seenT_wodotsverticalabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.alt.glif │ │ ├── seenV_invertedabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.fina.glif │ │ ├── seenV_invertedabove-ar.glif │ │ ├── seenV_invertedabove-ar.init.glif │ │ ├── seenV_invertedabove-ar.medi.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon-ar.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven-ar.glif │ │ ├── seven-arinferior.glif │ │ ├── seven-arsuperior.glif │ │ ├── seven-persian.glif │ │ ├── seven-persian.urdu.glif │ │ ├── seven-persian.urduinferior.glif │ │ ├── seven-persian.urdusuperior.glif │ │ ├── seven-persianinferior.glif │ │ ├── seven-persiansuperior.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── sha-cy.loclB_G_R_.glif │ │ ├── shadda-ar.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── shcha-cy.loclB_G_R_.glif │ │ ├── sheen-ar.alt.glif │ │ ├── sheen-ar.fina.alt.glif │ │ ├── sheen-ar.fina.glif │ │ ├── sheen-ar.glif │ │ ├── sheen-ar.init.glif │ │ ├── sheen-ar.medi.glif │ │ ├── sheenD_otbelow-ar.alt.glif │ │ ├── sheenD_otbelow-ar.fina.alt.glif │ │ ├── sheenD_otbelow-ar.fina.glif │ │ ├── sheenD_otbelow-ar.glif │ │ ├── sheenD_otbelow-ar.init.glif │ │ ├── sheenD_otbelow-ar.medi.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── shin-hb.glif │ │ ├── shindagesh-hb.glif │ │ ├── shindageshshindot-hb.glif │ │ ├── shindageshsindot-hb.glif │ │ ├── shindot-hb.glif │ │ ├── shinshindot-hb.glif │ │ ├── shinsindot-hb.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── sindhiampersand-ar.glif │ │ ├── sindhipostpositionmen-ar.glif │ │ ├── sindot-hb.glif │ │ ├── six-ar.glif │ │ ├── six-arinferior.glif │ │ ├── six-arsuperior.glif │ │ ├── six-persian.glif │ │ ├── six-persianinferior.glif │ │ ├── six-persiansuperior.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── softsign-cy.loclB_G_R_.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── sukun-ar.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tah-ar.fina.glif │ │ ├── tah-ar.glif │ │ ├── tah-ar.init.glif │ │ ├── tah-ar.medi.glif │ │ ├── tahT_hreedots-ar.fina.glif │ │ ├── tahT_hreedots-ar.glif │ │ ├── tahT_hreedots-ar.init.glif │ │ ├── tahT_hreedots-ar.medi.glif │ │ ├── tahT_wodotsabove-ar.fina.glif │ │ ├── tahT_wodotsabove-ar.glif │ │ ├── tahT_wodotsabove-ar.init.glif │ │ ├── tahT_wodotsabove-ar.medi.glif │ │ ├── tahbelow-ar.glif │ │ ├── tahcenter-ar.glif │ │ ├── tau.glif │ │ ├── tav-hb.glif │ │ ├── tavdagesh-hb.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcheh-ar.fina.glif │ │ ├── tcheh-ar.glif │ │ ├── tcheh-ar.init.glif │ │ ├── tcheh-ar.medi.glif │ │ ├── tchehD_otabove-ar.fina.glif │ │ ├── tchehD_otabove-ar.glif │ │ ├── tchehD_otabove-ar.init.glif │ │ ├── tchehD_otabove-ar.medi.glif │ │ ├── tcheheh-ar.fina.glif │ │ ├── tcheheh-ar.glif │ │ ├── tcheheh-ar.init.glif │ │ ├── tcheheh-ar.medi.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclB_G_R_.glif │ │ ├── teh-ar.alt.glif │ │ ├── teh-ar.fina.alt.glif │ │ ├── teh-ar.fina.glif │ │ ├── teh-ar.glif │ │ ├── teh-ar.init.alt.glif │ │ ├── teh-ar.init.glif │ │ ├── teh-ar.medi.glif │ │ ├── tehM_arbuta-ar.fina.glif │ │ ├── tehM_arbuta-ar.glif │ │ ├── tehM_arbutagoal-ar.fina.glif │ │ ├── tehM_arbutagoal-ar.glif │ │ ├── tehR_ing-ar.alt.glif │ │ ├── tehR_ing-ar.fina.alt.glif │ │ ├── tehR_ing-ar.fina.glif │ │ ├── tehR_ing-ar.glif │ │ ├── tehR_ing-ar.init.alt.glif │ │ ├── tehR_ing-ar.init.glif │ │ ├── tehR_ing-ar.medi.glif │ │ ├── tehT_ehabove-ar.alt.glif │ │ ├── tehT_ehabove-ar.fina.alt.glif │ │ ├── tehT_ehabove-ar.fina.glif │ │ ├── tehT_ehabove-ar.glif │ │ ├── tehT_ehabove-ar.init.alt.glif │ │ ├── tehT_ehabove-ar.init.glif │ │ ├── tehT_ehabove-ar.medi.glif │ │ ├── tehT_hreedotsdown-ar.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.glif │ │ ├── tehT_hreedotsdown-ar.glif │ │ ├── tehT_hreedotsdown-ar.init.alt.glif │ │ ├── tehT_hreedotsdown-ar.init.glif │ │ ├── tehT_hreedotsdown-ar.medi.glif │ │ ├── tehT_hreedotsupbelow-ar.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.glif │ │ ├── tehT_hreedotsupbelow-ar.glif │ │ ├── tehT_hreedotsupbelow-ar.init.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.init.glif │ │ ├── tehT_hreedotsupbelow-ar.medi.glif │ │ ├── tehabove-ar.small.glif │ │ ├── teheh-ar.alt.glif │ │ ├── teheh-ar.fina.alt.glif │ │ ├── teheh-ar.fina.glif │ │ ├── teheh-ar.glif │ │ ├── teheh-ar.init.alt.glif │ │ ├── teheh-ar.init.glif │ │ ├── teheh-ar.medi.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── tet-hb.glif │ │ ├── tetdagesh-hb.glif │ │ ├── thal-ar.fina.glif │ │ ├── thal-ar.glif │ │ ├── thalA_lefabove-ar.fina.glif │ │ ├── thalA_lefabove-ar.glif │ │ ├── theh-ar.alt.glif │ │ ├── theh-ar.fina.alt.glif │ │ ├── theh-ar.fina.glif │ │ ├── theh-ar.glif │ │ ├── theh-ar.init.alt.glif │ │ ├── theh-ar.init.glif │ │ ├── theh-ar.medi.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── thousandseparator-ar.glif │ │ ├── three-ar.glif │ │ ├── three-arinferior.glif │ │ ├── three-arsuperior.glif │ │ ├── three-persian.glif │ │ ├── three-persian.small01.glif │ │ ├── three-persianinferior.glif │ │ ├── three-persiansuperior.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threedots-ar.glif │ │ ├── threedotsdownabove-ar.glif │ │ ├── threedotsdownbelow-ar.glif │ │ ├── threedotsdowncenter-ar.glif │ │ ├── threedotsupabove-ar.glif │ │ ├── threedotsupabove-ar.v2.glif │ │ ├── threedotsupbelow-ar.glif │ │ ├── threedotsupcenter-ar.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tsadi-hb.glif │ │ ├── tsadidagesh-hb.glif │ │ ├── tse-cy.glif │ │ ├── tse-cy.loclB_G_R_.glif │ │ ├── tshe-cy.glif │ │ ├── tteh-ar.alt.glif │ │ ├── tteh-ar.fina.alt.glif │ │ ├── tteh-ar.fina.glif │ │ ├── tteh-ar.glif │ │ ├── tteh-ar.init.alt.glif │ │ ├── tteh-ar.init.glif │ │ ├── tteh-ar.medi.glif │ │ ├── tteheh-ar.alt.glif │ │ ├── tteheh-ar.fina.alt.glif │ │ ├── tteheh-ar.fina.glif │ │ ├── tteheh-ar.glif │ │ ├── tteheh-ar.init.alt.glif │ │ ├── tteheh-ar.init.glif │ │ ├── tteheh-ar.medi.glif │ │ ├── tugrik.glif │ │ ├── two-ar.glif │ │ ├── two-arinferior.glif │ │ ├── two-arsuperior.glif │ │ ├── two-persian.glif │ │ ├── two-persian.small01.glif │ │ ├── two-persianinferior.glif │ │ ├── two-persiansuperior.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twodotshorizontalabove-ar.glif │ │ ├── twodotshorizontalabove-ar.v2.glif │ │ ├── twodotshorizontalbelow-ar.glif │ │ ├── twodotshorizontalcenter-ar.glif │ │ ├── twodotstahbelow-ar.glif │ │ ├── twodotstahcenter-ar.glif │ │ ├── twodotsverticalabove-ar.glif │ │ ├── twodotsverticalbelow-ar.glif │ │ ├── twodotsverticalcenter-ar.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-ar.fina.glif │ │ ├── u-ar.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uH_amzaabove-ar.fina.glif │ │ ├── uH_amzaabove-ar.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── uni08B_3.fina.glif │ │ ├── uni08B_3.glif │ │ ├── uni08B_3.init.glif │ │ ├── uni08B_3.medi.glif │ │ ├── uni08B_4.fina.glif │ │ ├── uni08B_4.glif │ │ ├── uni08B_4.init.glif │ │ ├── uni08B_4.medi.glif │ │ ├── uni08B_9.fina.glif │ │ ├── uniF_B_C_0.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── vabove-ar.glif │ │ ├── vav-hb.glif │ │ ├── vavdagesh-hb.glif │ │ ├── vavholam-hb.glif │ │ ├── ve-ar.fina.glif │ │ ├── ve-ar.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.loclB_G_R_.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── veh-ar.alt.glif │ │ ├── veh-ar.fina.alt.glif │ │ ├── veh-ar.fina.glif │ │ ├── veh-ar.glif │ │ ├── veh-ar.init.alt.glif │ │ ├── veh-ar.init.glif │ │ ├── veh-ar.medi.glif │ │ ├── venus.glif │ │ ├── verseC_omma-ar.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vinvertedabove-ar.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wasla-ar.glif │ │ ├── wavyhamzaabove-ar.glif │ │ ├── wavyhamzabelow-ar.glif │ │ ├── waw-ar.fina.glif │ │ ├── waw-ar.glif │ │ ├── wawD_otabove-ar.fina.glif │ │ ├── wawD_otabove-ar.glif │ │ ├── wawD_otcenter-ar.fina.glif │ │ ├── wawD_otcenter-ar.glif │ │ ├── wawH_amzaabove-ar.fina.glif │ │ ├── wawH_amzaabove-ar.glif │ │ ├── wawS_traight-ar.glif │ │ ├── wawT_hreeA_bove-ar.fina.glif │ │ ├── wawT_hreeA_bove-ar.glif │ │ ├── wawT_woabove-ar.fina.glif │ │ ├── wawT_woabove-ar.glif │ │ ├── wawT_wodots-ar.fina.glif │ │ ├── wawT_wodots-ar.glif │ │ ├── wawring-ar.fina.glif │ │ ├── wawring-ar.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── year-ar.glif │ │ ├── yeh-ar.fina.alt.glif │ │ ├── yeh-ar.fina.glif │ │ ├── yeh-ar.glif │ │ ├── yeh-ar.init.alt.glif │ │ ├── yeh-ar.init.glif │ │ ├── yeh-ar.medi.glif │ │ ├── yeh-farsi.fina.alt.glif │ │ ├── yeh-farsi.fina.glif │ │ ├── yeh-farsi.glif │ │ ├── yeh-farsi.init.alt.glif │ │ ├── yeh-farsi.init.glif │ │ ├── yeh-farsi.medi.glif │ │ ├── yehF_ourbelow-farsi.fina.alt.glif │ │ ├── yehF_ourbelow-farsi.fina.glif │ │ ├── yehF_ourbelow-farsi.glif │ │ ├── yehF_ourbelow-farsi.init.alt.glif │ │ ├── yehF_ourbelow-farsi.init.glif │ │ ├── yehF_ourbelow-farsi.medi.glif │ │ ├── yehH_amzaabove-ar.fina.alt.glif │ │ ├── yehH_amzaabove-ar.fina.glif │ │ ├── yehH_amzaabove-ar.glif │ │ ├── yehH_amzaabove-ar.init.alt.glif │ │ ├── yehH_amzaabove-ar.init.glif │ │ ├── yehH_amzaabove-ar.medi.glif │ │ ├── yehK_ashmiri-ar.fina.alt.glif │ │ ├── yehK_ashmiri-ar.fina.glif │ │ ├── yehK_ashmiri-ar.glif │ │ ├── yehK_ashmiri-ar.init.alt.glif │ │ ├── yehK_ashmiri-ar.init.glif │ │ ├── yehK_ashmiri-ar.medi.glif │ │ ├── yehR_ohingya-ar.fina.glif │ │ ├── yehR_ohingya-ar.glif │ │ ├── yehR_ohingya-ar.isol.glif │ │ ├── yehT_ail-ar.fina.alt.glif │ │ ├── yehT_ail-ar.fina.glif │ │ ├── yehT_ail-ar.glif │ │ ├── yehT_hreeabove-farsi.fina.alt.glif │ │ ├── yehT_hreeabove-farsi.fina.glif │ │ ├── yehT_hreeabove-farsi.glif │ │ ├── yehT_hreeabove-farsi.init.alt.glif │ │ ├── yehT_hreeabove-farsi.init.glif │ │ ├── yehT_hreeabove-farsi.medi.glif │ │ ├── yehT_hreedotsabove-farsi.fina.alt.glif │ │ ├── yehT_hreedotsabove-farsi.fina.glif │ │ ├── yehT_hreedotsabove-farsi.glif │ │ ├── yehT_hreedotsabove-farsi.init.alt.glif │ │ ├── yehT_hreedotsabove-farsi.init.glif │ │ ├── yehT_hreedotsabove-farsi.medi.glif │ │ ├── yehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── yehT_hreedotsbelow-ar.fina.glif │ │ ├── yehT_hreedotsbelow-ar.glif │ │ ├── yehT_hreedotsbelow-ar.init.alt.glif │ │ ├── yehT_hreedotsbelow-ar.init.glif │ │ ├── yehT_hreedotsbelow-ar.medi.glif │ │ ├── yehT_woabove-farsi.fina.alt.glif │ │ ├── yehT_woabove-farsi.fina.glif │ │ ├── yehT_woabove-farsi.glif │ │ ├── yehT_woabove-farsi.init.alt.glif │ │ ├── yehT_woabove-farsi.init.glif │ │ ├── yehT_woabove-farsi.medi.glif │ │ ├── yehT_wodotsabove-farsi.fina.alt.glif │ │ ├── yehT_wodotsabove-farsi.fina.glif │ │ ├── yehT_wodotsabove-farsi.glif │ │ ├── yehT_wodotsabove-farsi.init.alt.glif │ │ ├── yehT_wodotsabove-farsi.init.glif │ │ ├── yehT_wodotsabove-farsi.medi.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.fina.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.medi.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.medi.glif │ │ ├── yehV_above-ar.fina.alt.glif │ │ ├── yehV_above-ar.fina.glif │ │ ├── yehV_above-ar.glif │ │ ├── yehV_above-ar.init.alt.glif │ │ ├── yehV_above-ar.init.glif │ │ ├── yehV_above-ar.medi.glif │ │ ├── yehV_inverted-farsi.fina.alt.glif │ │ ├── yehV_inverted-farsi.fina.glif │ │ ├── yehV_inverted-farsi.glif │ │ ├── yehV_inverted-farsi.init.alt.glif │ │ ├── yehV_inverted-farsi.init.glif │ │ ├── yehV_inverted-farsi.medi.glif │ │ ├── yehbarree-ar.fina.glif │ │ ├── yehbarree-ar.glif │ │ ├── yehbarreeH_amzaabove-ar.fina.glif │ │ ├── yehbarreeH_amzaabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.fina.glif │ │ ├── yehbarreeT_hreeabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.init.alt.glif │ │ ├── yehbarreeT_hreeabove-ar.init.glif │ │ ├── yehbarreeT_hreeabove-ar.medi.glif │ │ ├── yehbarreeT_woabove-ar.fina.glif │ │ ├── yehbarreeT_woabove-ar.glif │ │ ├── yehbarreeT_woabove-ar.init.alt.glif │ │ ├── yehbarreeT_woabove-ar.init.glif │ │ ├── yehbarreeT_woabove-ar.medi.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── yod-hb.glif │ │ ├── yoddagesh-hb.glif │ │ ├── ytilde.glif │ │ ├── yu-ar.fina.glif │ │ ├── yu-ar.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zah-ar.fina.glif │ │ ├── zah-ar.glif │ │ ├── zah-ar.init.glif │ │ ├── zah-ar.medi.glif │ │ ├── zain-ar.fina.glif │ │ ├── zain-ar.glif │ │ ├── zainV_I_nvertedabove-ar.fina.glif │ │ ├── zainV_I_nvertedabove-ar.glif │ │ ├── zayin-hb.glif │ │ ├── zayindagesh-hb.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── zero-ar.glif │ │ ├── zero-arinferior.glif │ │ ├── zero-arsuperior.glif │ │ ├── zero-persian.glif │ │ ├── zero-persianinferior.glif │ │ ├── zero-persiansuperior.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.E_xtraC_ondensed B_lack/ │ │ ├── allah-ar.glif │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── glyphs.E_xtraC_ondensed R_egular/ │ │ ├── allah-ar.glif │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── glyphs.E_xtraC_ondensed T_hin/ │ │ ├── allah-ar.glif │ │ ├── contents.plist │ │ └── layerinfo.plist │ ├── glyphs.public.background/ │ │ ├── _alefF_athatan-ar.fina.rlig.glif │ │ ├── _tahabove.glif │ │ ├── allah-ar.glif │ │ ├── bar_braceright.liga.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ ├── numbersign_braceleft.liga.glif │ │ └── question-ar.glif │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode-ExtraLightItalic.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _notdef.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── b.alt.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── beta.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── che-cy.salt.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chedescender-cy.salt.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelowcomb.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── f.locl.glif │ │ ├── f.salt.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── g.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclS_R_B_.glif │ │ ├── germandbls.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.alt.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hardsign-cy.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── iigrave-cy.glif │ │ ├── iishort-cy.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.alt.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── k.alt.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.alt.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── kgreenlandic.glif │ │ ├── kip.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── l.salt.glif │ │ ├── lacute.glif │ │ ├── lacute.salt.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbar.salt.glif │ │ ├── lbelt.glif │ │ ├── lbelt.salt.glif │ │ ├── lcaron.glif │ │ ├── lcaron.salt.glif │ │ ├── lcommaaccent.glif │ │ ├── lcommaaccent.salt.glif │ │ ├── ldot.glif │ │ ├── ldot.salt.glif │ │ ├── ldotbelow.glif │ │ ├── ldotbelow.salt.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── llinebelow.salt.glif │ │ ├── lmiddletilde.glif │ │ ├── lmiddletilde.salt.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── lslash.salt.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── manat.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── nhookleft.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclS_R_B_.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── r.salt.glif │ │ ├── racute.glif │ │ ├── racute.salt.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── rcaron.glif │ │ ├── rcaron.salt.glif │ │ ├── rcommaaccent.glif │ │ ├── rcommaaccent.salt.glif │ │ ├── rdotbelow.glif │ │ ├── rdotbelow.salt.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── replacementC_haracter.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── s.salt.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sacute.salt.glif │ │ ├── scaron.glif │ │ ├── scaron.salt.glif │ │ ├── scedilla.glif │ │ ├── scedilla.salt.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scircumflex.salt.glif │ │ ├── scommaaccent.glif │ │ ├── scommaaccent.salt.glif │ │ ├── sdotbelow.glif │ │ ├── sdotbelow.salt.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.alt.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tau.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclS_R_B_.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tse-cy.glif │ │ ├── tshe-cy.glif │ │ ├── tugrik.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.salt.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── venus.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── ytilde.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── ze-cy.salt.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.public.background/ │ │ ├── bar_braceright.liga.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ └── numbersign_braceleft.liga.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode-Italic.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _notdef.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── b.alt.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── beta.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── che-cy.salt.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chedescender-cy.salt.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelowcomb.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── f.locl.glif │ │ ├── f.salt.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── g.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclS_R_B_.glif │ │ ├── germandbls.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.alt.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hardsign-cy.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── iigrave-cy.glif │ │ ├── iishort-cy.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.alt.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── k.alt.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.alt.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── kgreenlandic.glif │ │ ├── kip.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── l.salt.glif │ │ ├── lacute.glif │ │ ├── lacute.salt.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbar.salt.glif │ │ ├── lbelt.glif │ │ ├── lbelt.salt.glif │ │ ├── lcaron.glif │ │ ├── lcaron.salt.glif │ │ ├── lcommaaccent.glif │ │ ├── lcommaaccent.salt.glif │ │ ├── ldot.glif │ │ ├── ldot.salt.glif │ │ ├── ldotbelow.glif │ │ ├── ldotbelow.salt.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── llinebelow.salt.glif │ │ ├── lmiddletilde.glif │ │ ├── lmiddletilde.salt.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── lslash.salt.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── manat.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── nhookleft.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclS_R_B_.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── r.salt.glif │ │ ├── racute.glif │ │ ├── racute.salt.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── rcaron.glif │ │ ├── rcaron.salt.glif │ │ ├── rcommaaccent.glif │ │ ├── rcommaaccent.salt.glif │ │ ├── rdotbelow.glif │ │ ├── rdotbelow.salt.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── replacementC_haracter.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── s.salt.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sacute.salt.glif │ │ ├── scaron.glif │ │ ├── scaron.salt.glif │ │ ├── scedilla.glif │ │ ├── scedilla.salt.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scircumflex.salt.glif │ │ ├── scommaaccent.glif │ │ ├── scommaaccent.salt.glif │ │ ├── sdotbelow.glif │ │ ├── sdotbelow.salt.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.alt.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tau.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclS_R_B_.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tse-cy.glif │ │ ├── tshe-cy.glif │ │ ├── tugrik.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.salt.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── venus.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── ytilde.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── ze-cy.salt.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.public.background/ │ │ ├── bar_braceright.liga.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ ├── numbersign_braceleft.liga.glif │ │ └── w_w_w.liga.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode-Regular.ufo/ │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── A_-cy.glif │ │ ├── A_.glif │ │ ├── A_.half.glif │ │ ├── A_E_.glif │ │ ├── A_E_acute.glif │ │ ├── A_acute.glif │ │ ├── A_breve.glif │ │ ├── A_breveacute.glif │ │ ├── A_brevedotbelow.glif │ │ ├── A_brevegrave.glif │ │ ├── A_brevehookabove.glif │ │ ├── A_brevetilde.glif │ │ ├── A_caron.glif │ │ ├── A_circumflex.glif │ │ ├── A_circumflexacute.glif │ │ ├── A_circumflexdotbelow.glif │ │ ├── A_circumflexgrave.glif │ │ ├── A_circumflexhookabove.glif │ │ ├── A_circumflextilde.glif │ │ ├── A_dieresis.glif │ │ ├── A_dotbelow.glif │ │ ├── A_grave.glif │ │ ├── A_hookabove.glif │ │ ├── A_lpha-latin.glif │ │ ├── A_lpha.glif │ │ ├── A_lphatonos.glif │ │ ├── A_macron.glif │ │ ├── A_ogonek.glif │ │ ├── A_ring.glif │ │ ├── A_ringacute.glif │ │ ├── A_small.glif │ │ ├── A_stroke.glif │ │ ├── A_tilde.glif │ │ ├── B_.glif │ │ ├── B_.half.glif │ │ ├── B_e-cy.glif │ │ ├── B_eta.glif │ │ ├── C_.glif │ │ ├── C_.half.glif │ │ ├── C_R_.glif │ │ ├── C_acute.glif │ │ ├── C_acute.loclP_L_K_.glif │ │ ├── C_caron.glif │ │ ├── C_cedilla.glif │ │ ├── C_circumflex.glif │ │ ├── C_dotaccent.glif │ │ ├── C_he-cy.glif │ │ ├── C_hedescender-cy.glif │ │ ├── C_hi.glif │ │ ├── C_stroke.glif │ │ ├── D_.glif │ │ ├── D_.half.glif │ │ ├── D_african.glif │ │ ├── D_caron.glif │ │ ├── D_croat.glif │ │ ├── D_e-cy.glif │ │ ├── D_e-cy.loclB_G_R_.glif │ │ ├── D_elta.glif │ │ ├── D_je-cy.glif │ │ ├── D_ze-cy.glif │ │ ├── D_zhe-cy.glif │ │ ├── E_-cy.glif │ │ ├── E_.glif │ │ ├── E_.half.glif │ │ ├── E_acute.glif │ │ ├── E_breve.glif │ │ ├── E_caron.glif │ │ ├── E_circumflex.glif │ │ ├── E_circumflexacute.glif │ │ ├── E_circumflexdotbelow.glif │ │ ├── E_circumflexgrave.glif │ │ ├── E_circumflexhookabove.glif │ │ ├── E_circumflextilde.glif │ │ ├── E_dieresis.glif │ │ ├── E_dotaccent.glif │ │ ├── E_dotbelow.glif │ │ ├── E_f-cy.glif │ │ ├── E_f-cy.loclB_G_R_.glif │ │ ├── E_grave.glif │ │ ├── E_hookabove.glif │ │ ├── E_l-cy.glif │ │ ├── E_l-cy.loclB_G_R_.glif │ │ ├── E_m-cy.glif │ │ ├── E_macron.glif │ │ ├── E_n-cy.glif │ │ ├── E_ndescender-cy.glif │ │ ├── E_ng.glif │ │ ├── E_ogonek.glif │ │ ├── E_open.glif │ │ ├── E_psilon.glif │ │ ├── E_psilontonos.glif │ │ ├── E_r-cy.glif │ │ ├── E_reversed-cy.glif │ │ ├── E_reversed.glif │ │ ├── E_s-cy.glif │ │ ├── E_sh.glif │ │ ├── E_ta.glif │ │ ├── E_tatonos.glif │ │ ├── E_th.glif │ │ ├── E_tilde.glif │ │ ├── E_zh.glif │ │ ├── F_.glif │ │ ├── F_.half.glif │ │ ├── F_hook.glif │ │ ├── G_.glif │ │ ├── G_.half.glif │ │ ├── G_amma.glif │ │ ├── G_ammaafrican.glif │ │ ├── G_breve.glif │ │ ├── G_caron.glif │ │ ├── G_circumflex.glif │ │ ├── G_commaaccent.glif │ │ ├── G_dotaccent.glif │ │ ├── G_e-cy.glif │ │ ├── G_ermandbls.glif │ │ ├── G_hestroke-cy.glif │ │ ├── G_heupturn-cy.glif │ │ ├── G_je-cy.glif │ │ ├── G_small.glif │ │ ├── G_stroke.glif │ │ ├── H_.glif │ │ ├── H_.half.glif │ │ ├── H_a-cy.glif │ │ ├── H_adescender-cy.glif │ │ ├── H_ardsign-cy.glif │ │ ├── H_bar.glif │ │ ├── H_caron.glif │ │ ├── H_circumflex.glif │ │ ├── H_dotbelow.glif │ │ ├── I_-cy.glif │ │ ├── I_.glif │ │ ├── I_.half.glif │ │ ├── I_J_.glif │ │ ├── I_J__acute.glif │ │ ├── I_a-cy.glif │ │ ├── I_acute.glif │ │ ├── I_breve.glif │ │ ├── I_circumflex.glif │ │ ├── I_dieresis.glif │ │ ├── I_dotaccent.glif │ │ ├── I_dotbelow.glif │ │ ├── I_e-cy.glif │ │ ├── I_egrave-cy.glif │ │ ├── I_grave.glif │ │ ├── I_hookabove.glif │ │ ├── I_i-cy.glif │ │ ├── I_igrave-cy.glif │ │ ├── I_ishort-cy.glif │ │ ├── I_macron-cy.glif │ │ ├── I_macron.glif │ │ ├── I_o-cy.glif │ │ ├── I_ogonek.glif │ │ ├── I_ota.glif │ │ ├── I_otaafrican.glif │ │ ├── I_otadieresis.glif │ │ ├── I_otatonos.glif │ │ ├── I_small.glif │ │ ├── I_tilde.glif │ │ ├── I_u-cy.glif │ │ ├── J_.glif │ │ ├── J_acute.glif │ │ ├── J_circumflex.glif │ │ ├── J_e-cy.glif │ │ ├── K_.glif │ │ ├── K_.half.glif │ │ ├── K_a-cy.glif │ │ ├── K_acute.glif │ │ ├── K_adescender-cy.glif │ │ ├── K_aiS_ymbol.glif │ │ ├── K_appa.glif │ │ ├── K_commaaccent.glif │ │ ├── K_dotbelow.glif │ │ ├── K_je-cy.glif │ │ ├── K_linebelow.glif │ │ ├── L_.glif │ │ ├── L_.half.glif │ │ ├── L_I_G_.glif │ │ ├── L_acute.glif │ │ ├── L_ambda.glif │ │ ├── L_bar.glif │ │ ├── L_caron.glif │ │ ├── L_commaaccent.glif │ │ ├── L_dot.glif │ │ ├── L_dotbelow.glif │ │ ├── L_je-cy.glif │ │ ├── L_linebelow.glif │ │ ├── L_middletilde.glif │ │ ├── L_slash.glif │ │ ├── L_small.glif │ │ ├── M_.glif │ │ ├── M_.half.glif │ │ ├── M_u.glif │ │ ├── N_.glif │ │ ├── N_.half.glif │ │ ├── N_acute.glif │ │ ├── N_acute.loclP_L_K_.glif │ │ ├── N_caron.glif │ │ ├── N_commaaccent.glif │ │ ├── N_hookleft.glif │ │ ├── N_je-cy.glif │ │ ├── N_linebelow.glif │ │ ├── N_tilde.glif │ │ ├── N_u.glif │ │ ├── O_-cy.glif │ │ ├── O_.glif │ │ ├── O_.half.glif │ │ ├── O_E_.glif │ │ ├── O_acute.glif │ │ ├── O_acute.loclP_L_K_.glif │ │ ├── O_barred-cy.glif │ │ ├── O_breve.glif │ │ ├── O_circumflex.glif │ │ ├── O_circumflexacute.glif │ │ ├── O_circumflexdotbelow.glif │ │ ├── O_circumflexgrave.glif │ │ ├── O_circumflexhookabove.glif │ │ ├── O_circumflextilde.glif │ │ ├── O_dieresis.glif │ │ ├── O_dotbelow.glif │ │ ├── O_grave.glif │ │ ├── O_hm.glif │ │ ├── O_hookabove.glif │ │ ├── O_horn.glif │ │ ├── O_hornacute.glif │ │ ├── O_horndotbelow.glif │ │ ├── O_horngrave.glif │ │ ├── O_hornhookabove.glif │ │ ├── O_horntilde.glif │ │ ├── O_hungarumlaut.glif │ │ ├── O_macron.glif │ │ ├── O_macronacute.glif │ │ ├── O_macrongrave.glif │ │ ├── O_mega.glif │ │ ├── O_megatonos.glif │ │ ├── O_micron.glif │ │ ├── O_microntonos.glif │ │ ├── O_ogonek.glif │ │ ├── O_open.glif │ │ ├── O_slash.glif │ │ ├── O_slashacute.glif │ │ ├── O_tilde.glif │ │ ├── P_.glif │ │ ├── P_.half.glif │ │ ├── P_alochka-cy.glif │ │ ├── P_e-cy.glif │ │ ├── P_hi.glif │ │ ├── P_i.glif │ │ ├── P_si.glif │ │ ├── Q_.glif │ │ ├── Q_.half.glif │ │ ├── R_.glif │ │ ├── R_.half.glif │ │ ├── R_acute.glif │ │ ├── R_caron.glif │ │ ├── R_commaaccent.glif │ │ ├── R_dotbelow.glif │ │ ├── R_ho.glif │ │ ├── S_.glif │ │ ├── S_.half.glif │ │ ├── S_acute.glif │ │ ├── S_acute.loclP_L_K_.glif │ │ ├── S_caron.glif │ │ ├── S_cedilla.glif │ │ ├── S_chwa-cy.glif │ │ ├── S_chwa.glif │ │ ├── S_circumflex.glif │ │ ├── S_commaaccent.glif │ │ ├── S_dotbelow.glif │ │ ├── S_ha-cy.glif │ │ ├── S_hcha-cy.glif │ │ ├── S_hha-cy.glif │ │ ├── S_igma.glif │ │ ├── S_oftsign-cy.glif │ │ ├── T_.glif │ │ ├── T_.half.glif │ │ ├── T_au.glif │ │ ├── T_bar.glif │ │ ├── T_caron.glif │ │ ├── T_cedilla.glif │ │ ├── T_commaaccent.glif │ │ ├── T_diagonalstroke.glif │ │ ├── T_e-cy.glif │ │ ├── T_heta.glif │ │ ├── T_horn.glif │ │ ├── T_linebelow.glif │ │ ├── T_se-cy.glif │ │ ├── T_she-cy.glif │ │ ├── U_-cy.glif │ │ ├── U_.glif │ │ ├── U_.half.glif │ │ ├── U_acute.glif │ │ ├── U_breve.glif │ │ ├── U_circumflex.glif │ │ ├── U_dieresis.glif │ │ ├── U_dotbelow.glif │ │ ├── U_grave.glif │ │ ├── U_hookabove.glif │ │ ├── U_horn.glif │ │ ├── U_hornacute.glif │ │ ├── U_horndotbelow.glif │ │ ├── U_horngrave.glif │ │ ├── U_hornhookabove.glif │ │ ├── U_horntilde.glif │ │ ├── U_hungarumlaut.glif │ │ ├── U_macron-cy.glif │ │ ├── U_macron.glif │ │ ├── U_ogonek.glif │ │ ├── U_psilon.glif │ │ ├── U_psilonafrican.glif │ │ ├── U_psilondieresis.glif │ │ ├── U_psilontonos.glif │ │ ├── U_ring.glif │ │ ├── U_short-cy.glif │ │ ├── U_straight-cy.glif │ │ ├── U_straightstroke-cy.glif │ │ ├── U_tilde.glif │ │ ├── V_.glif │ │ ├── V_.half.glif │ │ ├── V_e-cy.glif │ │ ├── V_hook.glif │ │ ├── V_turned.glif │ │ ├── W_.glif │ │ ├── W_acute.glif │ │ ├── W_circumflex.glif │ │ ├── W_dieresis.glif │ │ ├── W_grave.glif │ │ ├── X_.glif │ │ ├── X_.half.glif │ │ ├── X_i.glif │ │ ├── Y_.glif │ │ ├── Y_.half.glif │ │ ├── Y_acute.glif │ │ ├── Y_circumflex.glif │ │ ├── Y_dieresis.glif │ │ ├── Y_dotbelow.glif │ │ ├── Y_eru-cy.glif │ │ ├── Y_grave.glif │ │ ├── Y_hookabove.glif │ │ ├── Y_i-cy.glif │ │ ├── Y_macron.glif │ │ ├── Y_tilde.glif │ │ ├── Z_.glif │ │ ├── Z_acute.glif │ │ ├── Z_acute.loclP_L_K_.glif │ │ ├── Z_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── Z_e-cy.glif │ │ ├── Z_eta.glif │ │ ├── Z_he-cy.glif │ │ ├── Z_hedescender-cy.glif │ │ ├── _alef-ar.fina.rlig.glif │ │ ├── _alef-ar.fina.short.rlig.glif │ │ ├── _alefF_athatan-ar.fina.rlig.glif │ │ ├── _alefH_amzaabove-ar.fina.rlig.glif │ │ ├── _alefH_amzabelow-ar.fina.rlig.glif │ │ ├── _alefM_adda-ar.fina.rlig.glif │ │ ├── _alefT_hreeabove-ar.fina.rlig.glif │ │ ├── _alefT_woabove-ar.fina.rlig.glif │ │ ├── _alefW_asla-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── _alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── _alefabove.glif │ │ ├── _bar.glif │ │ ├── _cuberoot_fourthroot-ar.glif │ │ ├── _damma-ar.glif │ │ ├── _dot-ar.glif │ │ ├── _dotV_I_nvertedabove.glif │ │ ├── _dotV_above.glif │ │ ├── _dots.horz.below.glif │ │ ├── _doublebar.glif │ │ ├── _fatha-ar.glif │ │ ├── _four-persian.small01.glif │ │ ├── _fourdotscenter-ar.glif │ │ ├── _fourthroot-ar.glif │ │ ├── _hamzasmall-ar.glif │ │ ├── _hamzawavy.glif │ │ ├── _hehgoalcomma.glif │ │ ├── _highhamzaA_lef-ar.fina.rlig.glif │ │ ├── _invertedstroke.glif │ │ ├── _notdef.glif │ │ ├── _onedotstah.glif │ │ ├── _ringA_rabic.glif │ │ ├── _stroke.glif │ │ ├── _tahabove.glif │ │ ├── _tahabovesmall.glif │ │ ├── _threedots-ar.glif │ │ ├── _twodotshorizontal-ar.glif │ │ ├── _twodotstah.glif │ │ ├── _twodotsverticalabove-ar.glif │ │ ├── _vabove.glif │ │ ├── _vbelow-ar.glif │ │ ├── _vinvertedbelow-ar.glif │ │ ├── _yehR_ohingya-ar.fina.glif │ │ ├── _yehR_ohingya-ar.glif │ │ ├── a-cy.glif │ │ ├── a.glif │ │ ├── aacute.glif │ │ ├── abreve.glif │ │ ├── abreveacute.glif │ │ ├── abrevedotbelow.glif │ │ ├── abrevegrave.glif │ │ ├── abrevehookabove.glif │ │ ├── abrevetilde.glif │ │ ├── acaron.glif │ │ ├── acircumflex.glif │ │ ├── acircumflexacute.glif │ │ ├── acircumflexdotbelow.glif │ │ ├── acircumflexgrave.glif │ │ ├── acircumflexhookabove.glif │ │ ├── acircumflextilde.glif │ │ ├── acknowledgeC_ontrol.glif │ │ ├── acknowledgeC_ontrol.ss20.glif │ │ ├── acute.glif │ │ ├── acutecomb.case.glif │ │ ├── acutecomb.case.loclP_L_K_.glif │ │ ├── acutecomb.glif │ │ ├── acutecomb.loclP_L_K_.glif │ │ ├── acutetonecomb.glif │ │ ├── adieresis.glif │ │ ├── adotbelow.glif │ │ ├── ae-ar.fina.glif │ │ ├── ae-ar.glif │ │ ├── ae.glif │ │ ├── aeacute.glif │ │ ├── afghani-ar.glif │ │ ├── agrave.glif │ │ ├── ahookabove.glif │ │ ├── ain-ar.fina.glif │ │ ├── ain-ar.glif │ │ ├── ain-ar.init.glif │ │ ├── ain-ar.medi.glif │ │ ├── ainT_hreedots-ar.fina.glif │ │ ├── ainT_hreedots-ar.glif │ │ ├── ainT_hreedots-ar.init.glif │ │ ├── ainT_hreedots-ar.medi.glif │ │ ├── ainT_hreedotsdownabove-ar.fina.glif │ │ ├── ainT_hreedotsdownabove-ar.glif │ │ ├── ainT_hreedotsdownabove-ar.init.glif │ │ ├── ainT_hreedotsdownabove-ar.medi.glif │ │ ├── ainT_wodotshorizontalabove-ar.fina.glif │ │ ├── ainT_wodotshorizontalabove-ar.glif │ │ ├── ainT_wodotshorizontalabove-ar.init.glif │ │ ├── ainT_wodotshorizontalabove-ar.medi.glif │ │ ├── ainT_wodotsverticalabove-ar.fina.glif │ │ ├── ainT_wodotsverticalabove-ar.glif │ │ ├── ainT_wodotsverticalabove-ar.init.glif │ │ ├── ainT_wodotsverticalabove-ar.medi.glif │ │ ├── alef-ar.fina.alt.glif │ │ ├── alef-ar.fina.glif │ │ ├── alef-ar.fina.rlig.glif │ │ ├── alef-ar.fina.short.alt.glif │ │ ├── alef-ar.fina.short.glif │ │ ├── alef-ar.fina.short.rlig.glif │ │ ├── alef-ar.glif │ │ ├── alef-ar.short.glif │ │ ├── alef-hb.glif │ │ ├── alefF_athatan-ar.fina.glif │ │ ├── alefF_athatan-ar.fina.rlig.glif │ │ ├── alefF_athatan-ar.glif │ │ ├── alefH_amzaabove-ar.fina.alt.glif │ │ ├── alefH_amzaabove-ar.fina.glif │ │ ├── alefH_amzaabove-ar.fina.rlig.glif │ │ ├── alefH_amzaabove-ar.glif │ │ ├── alefH_amzabelow-ar.fina.alt.glif │ │ ├── alefH_amzabelow-ar.fina.glif │ │ ├── alefH_amzabelow-ar.fina.rlig.glif │ │ ├── alefH_amzabelow-ar.glif │ │ ├── alefM_adda-ar.fina.alt.glif │ │ ├── alefM_adda-ar.fina.glif │ │ ├── alefM_adda-ar.fina.rlig.glif │ │ ├── alefM_adda-ar.glif │ │ ├── alefM_aksura-ar.fina.alt.glif │ │ ├── alefM_aksura-ar.fina.glif │ │ ├── alefM_aksura-ar.glif │ │ ├── alefM_aksura-ar.init.alt.glif │ │ ├── alefM_aksura-ar.init.glif │ │ ├── alefM_aksura-ar.medi.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.alt.glif │ │ ├── alefM_aksuraA_lefabove-ar.fina.glif │ │ ├── alefM_aksuraA_lefabove-ar.glif │ │ ├── alefT_hreeabove-ar.fina.alt.glif │ │ ├── alefT_hreeabove-ar.fina.glif │ │ ├── alefT_hreeabove-ar.fina.rlig.glif │ │ ├── alefT_hreeabove-ar.glif │ │ ├── alefT_woabove-ar.fina.alt.glif │ │ ├── alefT_woabove-ar.fina.glif │ │ ├── alefT_woabove-ar.fina.rlig.glif │ │ ├── alefT_woabove-ar.glif │ │ ├── alefW_asla-ar.fina.alt.glif │ │ ├── alefW_asla-ar.fina.glif │ │ ├── alefW_asla-ar.fina.rlig.glif │ │ ├── alefW_asla-ar.glif │ │ ├── alefW_avyhamzaabove-ar.fina.alt.glif │ │ ├── alefW_avyhamzaabove-ar.fina.glif │ │ ├── alefW_avyhamzaabove-ar.fina.rlig.glif │ │ ├── alefW_avyhamzaabove-ar.glif │ │ ├── alefW_avyhamzabelow-ar.fina.alt.glif │ │ ├── alefW_avyhamzabelow-ar.fina.glif │ │ ├── alefW_avyhamzabelow-ar.fina.rlig.glif │ │ ├── alefW_avyhamzabelow-ar.glif │ │ ├── alefabove-ar.glif │ │ ├── alefbelow-ar.glif │ │ ├── alefdagesh-hb.B_R_A_C_K_E_T_.500.glif │ │ ├── alefdagesh-hb.glif │ │ ├── alefpatah-hb.glif │ │ ├── alefqamats-hb.glif │ │ ├── allah-ar.glif │ │ ├── alpha-latin.glif │ │ ├── alpha.glif │ │ ├── alphatonos.glif │ │ ├── amacron.glif │ │ ├── ampersand.glif │ │ ├── ampersand_ampersand.liga.glif │ │ ├── anoteleia.glif │ │ ├── aogonek.glif │ │ ├── apostrophemod.glif │ │ ├── approxequal.glif │ │ ├── aring.glif │ │ ├── aringacute.glif │ │ ├── asciicircum.glif │ │ ├── asciicircum_equal.liga.glif │ │ ├── asciitilde.glif │ │ ├── asciitilde_asciitilde.liga.glif │ │ ├── asciitilde_asciitilde_greater.liga.glif │ │ ├── asciitilde_at.liga.glif │ │ ├── asciitilde_equal.liga.glif │ │ ├── asciitilde_greater.liga.glif │ │ ├── asciitilde_hyphen.liga.glif │ │ ├── asterisk-ar.glif │ │ ├── asterisk.glif │ │ ├── asteriskA_rt-ar.glif │ │ ├── asterisk_asterisk.liga.glif │ │ ├── asterisk_asterisk_asterisk.liga.glif │ │ ├── asterisk_greater.liga.glif │ │ ├── asterisk_parenright.liga.glif │ │ ├── asterisk_slash.liga.glif │ │ ├── at.glif │ │ ├── atilde.glif │ │ ├── ayin-hb.glif │ │ ├── b.glif │ │ ├── backslash.glif │ │ ├── backslash_backslash.liga.glif │ │ ├── backslash_slash.liga.glif │ │ ├── backspaceC_ontrol.glif │ │ ├── backspaceC_ontrol.ss20.glif │ │ ├── baht.B_R_A_C_K_E_T_.600.glif │ │ ├── baht.glif │ │ ├── bar.glif │ │ ├── bar_bar.liga.glif │ │ ├── bar_bar_bar.liga.glif │ │ ├── bar_bar_bar_greater.liga.glif │ │ ├── bar_bar_equal_end.seq.glif │ │ ├── bar_bar_equal_middle.seq.glif │ │ ├── bar_bar_equal_start.seq.glif │ │ ├── bar_bar_greater.liga.glif │ │ ├── bar_bar_hyphen_end.seq.glif │ │ ├── bar_bar_hyphen_middle.seq.glif │ │ ├── bar_bar_hyphen_start.seq.glif │ │ ├── bar_braceright.liga.glif │ │ ├── bar_bracketright.liga.glif │ │ ├── bar_equal_end.seq.glif │ │ ├── bar_equal_middle.seq.glif │ │ ├── bar_equal_start.seq.glif │ │ ├── bar_greater.liga.glif │ │ ├── bar_hyphen_end.seq.glif │ │ ├── bar_hyphen_middle.seq.glif │ │ ├── bar_hyphen_start.seq.glif │ │ ├── bar_underscore_middle.seq.glif │ │ ├── be-cy.glif │ │ ├── be-cy.loclS_R_B_.glif │ │ ├── beeh-ar.alt.glif │ │ ├── beeh-ar.fina.alt.glif │ │ ├── beeh-ar.fina.glif │ │ ├── beeh-ar.glif │ │ ├── beeh-ar.init.alt.glif │ │ ├── beeh-ar.init.glif │ │ ├── beeh-ar.medi.glif │ │ ├── beh-ar.alt.glif │ │ ├── beh-ar.fina.alt.glif │ │ ├── beh-ar.fina.glif │ │ ├── beh-ar.glif │ │ ├── beh-ar.init.alt.glif │ │ ├── beh-ar.init.glif │ │ ├── beh-ar.medi.glif │ │ ├── behD_otless-ar.alt.glif │ │ ├── behD_otless-ar.fina.alt.glif │ │ ├── behD_otless-ar.fina.glif │ │ ├── behD_otless-ar.glif │ │ ├── behD_otless-ar.init.alt.glif │ │ ├── behD_otless-ar.init.glif │ │ ├── behD_otless-ar.medi.glif │ │ ├── behM_eemabove-ar.alt.glif │ │ ├── behM_eemabove-ar.fina.alt.glif │ │ ├── behM_eemabove-ar.fina.glif │ │ ├── behM_eemabove-ar.glif │ │ ├── behM_eemabove-ar.init.alt.glif │ │ ├── behM_eemabove-ar.init.glif │ │ ├── behM_eemabove-ar.medi.glif │ │ ├── behT_hreedotshorizontalbelow-ar.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.fina.glif │ │ ├── behT_hreedotshorizontalbelow-ar.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.alt.glif │ │ ├── behT_hreedotshorizontalbelow-ar.init.glif │ │ ├── behT_hreedotshorizontalbelow-ar.medi.glif │ │ ├── behT_hreedotsupabove-ar.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.alt.glif │ │ ├── behT_hreedotsupabove-ar.fina.glif │ │ ├── behT_hreedotsupabove-ar.glif │ │ ├── behT_hreedotsupabove-ar.init.alt.glif │ │ ├── behT_hreedotsupabove-ar.init.glif │ │ ├── behT_hreedotsupabove-ar.medi.glif │ │ ├── behT_hreedotsupbelow-ar.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── behT_hreedotsupbelow-ar.fina.glif │ │ ├── behT_hreedotsupbelow-ar.glif │ │ ├── behT_hreedotsupbelow-ar.init.alt.glif │ │ ├── behT_hreedotsupbelow-ar.init.glif │ │ ├── behT_hreedotsupbelow-ar.medi.glif │ │ ├── behT_wodotsbelowD_otabove-ar.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── behT_wodotsbelowD_otabove-ar.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── behT_wodotsbelowD_otabove-ar.init.glif │ │ ├── behT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── behV_above-ar.alt.glif │ │ ├── behV_above-ar.fina.alt.glif │ │ ├── behV_above-ar.fina.glif │ │ ├── behV_above-ar.glif │ │ ├── behV_above-ar.init.alt.glif │ │ ├── behV_above-ar.init.glif │ │ ├── behV_above-ar.medi.glif │ │ ├── behV_below-ar.alt.glif │ │ ├── behV_below-ar.fina.alt.glif │ │ ├── behV_below-ar.fina.glif │ │ ├── behV_below-ar.glif │ │ ├── behV_below-ar.init.alt.glif │ │ ├── behV_below-ar.init.glif │ │ ├── behV_below-ar.medi.glif │ │ ├── behV_invertedbelow-ar.alt.glif │ │ ├── behV_invertedbelow-ar.fina.alt.glif │ │ ├── behV_invertedbelow-ar.fina.glif │ │ ├── behV_invertedbelow-ar.glif │ │ ├── behV_invertedbelow-ar.init.alt.glif │ │ ├── behV_invertedbelow-ar.init.glif │ │ ├── behV_invertedbelow-ar.medi.glif │ │ ├── beheh-ar.alt.glif │ │ ├── beheh-ar.fina.alt.glif │ │ ├── beheh-ar.fina.glif │ │ ├── beheh-ar.glif │ │ ├── beheh-ar.init.alt.glif │ │ ├── beheh-ar.init.glif │ │ ├── beheh-ar.medi.glif │ │ ├── behhamzaabove-ar.alt.glif │ │ ├── behhamzaabove-ar.fina.alt.glif │ │ ├── behhamzaabove-ar.fina.glif │ │ ├── behhamzaabove-ar.glif │ │ ├── behhamzaabove-ar.init.glif │ │ ├── behhamzaabove-ar.medi.glif │ │ ├── bellC_ontrol.glif │ │ ├── bellC_ontrol.ss20.glif │ │ ├── bet-hb.glif │ │ ├── beta.glif │ │ ├── betdagesh-hb.glif │ │ ├── bitcoin.glif │ │ ├── blackC_ircle.glif │ │ ├── blackD_iamond.glif │ │ ├── blackH_exagon.glif │ │ ├── blackH_orizontalE_llipse.glif │ │ ├── blackI_nW_hiteD_iamond.glif │ │ ├── blackL_argeC_ircle.glif │ │ ├── blackL_argeS_quare.glif │ │ ├── blackM_ediumD_iamond.glif │ │ ├── blackM_ediumD_ownT_riangleC_entred.glif │ │ ├── blackM_ediumL_eftT_riangleC_entred.glif │ │ ├── blackM_ediumL_ozenge.glif │ │ ├── blackM_ediumR_ightT_riangleC_entred.glif │ │ ├── blackM_ediumU_pT_riangleC_entred.glif │ │ ├── blackP_arallelogram.glif │ │ ├── blackP_entagon.glif │ │ ├── blackS_mallD_iamond.glif │ │ ├── blackS_mallL_ozenge.glif │ │ ├── blackS_mallS_quare.glif │ │ ├── blackS_milingF_ace.glif │ │ ├── blackS_quare.glif │ │ ├── blackV_erticalE_llipse.glif │ │ ├── blackV_erticalR_ect.glif │ │ ├── blackV_erysmallS_quare.glif │ │ ├── blank-braille.glif │ │ ├── blank.glif │ │ ├── blankS_ymbol.glif │ │ ├── blockC_ircle-1.glif │ │ ├── blockC_ircle-1.stypo.glif │ │ ├── blockC_ircle-2.glif │ │ ├── blockC_ircle-2.stypo.glif │ │ ├── blockC_ircle-3.glif │ │ ├── blockC_ircle-3.stypo.glif │ │ ├── blockC_ircle-4.glif │ │ ├── blockC_ircle-4.stypo.glif │ │ ├── blockC_ircle-LC.glif │ │ ├── blockC_ircle-LC.stypo.glif │ │ ├── blockC_ircle-ML.glif │ │ ├── blockC_ircle-ML.stypo.glif │ │ ├── blockC_ircle-MR.glif │ │ ├── blockC_ircle-MR.stypo.glif │ │ ├── blockC_ircle-UC.glif │ │ ├── blockC_ircle-UC.stypo.glif │ │ ├── blockD_iagonal-1FB3C.glif │ │ ├── blockD_iagonal-1FB3C.stypo.glif │ │ ├── blockD_iagonal-1FB3D.glif │ │ ├── blockD_iagonal-1FB3D.stypo.glif │ │ ├── blockD_iagonal-1FB3E.glif │ │ ├── blockD_iagonal-1FB3E.stypo.glif │ │ ├── blockD_iagonal-1FB3F.glif │ │ ├── blockD_iagonal-1FB3F.stypo.glif │ │ ├── blockD_iagonal-1FB40.glif │ │ ├── blockD_iagonal-1FB40.stypo.glif │ │ ├── blockD_iagonal-1FB41.glif │ │ ├── blockD_iagonal-1FB41.stypo.glif │ │ ├── blockD_iagonal-1FB42.glif │ │ ├── blockD_iagonal-1FB42.stypo.glif │ │ ├── blockD_iagonal-1FB43.glif │ │ ├── blockD_iagonal-1FB43.stypo.glif │ │ ├── blockD_iagonal-1FB44.glif │ │ ├── blockD_iagonal-1FB44.stypo.glif │ │ ├── blockD_iagonal-1FB45.glif │ │ ├── blockD_iagonal-1FB45.stypo.glif │ │ ├── blockD_iagonal-1FB46.glif │ │ ├── blockD_iagonal-1FB46.stypo.glif │ │ ├── blockD_iagonal-1FB47.glif │ │ ├── blockD_iagonal-1FB47.stypo.glif │ │ ├── blockD_iagonal-1FB48.glif │ │ ├── blockD_iagonal-1FB48.stypo.glif │ │ ├── blockD_iagonal-1FB49.glif │ │ ├── blockD_iagonal-1FB49.stypo.glif │ │ ├── blockD_iagonal-1FB4A.glif │ │ ├── blockD_iagonal-1FB4A.stypo.glif │ │ ├── blockD_iagonal-1FB4B.glif │ │ ├── blockD_iagonal-1FB4B.stypo.glif │ │ ├── blockD_iagonal-1FB4C.glif │ │ ├── blockD_iagonal-1FB4C.stypo.glif │ │ ├── blockD_iagonal-1FB4D.glif │ │ ├── blockD_iagonal-1FB4D.stypo.glif │ │ ├── blockD_iagonal-1FB4E.glif │ │ ├── blockD_iagonal-1FB4E.stypo.glif │ │ ├── blockD_iagonal-1FB4F.glif │ │ ├── blockD_iagonal-1FB4F.stypo.glif │ │ ├── blockD_iagonal-1FB50.glif │ │ ├── blockD_iagonal-1FB50.stypo.glif │ │ ├── blockD_iagonal-1FB51.glif │ │ ├── blockD_iagonal-1FB51.stypo.glif │ │ ├── blockD_iagonal-1FB52.glif │ │ ├── blockD_iagonal-1FB52.stypo.glif │ │ ├── blockD_iagonal-1FB53.glif │ │ ├── blockD_iagonal-1FB53.stypo.glif │ │ ├── blockD_iagonal-1FB54.glif │ │ ├── blockD_iagonal-1FB54.stypo.glif │ │ ├── blockD_iagonal-1FB55.glif │ │ ├── blockD_iagonal-1FB55.stypo.glif │ │ ├── blockD_iagonal-1FB56.glif │ │ ├── blockD_iagonal-1FB56.stypo.glif │ │ ├── blockD_iagonal-1FB57.glif │ │ ├── blockD_iagonal-1FB57.stypo.glif │ │ ├── blockD_iagonal-1FB58.glif │ │ ├── blockD_iagonal-1FB58.stypo.glif │ │ ├── blockD_iagonal-1FB59.glif │ │ ├── blockD_iagonal-1FB59.stypo.glif │ │ ├── blockD_iagonal-1FB5A.glif │ │ ├── blockD_iagonal-1FB5A.stypo.glif │ │ ├── blockD_iagonal-1FB5B.glif │ │ ├── blockD_iagonal-1FB5B.stypo.glif │ │ ├── blockD_iagonal-1FB5C.glif │ │ ├── blockD_iagonal-1FB5C.stypo.glif │ │ ├── blockD_iagonal-1FB5D.glif │ │ ├── blockD_iagonal-1FB5D.stypo.glif │ │ ├── blockD_iagonal-1FB5E.glif │ │ ├── blockD_iagonal-1FB5E.stypo.glif │ │ ├── blockD_iagonal-1FB5F.glif │ │ ├── blockD_iagonal-1FB5F.stypo.glif │ │ ├── blockD_iagonal-1FB60.glif │ │ ├── blockD_iagonal-1FB60.stypo.glif │ │ ├── blockD_iagonal-1FB61.glif │ │ ├── blockD_iagonal-1FB61.stypo.glif │ │ ├── blockD_iagonal-1FB62.glif │ │ ├── blockD_iagonal-1FB62.stypo.glif │ │ ├── blockD_iagonal-1FB63.glif │ │ ├── blockD_iagonal-1FB63.stypo.glif │ │ ├── blockD_iagonal-1FB64.glif │ │ ├── blockD_iagonal-1FB64.stypo.glif │ │ ├── blockD_iagonal-1FB65.glif │ │ ├── blockD_iagonal-1FB65.stypo.glif │ │ ├── blockD_iagonal-1FB66.glif │ │ ├── blockD_iagonal-1FB66.stypo.glif │ │ ├── blockD_iagonal-1FB67.glif │ │ ├── blockD_iagonal-1FB67.stypo.glif │ │ ├── blockO_ctant-1.glif │ │ ├── blockO_ctant-1.stypo.glif │ │ ├── blockO_ctant-12.glif │ │ ├── blockO_ctant-12.stypo.glif │ │ ├── blockO_ctant-123.glif │ │ ├── blockO_ctant-123.stypo.glif │ │ ├── blockO_ctant-12345.glif │ │ ├── blockO_ctant-12345.stypo.glif │ │ ├── blockO_ctant-123456.glif │ │ ├── blockO_ctant-123456.stypo.glif │ │ ├── blockO_ctant-1234567.glif │ │ ├── blockO_ctant-1234567.stypo.glif │ │ ├── blockO_ctant-1234568.glif │ │ ├── blockO_ctant-1234568.stypo.glif │ │ ├── blockO_ctant-1234578.glif │ │ ├── blockO_ctant-1234578.stypo.glif │ │ ├── blockO_ctant-123458.glif │ │ ├── blockO_ctant-123458.stypo.glif │ │ ├── blockO_ctant-12346.glif │ │ ├── blockO_ctant-12346.stypo.glif │ │ ├── blockO_ctant-123467.glif │ │ ├── blockO_ctant-123467.stypo.glif │ │ ├── blockO_ctant-1234678.glif │ │ ├── blockO_ctant-1234678.stypo.glif │ │ ├── blockO_ctant-12347.glif │ │ ├── blockO_ctant-12347.stypo.glif │ │ ├── blockO_ctant-123478.glif │ │ ├── blockO_ctant-123478.stypo.glif │ │ ├── blockO_ctant-12348.glif │ │ ├── blockO_ctant-12348.stypo.glif │ │ ├── blockO_ctant-1235.glif │ │ ├── blockO_ctant-1235.stypo.glif │ │ ├── blockO_ctant-12356.glif │ │ ├── blockO_ctant-12356.stypo.glif │ │ ├── blockO_ctant-123567.glif │ │ ├── blockO_ctant-123567.stypo.glif │ │ ├── blockO_ctant-1235678.glif │ │ ├── blockO_ctant-1235678.stypo.glif │ │ ├── blockO_ctant-123568.glif │ │ ├── blockO_ctant-123568.stypo.glif │ │ ├── blockO_ctant-12357.glif │ │ ├── blockO_ctant-12357.stypo.glif │ │ ├── blockO_ctant-123578.glif │ │ ├── blockO_ctant-123578.stypo.glif │ │ ├── blockO_ctant-12358.glif │ │ ├── blockO_ctant-12358.stypo.glif │ │ ├── blockO_ctant-1236.glif │ │ ├── blockO_ctant-1236.stypo.glif │ │ ├── blockO_ctant-12367.glif │ │ ├── blockO_ctant-12367.stypo.glif │ │ ├── blockO_ctant-123678.glif │ │ ├── blockO_ctant-123678.stypo.glif │ │ ├── blockO_ctant-12368.glif │ │ ├── blockO_ctant-12368.stypo.glif │ │ ├── blockO_ctant-1237.glif │ │ ├── blockO_ctant-1237.stypo.glif │ │ ├── blockO_ctant-12378.glif │ │ ├── blockO_ctant-12378.stypo.glif │ │ ├── blockO_ctant-1238.glif │ │ ├── blockO_ctant-1238.stypo.glif │ │ ├── blockO_ctant-124.glif │ │ ├── blockO_ctant-124.stypo.glif │ │ ├── blockO_ctant-1245.glif │ │ ├── blockO_ctant-1245.stypo.glif │ │ ├── blockO_ctant-12456.glif │ │ ├── blockO_ctant-12456.stypo.glif │ │ ├── blockO_ctant-124567.glif │ │ ├── blockO_ctant-124567.stypo.glif │ │ ├── blockO_ctant-1245678.glif │ │ ├── blockO_ctant-1245678.stypo.glif │ │ ├── blockO_ctant-124568.glif │ │ ├── blockO_ctant-124568.stypo.glif │ │ ├── blockO_ctant-12457.glif │ │ ├── blockO_ctant-12457.stypo.glif │ │ ├── blockO_ctant-124578.glif │ │ ├── blockO_ctant-124578.stypo.glif │ │ ├── blockO_ctant-12458.glif │ │ ├── blockO_ctant-12458.stypo.glif │ │ ├── blockO_ctant-1246.glif │ │ ├── blockO_ctant-1246.stypo.glif │ │ ├── blockO_ctant-12467.glif │ │ ├── blockO_ctant-12467.stypo.glif │ │ ├── blockO_ctant-124678.glif │ │ ├── blockO_ctant-124678.stypo.glif │ │ ├── blockO_ctant-12468.glif │ │ ├── blockO_ctant-12468.stypo.glif │ │ ├── blockO_ctant-1247.glif │ │ ├── blockO_ctant-1247.stypo.glif │ │ ├── blockO_ctant-12478.glif │ │ ├── blockO_ctant-12478.stypo.glif │ │ ├── blockO_ctant-1248.glif │ │ ├── blockO_ctant-1248.stypo.glif │ │ ├── blockO_ctant-125.glif │ │ ├── blockO_ctant-125.stypo.glif │ │ ├── blockO_ctant-1256.glif │ │ ├── blockO_ctant-1256.stypo.glif │ │ ├── blockO_ctant-12567.glif │ │ ├── blockO_ctant-12567.stypo.glif │ │ ├── blockO_ctant-125678.glif │ │ ├── blockO_ctant-125678.stypo.glif │ │ ├── blockO_ctant-12568.glif │ │ ├── blockO_ctant-12568.stypo.glif │ │ ├── blockO_ctant-1257.glif │ │ ├── blockO_ctant-1257.stypo.glif │ │ ├── blockO_ctant-12578.glif │ │ ├── blockO_ctant-12578.stypo.glif │ │ ├── blockO_ctant-1258.glif │ │ ├── blockO_ctant-1258.stypo.glif │ │ ├── blockO_ctant-126.glif │ │ ├── blockO_ctant-126.stypo.glif │ │ ├── blockO_ctant-1267.glif │ │ ├── blockO_ctant-1267.stypo.glif │ │ ├── blockO_ctant-12678.glif │ │ ├── blockO_ctant-12678.stypo.glif │ │ ├── blockO_ctant-1268.glif │ │ ├── blockO_ctant-1268.stypo.glif │ │ ├── blockO_ctant-127.glif │ │ ├── blockO_ctant-127.stypo.glif │ │ ├── blockO_ctant-1278.glif │ │ ├── blockO_ctant-1278.stypo.glif │ │ ├── blockO_ctant-128.glif │ │ ├── blockO_ctant-128.stypo.glif │ │ ├── blockO_ctant-134.glif │ │ ├── blockO_ctant-134.stypo.glif │ │ ├── blockO_ctant-1345.glif │ │ ├── blockO_ctant-1345.stypo.glif │ │ ├── blockO_ctant-13456.glif │ │ ├── blockO_ctant-13456.stypo.glif │ │ ├── blockO_ctant-134567.glif │ │ ├── blockO_ctant-134567.stypo.glif │ │ ├── blockO_ctant-1345678.glif │ │ ├── blockO_ctant-1345678.stypo.glif │ │ ├── blockO_ctant-134568.glif │ │ ├── blockO_ctant-134568.stypo.glif │ │ ├── blockO_ctant-13457.glif │ │ ├── blockO_ctant-13457.stypo.glif │ │ ├── blockO_ctant-134578.glif │ │ ├── blockO_ctant-134578.stypo.glif │ │ ├── blockO_ctant-13458.glif │ │ ├── blockO_ctant-13458.stypo.glif │ │ ├── blockO_ctant-1346.glif │ │ ├── blockO_ctant-1346.stypo.glif │ │ ├── blockO_ctant-13467.glif │ │ ├── blockO_ctant-13467.stypo.glif │ │ ├── blockO_ctant-134678.glif │ │ ├── blockO_ctant-134678.stypo.glif │ │ ├── blockO_ctant-13468.glif │ │ ├── blockO_ctant-13468.stypo.glif │ │ ├── blockO_ctant-1347.glif │ │ ├── blockO_ctant-1347.stypo.glif │ │ ├── blockO_ctant-13478.glif │ │ ├── blockO_ctant-13478.stypo.glif │ │ ├── blockO_ctant-1348.glif │ │ ├── blockO_ctant-1348.stypo.glif │ │ ├── blockO_ctant-135.glif │ │ ├── blockO_ctant-135.stypo.glif │ │ ├── blockO_ctant-1356.glif │ │ ├── blockO_ctant-1356.stypo.glif │ │ ├── blockO_ctant-13567.glif │ │ ├── blockO_ctant-13567.stypo.glif │ │ ├── blockO_ctant-13568.glif │ │ ├── blockO_ctant-13568.stypo.glif │ │ ├── blockO_ctant-13578.glif │ │ ├── blockO_ctant-13578.stypo.glif │ │ ├── blockO_ctant-1358.glif │ │ ├── blockO_ctant-1358.stypo.glif │ │ ├── blockO_ctant-136.glif │ │ ├── blockO_ctant-136.stypo.glif │ │ ├── blockO_ctant-1367.glif │ │ ├── blockO_ctant-1367.stypo.glif │ │ ├── blockO_ctant-13678.glif │ │ ├── blockO_ctant-13678.stypo.glif │ │ ├── blockO_ctant-137.glif │ │ ├── blockO_ctant-137.stypo.glif │ │ ├── blockO_ctant-1378.glif │ │ ├── blockO_ctant-1378.stypo.glif │ │ ├── blockO_ctant-138.glif │ │ ├── blockO_ctant-138.stypo.glif │ │ ├── blockO_ctant-14.glif │ │ ├── blockO_ctant-14.stypo.glif │ │ ├── blockO_ctant-145.glif │ │ ├── blockO_ctant-145.stypo.glif │ │ ├── blockO_ctant-1456.glif │ │ ├── blockO_ctant-1456.stypo.glif │ │ ├── blockO_ctant-14567.glif │ │ ├── blockO_ctant-14567.stypo.glif │ │ ├── blockO_ctant-145678.glif │ │ ├── blockO_ctant-145678.stypo.glif │ │ ├── blockO_ctant-14568.glif │ │ ├── blockO_ctant-14568.stypo.glif │ │ ├── blockO_ctant-1457.glif │ │ ├── blockO_ctant-1457.stypo.glif │ │ ├── blockO_ctant-14578.glif │ │ ├── blockO_ctant-14578.stypo.glif │ │ ├── blockO_ctant-1458.glif │ │ ├── blockO_ctant-1458.stypo.glif │ │ ├── blockO_ctant-146.glif │ │ ├── blockO_ctant-146.stypo.glif │ │ ├── blockO_ctant-1467.glif │ │ ├── blockO_ctant-1467.stypo.glif │ │ ├── blockO_ctant-14678.glif │ │ ├── blockO_ctant-14678.stypo.glif │ │ ├── blockO_ctant-1468.glif │ │ ├── blockO_ctant-1468.stypo.glif │ │ ├── blockO_ctant-147.glif │ │ ├── blockO_ctant-147.stypo.glif │ │ ├── blockO_ctant-1478.glif │ │ ├── blockO_ctant-1478.stypo.glif │ │ ├── blockO_ctant-148.glif │ │ ├── blockO_ctant-148.stypo.glif │ │ ├── blockO_ctant-15.glif │ │ ├── blockO_ctant-15.stypo.glif │ │ ├── blockO_ctant-156.glif │ │ ├── blockO_ctant-156.stypo.glif │ │ ├── blockO_ctant-1567.glif │ │ ├── blockO_ctant-1567.stypo.glif │ │ ├── blockO_ctant-15678.glif │ │ ├── blockO_ctant-15678.stypo.glif │ │ ├── blockO_ctant-1568.glif │ │ ├── blockO_ctant-1568.stypo.glif │ │ ├── blockO_ctant-157.glif │ │ ├── blockO_ctant-157.stypo.glif │ │ ├── blockO_ctant-1578.glif │ │ ├── blockO_ctant-1578.stypo.glif │ │ ├── blockO_ctant-158.glif │ │ ├── blockO_ctant-158.stypo.glif │ │ ├── blockO_ctant-16.glif │ │ ├── blockO_ctant-16.stypo.glif │ │ ├── blockO_ctant-167.glif │ │ ├── blockO_ctant-167.stypo.glif │ │ ├── blockO_ctant-1678.glif │ │ ├── blockO_ctant-1678.stypo.glif │ │ ├── blockO_ctant-168.glif │ │ ├── blockO_ctant-168.stypo.glif │ │ ├── blockO_ctant-17.glif │ │ ├── blockO_ctant-17.stypo.glif │ │ ├── blockO_ctant-178.glif │ │ ├── blockO_ctant-178.stypo.glif │ │ ├── blockO_ctant-18.glif │ │ ├── blockO_ctant-18.stypo.glif │ │ ├── blockO_ctant-2.glif │ │ ├── blockO_ctant-2.stypo.glif │ │ ├── blockO_ctant-23.glif │ │ ├── blockO_ctant-23.stypo.glif │ │ ├── blockO_ctant-234.glif │ │ ├── blockO_ctant-234.stypo.glif │ │ ├── blockO_ctant-2345.glif │ │ ├── blockO_ctant-2345.stypo.glif │ │ ├── blockO_ctant-23456.glif │ │ ├── blockO_ctant-23456.stypo.glif │ │ ├── blockO_ctant-234567.glif │ │ ├── blockO_ctant-234567.stypo.glif │ │ ├── blockO_ctant-2345678.glif │ │ ├── blockO_ctant-2345678.stypo.glif │ │ ├── blockO_ctant-234568.glif │ │ ├── blockO_ctant-234568.stypo.glif │ │ ├── blockO_ctant-23457.glif │ │ ├── blockO_ctant-23457.stypo.glif │ │ ├── blockO_ctant-234578.glif │ │ ├── blockO_ctant-234578.stypo.glif │ │ ├── blockO_ctant-23458.glif │ │ ├── blockO_ctant-23458.stypo.glif │ │ ├── blockO_ctant-2346.glif │ │ ├── blockO_ctant-2346.stypo.glif │ │ ├── blockO_ctant-23467.glif │ │ ├── blockO_ctant-23467.stypo.glif │ │ ├── blockO_ctant-234678.glif │ │ ├── blockO_ctant-234678.stypo.glif │ │ ├── blockO_ctant-23468.glif │ │ ├── blockO_ctant-23468.stypo.glif │ │ ├── blockO_ctant-2347.glif │ │ ├── blockO_ctant-2347.stypo.glif │ │ ├── blockO_ctant-23478.glif │ │ ├── blockO_ctant-23478.stypo.glif │ │ ├── blockO_ctant-2348.glif │ │ ├── blockO_ctant-2348.stypo.glif │ │ ├── blockO_ctant-235.glif │ │ ├── blockO_ctant-235.stypo.glif │ │ ├── blockO_ctant-2356.glif │ │ ├── blockO_ctant-2356.stypo.glif │ │ ├── blockO_ctant-23567.glif │ │ ├── blockO_ctant-23567.stypo.glif │ │ ├── blockO_ctant-235678.glif │ │ ├── blockO_ctant-235678.stypo.glif │ │ ├── blockO_ctant-23568.glif │ │ ├── blockO_ctant-23568.stypo.glif │ │ ├── blockO_ctant-2357.glif │ │ ├── blockO_ctant-2357.stypo.glif │ │ ├── blockO_ctant-23578.glif │ │ ├── blockO_ctant-23578.stypo.glif │ │ ├── blockO_ctant-2358.glif │ │ ├── blockO_ctant-2358.stypo.glif │ │ ├── blockO_ctant-236.glif │ │ ├── blockO_ctant-236.stypo.glif │ │ ├── blockO_ctant-2367.glif │ │ ├── blockO_ctant-2367.stypo.glif │ │ ├── blockO_ctant-23678.glif │ │ ├── blockO_ctant-23678.stypo.glif │ │ ├── blockO_ctant-2368.glif │ │ ├── blockO_ctant-2368.stypo.glif │ │ ├── blockO_ctant-237.glif │ │ ├── blockO_ctant-237.stypo.glif │ │ ├── blockO_ctant-2378.glif │ │ ├── blockO_ctant-2378.stypo.glif │ │ ├── blockO_ctant-238.glif │ │ ├── blockO_ctant-238.stypo.glif │ │ ├── blockO_ctant-245.glif │ │ ├── blockO_ctant-245.stypo.glif │ │ ├── blockO_ctant-2456.glif │ │ ├── blockO_ctant-2456.stypo.glif │ │ ├── blockO_ctant-24567.glif │ │ ├── blockO_ctant-24567.stypo.glif │ │ ├── blockO_ctant-24568.glif │ │ ├── blockO_ctant-24568.stypo.glif │ │ ├── blockO_ctant-24578.glif │ │ ├── blockO_ctant-24578.stypo.glif │ │ ├── blockO_ctant-2458.glif │ │ ├── blockO_ctant-2458.stypo.glif │ │ ├── blockO_ctant-246.glif │ │ ├── blockO_ctant-246.stypo.glif │ │ ├── blockO_ctant-2467.glif │ │ ├── blockO_ctant-2467.stypo.glif │ │ ├── blockO_ctant-24678.glif │ │ ├── blockO_ctant-24678.stypo.glif │ │ ├── blockO_ctant-247.glif │ │ ├── blockO_ctant-247.stypo.glif │ │ ├── blockO_ctant-2478.glif │ │ ├── blockO_ctant-2478.stypo.glif │ │ ├── blockO_ctant-248.glif │ │ ├── blockO_ctant-248.stypo.glif │ │ ├── blockO_ctant-25.glif │ │ ├── blockO_ctant-25.stypo.glif │ │ ├── blockO_ctant-256.glif │ │ ├── blockO_ctant-256.stypo.glif │ │ ├── blockO_ctant-2567.glif │ │ ├── blockO_ctant-2567.stypo.glif │ │ ├── blockO_ctant-25678.glif │ │ ├── blockO_ctant-25678.stypo.glif │ │ ├── blockO_ctant-2568.glif │ │ ├── blockO_ctant-2568.stypo.glif │ │ ├── blockO_ctant-257.glif │ │ ├── blockO_ctant-257.stypo.glif │ │ ├── blockO_ctant-2578.glif │ │ ├── blockO_ctant-2578.stypo.glif │ │ ├── blockO_ctant-258.glif │ │ ├── blockO_ctant-258.stypo.glif │ │ ├── blockO_ctant-26.glif │ │ ├── blockO_ctant-26.stypo.glif │ │ ├── blockO_ctant-267.glif │ │ ├── blockO_ctant-267.stypo.glif │ │ ├── blockO_ctant-2678.glif │ │ ├── blockO_ctant-2678.stypo.glif │ │ ├── blockO_ctant-268.glif │ │ ├── blockO_ctant-268.stypo.glif │ │ ├── blockO_ctant-27.glif │ │ ├── blockO_ctant-27.stypo.glif │ │ ├── blockO_ctant-278.glif │ │ ├── blockO_ctant-278.stypo.glif │ │ ├── blockO_ctant-28.glif │ │ ├── blockO_ctant-28.stypo.glif │ │ ├── blockO_ctant-3.glif │ │ ├── blockO_ctant-3.stypo.glif │ │ ├── blockO_ctant-34.glif │ │ ├── blockO_ctant-34.stypo.glif │ │ ├── blockO_ctant-345.glif │ │ ├── blockO_ctant-345.stypo.glif │ │ ├── blockO_ctant-3456.glif │ │ ├── blockO_ctant-3456.stypo.glif │ │ ├── blockO_ctant-34567.glif │ │ ├── blockO_ctant-34567.stypo.glif │ │ ├── blockO_ctant-34568.glif │ │ ├── blockO_ctant-34568.stypo.glif │ │ ├── blockO_ctant-3457.glif │ │ ├── blockO_ctant-3457.stypo.glif │ │ ├── blockO_ctant-34578.glif │ │ ├── blockO_ctant-34578.stypo.glif │ │ ├── blockO_ctant-3458.glif │ │ ├── blockO_ctant-3458.stypo.glif │ │ ├── blockO_ctant-346.glif │ │ ├── blockO_ctant-346.stypo.glif │ │ ├── blockO_ctant-3467.glif │ │ ├── blockO_ctant-3467.stypo.glif │ │ ├── blockO_ctant-34678.glif │ │ ├── blockO_ctant-34678.stypo.glif │ │ ├── blockO_ctant-3468.glif │ │ ├── blockO_ctant-3468.stypo.glif │ │ ├── blockO_ctant-347.glif │ │ ├── blockO_ctant-347.stypo.glif │ │ ├── blockO_ctant-3478.glif │ │ ├── blockO_ctant-3478.stypo.glif │ │ ├── blockO_ctant-348.glif │ │ ├── blockO_ctant-348.stypo.glif │ │ ├── blockO_ctant-356.glif │ │ ├── blockO_ctant-356.stypo.glif │ │ ├── blockO_ctant-3567.glif │ │ ├── blockO_ctant-3567.stypo.glif │ │ ├── blockO_ctant-35678.glif │ │ ├── blockO_ctant-35678.stypo.glif │ │ ├── blockO_ctant-3568.glif │ │ ├── blockO_ctant-3568.stypo.glif │ │ ├── blockO_ctant-357.glif │ │ ├── blockO_ctant-357.stypo.glif │ │ ├── blockO_ctant-3578.glif │ │ ├── blockO_ctant-3578.stypo.glif │ │ ├── blockO_ctant-358.glif │ │ ├── blockO_ctant-358.stypo.glif │ │ ├── blockO_ctant-36.glif │ │ ├── blockO_ctant-36.stypo.glif │ │ ├── blockO_ctant-367.glif │ │ ├── blockO_ctant-367.stypo.glif │ │ ├── blockO_ctant-3678.glif │ │ ├── blockO_ctant-3678.stypo.glif │ │ ├── blockO_ctant-368.glif │ │ ├── blockO_ctant-368.stypo.glif │ │ ├── blockO_ctant-37.glif │ │ ├── blockO_ctant-37.stypo.glif │ │ ├── blockO_ctant-378.glif │ │ ├── blockO_ctant-378.stypo.glif │ │ ├── blockO_ctant-38.glif │ │ ├── blockO_ctant-38.stypo.glif │ │ ├── blockO_ctant-4.glif │ │ ├── blockO_ctant-4.stypo.glif │ │ ├── blockO_ctant-45.glif │ │ ├── blockO_ctant-45.stypo.glif │ │ ├── blockO_ctant-456.glif │ │ ├── blockO_ctant-456.stypo.glif │ │ ├── blockO_ctant-4567.glif │ │ ├── blockO_ctant-4567.stypo.glif │ │ ├── blockO_ctant-45678.glif │ │ ├── blockO_ctant-45678.stypo.glif │ │ ├── blockO_ctant-4568.glif │ │ ├── blockO_ctant-4568.stypo.glif │ │ ├── blockO_ctant-457.glif │ │ ├── blockO_ctant-457.stypo.glif │ │ ├── blockO_ctant-4578.glif │ │ ├── blockO_ctant-4578.stypo.glif │ │ ├── blockO_ctant-458.glif │ │ ├── blockO_ctant-458.stypo.glif │ │ ├── blockO_ctant-467.glif │ │ ├── blockO_ctant-467.stypo.glif │ │ ├── blockO_ctant-4678.glif │ │ ├── blockO_ctant-4678.stypo.glif │ │ ├── blockO_ctant-468.glif │ │ ├── blockO_ctant-468.stypo.glif │ │ ├── blockO_ctant-47.glif │ │ ├── blockO_ctant-47.stypo.glif │ │ ├── blockO_ctant-478.glif │ │ ├── blockO_ctant-478.stypo.glif │ │ ├── blockO_ctant-48.glif │ │ ├── blockO_ctant-48.stypo.glif │ │ ├── blockO_ctant-5.glif │ │ ├── blockO_ctant-5.stypo.glif │ │ ├── blockO_ctant-56.glif │ │ ├── blockO_ctant-56.stypo.glif │ │ ├── blockO_ctant-567.glif │ │ ├── blockO_ctant-567.stypo.glif │ │ ├── blockO_ctant-568.glif │ │ ├── blockO_ctant-568.stypo.glif │ │ ├── blockO_ctant-578.glif │ │ ├── blockO_ctant-578.stypo.glif │ │ ├── blockO_ctant-58.glif │ │ ├── blockO_ctant-58.stypo.glif │ │ ├── blockO_ctant-6.glif │ │ ├── blockO_ctant-6.stypo.glif │ │ ├── blockO_ctant-67.glif │ │ ├── blockO_ctant-67.stypo.glif │ │ ├── blockO_ctant-678.glif │ │ ├── blockO_ctant-678.stypo.glif │ │ ├── blockO_ctant-7.glif │ │ ├── blockO_ctant-7.stypo.glif │ │ ├── blockO_ctant-8.glif │ │ ├── blockO_ctant-8.stypo.glif │ │ ├── blockQ_uadrant-LC.glif │ │ ├── blockQ_uadrant-LC.stypo.glif │ │ ├── blockQ_uadrant-ML.glif │ │ ├── blockQ_uadrant-ML.stypo.glif │ │ ├── blockQ_uadrant-MR.glif │ │ ├── blockQ_uadrant-MR.stypo.glif │ │ ├── blockQ_uadrant-UC.glif │ │ ├── blockQ_uadrant-UC.stypo.glif │ │ ├── blockS_edecimant-1.glif │ │ ├── blockS_edecimant-1.stypo.glif │ │ ├── blockS_edecimant-123.glif │ │ ├── blockS_edecimant-123.stypo.glif │ │ ├── blockS_edecimant-15.glif │ │ ├── blockS_edecimant-15.stypo.glif │ │ ├── blockS_edecimant-159.glif │ │ ├── blockS_edecimant-159.stypo.glif │ │ ├── blockS_edecimant-2.glif │ │ ├── blockS_edecimant-2.stypo.glif │ │ ├── blockS_edecimant-234.glif │ │ ├── blockS_edecimant-234.stypo.glif │ │ ├── blockS_edecimant-3.glif │ │ ├── blockS_edecimant-3.stypo.glif │ │ ├── blockS_edecimant-4.glif │ │ ├── blockS_edecimant-4.stypo.glif │ │ ├── blockS_edecimant-48.glif │ │ ├── blockS_edecimant-48.stypo.glif │ │ ├── blockS_edecimant-48C.glif │ │ ├── blockS_edecimant-48C.stypo.glif │ │ ├── blockS_edecimant-5.glif │ │ ├── blockS_edecimant-5.stypo.glif │ │ ├── blockS_edecimant-59D.glif │ │ ├── blockS_edecimant-59D.stypo.glif │ │ ├── blockS_edecimant-6.glif │ │ ├── blockS_edecimant-6.stypo.glif │ │ ├── blockS_edecimant-7.glif │ │ ├── blockS_edecimant-7.stypo.glif │ │ ├── blockS_edecimant-8.glif │ │ ├── blockS_edecimant-8.stypo.glif │ │ ├── blockS_edecimant-8CG.glif │ │ ├── blockS_edecimant-8CG.stypo.glif │ │ ├── blockS_edecimant-9.glif │ │ ├── blockS_edecimant-9.stypo.glif │ │ ├── blockS_edecimant-9D.glif │ │ ├── blockS_edecimant-9D.stypo.glif │ │ ├── blockS_edecimant-A.glif │ │ ├── blockS_edecimant-A.stypo.glif │ │ ├── blockS_edecimant-B.glif │ │ ├── blockS_edecimant-B.stypo.glif │ │ ├── blockS_edecimant-C.glif │ │ ├── blockS_edecimant-C.stypo.glif │ │ ├── blockS_edecimant-CG.glif │ │ ├── blockS_edecimant-CG.stypo.glif │ │ ├── blockS_edecimant-D.glif │ │ ├── blockS_edecimant-D.stypo.glif │ │ ├── blockS_edecimant-DEF.glif │ │ ├── blockS_edecimant-DEF.stypo.glif │ │ ├── blockS_edecimant-E.glif │ │ ├── blockS_edecimant-E.stypo.glif │ │ ├── blockS_edecimant-EFG.glif │ │ ├── blockS_edecimant-EFG.stypo.glif │ │ ├── blockS_edecimant-F.glif │ │ ├── blockS_edecimant-F.stypo.glif │ │ ├── blockS_edecimant-G.glif │ │ ├── blockS_edecimant-G.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1.glif │ │ ├── blockS_eparatedQ_uadrant-1.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-12.glif │ │ ├── blockS_eparatedQ_uadrant-12.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-123.glif │ │ ├── blockS_eparatedQ_uadrant-123.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-1234.glif │ │ ├── blockS_eparatedQ_uadrant-1234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-124.glif │ │ ├── blockS_eparatedQ_uadrant-124.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-13.glif │ │ ├── blockS_eparatedQ_uadrant-13.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-134.glif │ │ ├── blockS_eparatedQ_uadrant-134.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-14.glif │ │ ├── blockS_eparatedQ_uadrant-14.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-2.glif │ │ ├── blockS_eparatedQ_uadrant-2.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-23.glif │ │ ├── blockS_eparatedQ_uadrant-23.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-234.glif │ │ ├── blockS_eparatedQ_uadrant-234.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-24.glif │ │ ├── blockS_eparatedQ_uadrant-24.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-3.glif │ │ ├── blockS_eparatedQ_uadrant-3.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-34.glif │ │ ├── blockS_eparatedQ_uadrant-34.stypo.glif │ │ ├── blockS_eparatedQ_uadrant-4.glif │ │ ├── blockS_eparatedQ_uadrant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-1.glif │ │ ├── blockS_eparatedS_extant-1.stypo.glif │ │ ├── blockS_eparatedS_extant-12.glif │ │ ├── blockS_eparatedS_extant-12.stypo.glif │ │ ├── blockS_eparatedS_extant-123.glif │ │ ├── blockS_eparatedS_extant-123.stypo.glif │ │ ├── blockS_eparatedS_extant-1234.glif │ │ ├── blockS_eparatedS_extant-1234.stypo.glif │ │ ├── blockS_eparatedS_extant-12345.glif │ │ ├── blockS_eparatedS_extant-12345.stypo.glif │ │ ├── blockS_eparatedS_extant-123456.glif │ │ ├── blockS_eparatedS_extant-123456.stypo.glif │ │ ├── blockS_eparatedS_extant-12346.glif │ │ ├── blockS_eparatedS_extant-12346.stypo.glif │ │ ├── blockS_eparatedS_extant-1235.glif │ │ ├── blockS_eparatedS_extant-1235.stypo.glif │ │ ├── blockS_eparatedS_extant-12356.glif │ │ ├── blockS_eparatedS_extant-12356.stypo.glif │ │ ├── blockS_eparatedS_extant-1236.glif │ │ ├── blockS_eparatedS_extant-1236.stypo.glif │ │ ├── blockS_eparatedS_extant-124.glif │ │ ├── blockS_eparatedS_extant-124.stypo.glif │ │ ├── blockS_eparatedS_extant-1245.glif │ │ ├── blockS_eparatedS_extant-1245.stypo.glif │ │ ├── blockS_eparatedS_extant-12456.glif │ │ ├── blockS_eparatedS_extant-12456.stypo.glif │ │ ├── blockS_eparatedS_extant-1246.glif │ │ ├── blockS_eparatedS_extant-1246.stypo.glif │ │ ├── blockS_eparatedS_extant-125.glif │ │ ├── blockS_eparatedS_extant-125.stypo.glif │ │ ├── blockS_eparatedS_extant-1256.glif │ │ ├── blockS_eparatedS_extant-1256.stypo.glif │ │ ├── blockS_eparatedS_extant-126.glif │ │ ├── blockS_eparatedS_extant-126.stypo.glif │ │ ├── blockS_eparatedS_extant-13.glif │ │ ├── blockS_eparatedS_extant-13.stypo.glif │ │ ├── blockS_eparatedS_extant-134.glif │ │ ├── blockS_eparatedS_extant-134.stypo.glif │ │ ├── blockS_eparatedS_extant-1345.glif │ │ ├── blockS_eparatedS_extant-1345.stypo.glif │ │ ├── blockS_eparatedS_extant-13456.glif │ │ ├── blockS_eparatedS_extant-13456.stypo.glif │ │ ├── blockS_eparatedS_extant-1346.glif │ │ ├── blockS_eparatedS_extant-1346.stypo.glif │ │ ├── blockS_eparatedS_extant-135.glif │ │ ├── blockS_eparatedS_extant-135.stypo.glif │ │ ├── blockS_eparatedS_extant-1356.glif │ │ ├── blockS_eparatedS_extant-1356.stypo.glif │ │ ├── blockS_eparatedS_extant-136.glif │ │ ├── blockS_eparatedS_extant-136.stypo.glif │ │ ├── blockS_eparatedS_extant-14.glif │ │ ├── blockS_eparatedS_extant-14.stypo.glif │ │ ├── blockS_eparatedS_extant-145.glif │ │ ├── blockS_eparatedS_extant-145.stypo.glif │ │ ├── blockS_eparatedS_extant-1456.glif │ │ ├── blockS_eparatedS_extant-1456.stypo.glif │ │ ├── blockS_eparatedS_extant-146.glif │ │ ├── blockS_eparatedS_extant-146.stypo.glif │ │ ├── blockS_eparatedS_extant-15.glif │ │ ├── blockS_eparatedS_extant-15.stypo.glif │ │ ├── blockS_eparatedS_extant-156.glif │ │ ├── blockS_eparatedS_extant-156.stypo.glif │ │ ├── blockS_eparatedS_extant-16.glif │ │ ├── blockS_eparatedS_extant-16.stypo.glif │ │ ├── blockS_eparatedS_extant-2.glif │ │ ├── blockS_eparatedS_extant-2.stypo.glif │ │ ├── blockS_eparatedS_extant-23.glif │ │ ├── blockS_eparatedS_extant-23.stypo.glif │ │ ├── blockS_eparatedS_extant-234.glif │ │ ├── blockS_eparatedS_extant-234.stypo.glif │ │ ├── blockS_eparatedS_extant-2345.glif │ │ ├── blockS_eparatedS_extant-2345.stypo.glif │ │ ├── blockS_eparatedS_extant-23456.glif │ │ ├── blockS_eparatedS_extant-23456.stypo.glif │ │ ├── blockS_eparatedS_extant-2346.glif │ │ ├── blockS_eparatedS_extant-2346.stypo.glif │ │ ├── blockS_eparatedS_extant-235.glif │ │ ├── blockS_eparatedS_extant-235.stypo.glif │ │ ├── blockS_eparatedS_extant-2356.glif │ │ ├── blockS_eparatedS_extant-2356.stypo.glif │ │ ├── blockS_eparatedS_extant-236.glif │ │ ├── blockS_eparatedS_extant-236.stypo.glif │ │ ├── blockS_eparatedS_extant-24.glif │ │ ├── blockS_eparatedS_extant-24.stypo.glif │ │ ├── blockS_eparatedS_extant-245.glif │ │ ├── blockS_eparatedS_extant-245.stypo.glif │ │ ├── blockS_eparatedS_extant-2456.glif │ │ ├── blockS_eparatedS_extant-2456.stypo.glif │ │ ├── blockS_eparatedS_extant-246.glif │ │ ├── blockS_eparatedS_extant-246.stypo.glif │ │ ├── blockS_eparatedS_extant-25.glif │ │ ├── blockS_eparatedS_extant-25.stypo.glif │ │ ├── blockS_eparatedS_extant-256.glif │ │ ├── blockS_eparatedS_extant-256.stypo.glif │ │ ├── blockS_eparatedS_extant-26.glif │ │ ├── blockS_eparatedS_extant-26.stypo.glif │ │ ├── blockS_eparatedS_extant-3.glif │ │ ├── blockS_eparatedS_extant-3.stypo.glif │ │ ├── blockS_eparatedS_extant-34.glif │ │ ├── blockS_eparatedS_extant-34.stypo.glif │ │ ├── blockS_eparatedS_extant-345.glif │ │ ├── blockS_eparatedS_extant-345.stypo.glif │ │ ├── blockS_eparatedS_extant-3456.glif │ │ ├── blockS_eparatedS_extant-3456.stypo.glif │ │ ├── blockS_eparatedS_extant-346.glif │ │ ├── blockS_eparatedS_extant-346.stypo.glif │ │ ├── blockS_eparatedS_extant-35.glif │ │ ├── blockS_eparatedS_extant-35.stypo.glif │ │ ├── blockS_eparatedS_extant-356.glif │ │ ├── blockS_eparatedS_extant-356.stypo.glif │ │ ├── blockS_eparatedS_extant-36.glif │ │ ├── blockS_eparatedS_extant-36.stypo.glif │ │ ├── blockS_eparatedS_extant-4.glif │ │ ├── blockS_eparatedS_extant-4.stypo.glif │ │ ├── blockS_eparatedS_extant-45.glif │ │ ├── blockS_eparatedS_extant-45.stypo.glif │ │ ├── blockS_eparatedS_extant-456.glif │ │ ├── blockS_eparatedS_extant-456.stypo.glif │ │ ├── blockS_eparatedS_extant-46.glif │ │ ├── blockS_eparatedS_extant-46.stypo.glif │ │ ├── blockS_eparatedS_extant-5.glif │ │ ├── blockS_eparatedS_extant-5.stypo.glif │ │ ├── blockS_eparatedS_extant-56.glif │ │ ├── blockS_eparatedS_extant-56.stypo.glif │ │ ├── blockS_eparatedS_extant-6.glif │ │ ├── blockS_eparatedS_extant-6.stypo.glif │ │ ├── blockS_extant-1.glif │ │ ├── blockS_extant-1.stypo.glif │ │ ├── blockS_extant-12.glif │ │ ├── blockS_extant-12.stypo.glif │ │ ├── blockS_extant-123.glif │ │ ├── blockS_extant-123.stypo.glif │ │ ├── blockS_extant-1234.glif │ │ ├── blockS_extant-1234.stypo.glif │ │ ├── blockS_extant-12345.glif │ │ ├── blockS_extant-12345.stypo.glif │ │ ├── blockS_extant-12346.glif │ │ ├── blockS_extant-12346.stypo.glif │ │ ├── blockS_extant-1235.glif │ │ ├── blockS_extant-1235.stypo.glif │ │ ├── blockS_extant-12356.glif │ │ ├── blockS_extant-12356.stypo.glif │ │ ├── blockS_extant-1236.glif │ │ ├── blockS_extant-1236.stypo.glif │ │ ├── blockS_extant-124.glif │ │ ├── blockS_extant-124.stypo.glif │ │ ├── blockS_extant-1245.glif │ │ ├── blockS_extant-1245.stypo.glif │ │ ├── blockS_extant-12456.glif │ │ ├── blockS_extant-12456.stypo.glif │ │ ├── blockS_extant-1246.glif │ │ ├── blockS_extant-1246.stypo.glif │ │ ├── blockS_extant-125.glif │ │ ├── blockS_extant-125.stypo.glif │ │ ├── blockS_extant-1256.glif │ │ ├── blockS_extant-1256.stypo.glif │ │ ├── blockS_extant-126.glif │ │ ├── blockS_extant-126.stypo.glif │ │ ├── blockS_extant-13.glif │ │ ├── blockS_extant-13.stypo.glif │ │ ├── blockS_extant-134.glif │ │ ├── blockS_extant-134.stypo.glif │ │ ├── blockS_extant-1345.glif │ │ ├── blockS_extant-1345.stypo.glif │ │ ├── blockS_extant-13456.glif │ │ ├── blockS_extant-13456.stypo.glif │ │ ├── blockS_extant-1346.glif │ │ ├── blockS_extant-1346.stypo.glif │ │ ├── blockS_extant-1356.glif │ │ ├── blockS_extant-1356.stypo.glif │ │ ├── blockS_extant-136.glif │ │ ├── blockS_extant-136.stypo.glif │ │ ├── blockS_extant-14.glif │ │ ├── blockS_extant-14.stypo.glif │ │ ├── blockS_extant-145.glif │ │ ├── blockS_extant-145.stypo.glif │ │ ├── blockS_extant-1456.glif │ │ ├── blockS_extant-1456.stypo.glif │ │ ├── blockS_extant-146.glif │ │ ├── blockS_extant-146.stypo.glif │ │ ├── blockS_extant-15.glif │ │ ├── blockS_extant-15.stypo.glif │ │ ├── blockS_extant-156.glif │ │ ├── blockS_extant-156.stypo.glif │ │ ├── blockS_extant-16.glif │ │ ├── blockS_extant-16.stypo.glif │ │ ├── blockS_extant-2.glif │ │ ├── blockS_extant-2.stypo.glif │ │ ├── blockS_extant-23.glif │ │ ├── blockS_extant-23.stypo.glif │ │ ├── blockS_extant-234.glif │ │ ├── blockS_extant-234.stypo.glif │ │ ├── blockS_extant-2345.glif │ │ ├── blockS_extant-2345.stypo.glif │ │ ├── blockS_extant-23456.glif │ │ ├── blockS_extant-23456.stypo.glif │ │ ├── blockS_extant-2346.glif │ │ ├── blockS_extant-2346.stypo.glif │ │ ├── blockS_extant-235.glif │ │ ├── blockS_extant-235.stypo.glif │ │ ├── blockS_extant-2356.glif │ │ ├── blockS_extant-2356.stypo.glif │ │ ├── blockS_extant-236.glif │ │ ├── blockS_extant-236.stypo.glif │ │ ├── blockS_extant-24.glif │ │ ├── blockS_extant-24.stypo.glif │ │ ├── blockS_extant-245.glif │ │ ├── blockS_extant-245.stypo.glif │ │ ├── blockS_extant-2456.glif │ │ ├── blockS_extant-2456.stypo.glif │ │ ├── blockS_extant-25.glif │ │ ├── blockS_extant-25.stypo.glif │ │ ├── blockS_extant-256.glif │ │ ├── blockS_extant-256.stypo.glif │ │ ├── blockS_extant-26.glif │ │ ├── blockS_extant-26.stypo.glif │ │ ├── blockS_extant-3.glif │ │ ├── blockS_extant-3.stypo.glif │ │ ├── blockS_extant-34.glif │ │ ├── blockS_extant-34.stypo.glif │ │ ├── blockS_extant-345.glif │ │ ├── blockS_extant-345.stypo.glif │ │ ├── blockS_extant-3456.glif │ │ ├── blockS_extant-3456.stypo.glif │ │ ├── blockS_extant-346.glif │ │ ├── blockS_extant-346.stypo.glif │ │ ├── blockS_extant-35.glif │ │ ├── blockS_extant-35.stypo.glif │ │ ├── blockS_extant-356.glif │ │ ├── blockS_extant-356.stypo.glif │ │ ├── blockS_extant-36.glif │ │ ├── blockS_extant-36.stypo.glif │ │ ├── blockS_extant-4.glif │ │ ├── blockS_extant-4.stypo.glif │ │ ├── blockS_extant-45.glif │ │ ├── blockS_extant-45.stypo.glif │ │ ├── blockS_extant-456.glif │ │ ├── blockS_extant-456.stypo.glif │ │ ├── blockS_extant-46.glif │ │ ├── blockS_extant-46.stypo.glif │ │ ├── blockS_extant-5.glif │ │ ├── blockS_extant-5.stypo.glif │ │ ├── blockS_extant-56.glif │ │ ├── blockS_extant-56.stypo.glif │ │ ├── blockS_extant-6.glif │ │ ├── blockS_extant-6.stypo.glif │ │ ├── blockT_riangle-1.glif │ │ ├── blockT_riangle-1.stypo.glif │ │ ├── blockT_riangle-123.glif │ │ ├── blockT_riangle-123.stypo.glif │ │ ├── blockT_riangle-124.glif │ │ ├── blockT_riangle-124.stypo.glif │ │ ├── blockT_riangle-134.glif │ │ ├── blockT_riangle-134.stypo.glif │ │ ├── blockT_riangle-14.glif │ │ ├── blockT_riangle-14.stypo.glif │ │ ├── blockT_riangle-2.glif │ │ ├── blockT_riangle-2.stypo.glif │ │ ├── blockT_riangle-23.glif │ │ ├── blockT_riangle-23.stypo.glif │ │ ├── blockT_riangle-234.glif │ │ ├── blockT_riangle-234.stypo.glif │ │ ├── blockT_riangle-3.glif │ │ ├── blockT_riangle-3.stypo.glif │ │ ├── blockT_riangle-4.glif │ │ ├── blockT_riangle-4.stypo.glif │ │ ├── bottomH_alfB_lackC_ircle.glif │ │ ├── bottomH_alfB_lackD_iamond.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.glif │ │ ├── boxD_oubleD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.glif │ │ ├── boxD_oubleD_ownA_ndL_eft.stypo.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.glif │ │ ├── boxD_oubleD_ownA_ndR_ight.stypo.glif │ │ ├── boxD_oubleH_orizontal.glif │ │ ├── boxD_oubleH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.glif │ │ ├── boxD_oubleU_pA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleU_pA_ndL_eft.glif │ │ ├── boxD_oubleU_pA_ndL_eft.stypo.glif │ │ ├── boxD_oubleU_pA_ndR_ight.glif │ │ ├── boxD_oubleU_pA_ndR_ight.stypo.glif │ │ ├── boxD_oubleV_ertical.glif │ │ ├── boxD_oubleV_ertical.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.glif │ │ ├── boxD_oubleV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.glif │ │ ├── boxD_oubleV_erticalA_ndL_eft.stypo.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.glif │ │ ├── boxD_oubleV_erticalA_ndR_ight.stypo.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif │ │ ├── boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif │ │ ├── boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.glif │ │ ├── boxH_eavyD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.glif │ │ ├── boxH_eavyD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyD_own.glif │ │ ├── boxH_eavyD_own.stypo.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.glif │ │ ├── boxH_eavyD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.glif │ │ ├── boxH_eavyD_ownA_ndL_eft.stypo.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.glif │ │ ├── boxH_eavyD_ownA_ndR_ight.stypo.glif │ │ ├── boxH_eavyH_orizontal.glif │ │ ├── boxH_eavyH_orizontal.stypo.glif │ │ ├── boxH_eavyL_eft.glif │ │ ├── boxH_eavyL_eft.stypo.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.glif │ │ ├── boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.glif │ │ ├── boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyR_ight.glif │ │ ├── boxH_eavyR_ight.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.glif │ │ ├── boxH_eavyT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.glif │ │ ├── boxH_eavyT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxH_eavyU_p.glif │ │ ├── boxH_eavyU_p.stypo.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.glif │ │ ├── boxH_eavyU_pA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_eft.glif │ │ ├── boxH_eavyU_pA_ndL_eft.stypo.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.glif │ │ ├── boxH_eavyU_pA_ndL_ightD_own.stypo.glif │ │ ├── boxH_eavyU_pA_ndR_ight.glif │ │ ├── boxH_eavyU_pA_ndR_ight.stypo.glif │ │ ├── boxH_eavyV_ertical.glif │ │ ├── boxH_eavyV_ertical.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.glif │ │ ├── boxH_eavyV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.glif │ │ ├── boxH_eavyV_erticalA_ndL_eft.stypo.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.glif │ │ ├── boxH_eavyV_erticalA_ndR_ight.stypo.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif │ │ ├── boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif │ │ ├── boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.glif │ │ ├── boxL_ightA_rcD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.glif │ │ ├── boxL_ightA_rcD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.glif │ │ ├── boxL_ightA_rcU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.glif │ │ ├── boxL_ightA_rcU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalC_ross.glif │ │ ├── boxL_ightD_iagonalC_ross.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif │ │ ├── boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif │ │ ├── boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.glif │ │ ├── boxL_ightD_oubleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.glif │ │ ├── boxL_ightD_oubleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightD_own.glif │ │ ├── boxL_ightD_own.stypo.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.glif │ │ ├── boxL_ightD_ownA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightD_ownA_ndL_eft.glif │ │ ├── boxL_ightD_ownA_ndL_eft.stypo.glif │ │ ├── boxL_ightD_ownA_ndR_ight.glif │ │ ├── boxL_ightD_ownA_ndR_ight.stypo.glif │ │ ├── boxL_ightH_orizontal.glif │ │ ├── boxL_ightH_orizontal.stypo.glif │ │ ├── boxL_ightL_eft.glif │ │ ├── boxL_ightL_eft.stypo.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.glif │ │ ├── boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.glif │ │ ├── boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.glif │ │ ├── boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightR_ight.glif │ │ ├── boxL_ightR_ight.stypo.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.glif │ │ ├── boxL_ightT_ripleD_ashH_orizontal.stypo.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.glif │ │ ├── boxL_ightT_ripleD_ashV_ertical.stypo.glif │ │ ├── boxL_ightU_p.glif │ │ ├── boxL_ightU_p.stypo.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.glif │ │ ├── boxL_ightU_pA_ndH_eavyD_own.stypo.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.glif │ │ ├── boxL_ightU_pA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightU_pA_ndL_eft.glif │ │ ├── boxL_ightU_pA_ndL_eft.stypo.glif │ │ ├── boxL_ightU_pA_ndR_ight.glif │ │ ├── boxL_ightU_pA_ndR_ight.stypo.glif │ │ ├── boxL_ightV_ertical.glif │ │ ├── boxL_ightV_ertical.stypo.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.glif │ │ ├── boxL_ightV_erticalA_ndH_orizontal.stypo.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.glif │ │ ├── boxL_ightV_erticalA_ndL_eft.stypo.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.glif │ │ ├── boxL_ightV_erticalA_ndR_ight.stypo.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif │ │ ├── boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif │ │ ├── boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.glif │ │ ├── boxU_pH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.glif │ │ ├── boxU_pH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.glif │ │ ├── boxU_pL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.glif │ │ ├── boxU_pL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.glif │ │ ├── boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.glif │ │ ├── boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.glif │ │ ├── boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.glif │ │ ├── boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── bracketleft.glif │ │ ├── bracketleft_bar.liga.glif │ │ ├── bracketright.glif │ │ ├── bracketright_numbersign.liga.glif │ │ ├── breve.glif │ │ ├── brevecomb-cy.case.glif │ │ ├── brevecomb-cy.glif │ │ ├── brevecomb.case.glif │ │ ├── brevecomb.glif │ │ ├── brokenbar.glif │ │ ├── bullet.glif │ │ ├── bulletoperator.glif │ │ ├── bullseye.glif │ │ ├── c.glif │ │ ├── cacute.glif │ │ ├── cacute.loclP_L_K_.glif │ │ ├── cancelC_ontrol.glif │ │ ├── cancelC_ontrol.ss20.glif │ │ ├── careof.glif │ │ ├── caron.glif │ │ ├── caroncomb.case.glif │ │ ├── caroncomb.glif │ │ ├── carriageR_eturnC_ontrol.glif │ │ ├── carriageR_eturnC_ontrol.ss20.glif │ │ ├── ccaron.glif │ │ ├── ccedilla.glif │ │ ├── ccircumflex.glif │ │ ├── cdotaccent.glif │ │ ├── cedi.glif │ │ ├── cedilla.glif │ │ ├── cedillacomb.glif │ │ ├── cent.glif │ │ ├── che-cy.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.glif │ │ ├── checkerB_oardD_eleteA_mstradC_pc.stypo.glif │ │ ├── checkerB_oardD_eleteA_pple2.glif │ │ ├── checkerB_oardD_eleteT_rs80.glif │ │ ├── checkerB_oardF_ill.glif │ │ ├── checkerB_oardF_ill.stypo.glif │ │ ├── checkerB_oardF_illI_nverse.glif │ │ ├── checkerB_oardF_illI_nverse.stypo.glif │ │ ├── checkmark.glif │ │ ├── chedescender-cy.glif │ │ ├── chi.glif │ │ ├── circumflex.glif │ │ ├── circumflexcomb.case.glif │ │ ├── circumflexcomb.glif │ │ ├── clubB_lackS_uit.glif │ │ ├── colon.center.glif │ │ ├── colon.glif │ │ ├── colon_colon.liga.glif │ │ ├── colon_colon_colon.liga.glif │ │ ├── colon_colon_equal.liga.glif │ │ ├── colon_equal.liga.glif │ │ ├── colon_equal_middle.seq.glif │ │ ├── colon_slash_slash.liga.glif │ │ ├── colonsign.glif │ │ ├── colontriangularmod.glif │ │ ├── comma-ar.glif │ │ ├── comma.glif │ │ ├── commaabovecomb.glif │ │ ├── commaaboverightcomb.glif │ │ ├── commaaccentcomb.glif │ │ ├── commaturnedabovecomb.glif │ │ ├── commaturnedmod.glif │ │ ├── contents.plist │ │ ├── copyright.glif │ │ ├── crosshatchF_illS_quare.glif │ │ ├── cuberoot-ar.glif │ │ ├── currency.glif │ │ ├── d.glif │ │ ├── dad-ar.alt.glif │ │ ├── dad-ar.fina.alt.glif │ │ ├── dad-ar.fina.glif │ │ ├── dad-ar.glif │ │ ├── dad-ar.init.glif │ │ ├── dad-ar.medi.glif │ │ ├── dadD_otbelow-ar.alt.glif │ │ ├── dadD_otbelow-ar.fina.alt.glif │ │ ├── dadD_otbelow-ar.fina.glif │ │ ├── dadD_otbelow-ar.glif │ │ ├── dadD_otbelow-ar.init.glif │ │ ├── dadD_otbelow-ar.medi.glif │ │ ├── dagesh-hb.glif │ │ ├── dagger.glif │ │ ├── daggerdbl.glif │ │ ├── dahal-ar.fina.glif │ │ ├── dahal-ar.glif │ │ ├── dal-ar.fina.glif │ │ ├── dal-ar.glif │ │ ├── dalD_otbelow-ar.fina.glif │ │ ├── dalD_otbelow-ar.glif │ │ ├── dalD_otbelowT_ah-ar.fina.glif │ │ ├── dalD_otbelowT_ah-ar.glif │ │ ├── dalF_ourdots-ar.fina.glif │ │ ├── dalF_ourdots-ar.glif │ │ ├── dalR_ing-ar.fina.glif │ │ ├── dalR_ing-ar.glif │ │ ├── dalT_hreedotsbelow-ar.fina.glif │ │ ├── dalT_hreedotsbelow-ar.glif │ │ ├── dalT_hreedotsdown-ar.fina.glif │ │ ├── dalT_hreedotsdown-ar.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.fina.glif │ │ ├── dalT_wodotsverticalbelowT_ahabove-ar.glif │ │ ├── dalV_invertedabove-ar.fina.glif │ │ ├── dalV_invertedabove-ar.glif │ │ ├── dalV_invertedbelow-ar.fina.glif │ │ ├── dalV_invertedbelow-ar.glif │ │ ├── dalet-hb.glif │ │ ├── daletdagesh-hb.glif │ │ ├── damma-ar.glif │ │ ├── dammatan-ar.glif │ │ ├── dashdownA_rrow.glif │ │ ├── dataL_inkE_scapeC_ontrol.glif │ │ ├── dataL_inkE_scapeC_ontrol.ss20.glif │ │ ├── dateseparator-ar.glif │ │ ├── dcaron.alt.glif │ │ ├── dcaron.glif │ │ ├── dcroat.glif │ │ ├── ddahal-ar.fina.glif │ │ ├── ddahal-ar.glif │ │ ├── ddal-ar.fina.glif │ │ ├── ddal-ar.glif │ │ ├── de-cy.glif │ │ ├── de-cy.loclB_G_R_.glif │ │ ├── decimalseparator-ar.glif │ │ ├── degree.glif │ │ ├── deleteC_ontrol.glif │ │ ├── deleteF_ormT_woC_ontrol.glif │ │ ├── delta.glif │ │ ├── deviceC_ontrolF_ourC_ontrol.glif │ │ ├── deviceC_ontrolO_neC_ontrol.glif │ │ ├── deviceC_ontrolT_hreeC_ontrol.glif │ │ ├── deviceC_ontrolT_woC_ontrol.glif │ │ ├── diagonalcrosshatchF_illS_quare.glif │ │ ├── diamondB_lackS_uit.glif │ │ ├── dieresis.glif │ │ ├── dieresiscomb.case.glif │ │ ├── dieresiscomb.glif │ │ ├── dieresistonos.glif │ │ ├── divide.glif │ │ ├── divisionslash.glif │ │ ├── dje-cy.glif │ │ ├── dollar.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar.glif │ │ ├── dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── dollar_greater.liga.glif │ │ ├── dong.glif │ │ ├── dotabove-ar.glif │ │ ├── dotaccent.glif │ │ ├── dotaccentcomb.case.glif │ │ ├── dotaccentcomb.glif │ │ ├── dotbelow-ar.glif │ │ ├── dotbelowcomb.glif │ │ ├── dotcenter-ar.glif │ │ ├── dots1-braille.glif │ │ ├── dots12-braille.glif │ │ ├── dots123-braille.glif │ │ ├── dots1234-braille.glif │ │ ├── dots12345-braille.glif │ │ ├── dots123456-braille.glif │ │ ├── dots1234567-braille.glif │ │ ├── dots12345678-braille.glif │ │ ├── dots1234568-braille.glif │ │ ├── dots123457-braille.glif │ │ ├── dots1234578-braille.glif │ │ ├── dots123458-braille.glif │ │ ├── dots12346-braille.glif │ │ ├── dots123467-braille.glif │ │ ├── dots1234678-braille.glif │ │ ├── dots123468-braille.glif │ │ ├── dots12347-braille.glif │ │ ├── dots123478-braille.glif │ │ ├── dots12348-braille.glif │ │ ├── dots1235-braille.glif │ │ ├── dots12356-braille.glif │ │ ├── dots123567-braille.glif │ │ ├── dots1235678-braille.glif │ │ ├── dots123568-braille.glif │ │ ├── dots12357-braille.glif │ │ ├── dots123578-braille.glif │ │ ├── dots12358-braille.glif │ │ ├── dots1236-braille.glif │ │ ├── dots12367-braille.glif │ │ ├── dots123678-braille.glif │ │ ├── dots12368-braille.glif │ │ ├── dots1237-braille.glif │ │ ├── dots12378-braille.glif │ │ ├── dots1238-braille.glif │ │ ├── dots124-braille.glif │ │ ├── dots1245-braille.glif │ │ ├── dots12456-braille.glif │ │ ├── dots124567-braille.glif │ │ ├── dots1245678-braille.glif │ │ ├── dots124568-braille.glif │ │ ├── dots12457-braille.glif │ │ ├── dots124578-braille.glif │ │ ├── dots12458-braille.glif │ │ ├── dots1246-braille.glif │ │ ├── dots12467-braille.glif │ │ ├── dots124678-braille.glif │ │ ├── dots12468-braille.glif │ │ ├── dots1247-braille.glif │ │ ├── dots12478-braille.glif │ │ ├── dots1248-braille.glif │ │ ├── dots125-braille.glif │ │ ├── dots1256-braille.glif │ │ ├── dots12567-braille.glif │ │ ├── dots125678-braille.glif │ │ ├── dots12568-braille.glif │ │ ├── dots1257-braille.glif │ │ ├── dots12578-braille.glif │ │ ├── dots1258-braille.glif │ │ ├── dots126-braille.glif │ │ ├── dots1267-braille.glif │ │ ├── dots12678-braille.glif │ │ ├── dots1268-braille.glif │ │ ├── dots127-braille.glif │ │ ├── dots1278-braille.glif │ │ ├── dots128-braille.glif │ │ ├── dots13-braille.glif │ │ ├── dots134-braille.glif │ │ ├── dots1345-braille.glif │ │ ├── dots13456-braille.glif │ │ ├── dots134567-braille.glif │ │ ├── dots1345678-braille.glif │ │ ├── dots134568-braille.glif │ │ ├── dots13457-braille.glif │ │ ├── dots134578-braille.glif │ │ ├── dots13458-braille.glif │ │ ├── dots1346-braille.glif │ │ ├── dots13467-braille.glif │ │ ├── dots134678-braille.glif │ │ ├── dots13468-braille.glif │ │ ├── dots1347-braille.glif │ │ ├── dots13478-braille.glif │ │ ├── dots1348-braille.glif │ │ ├── dots135-braille.glif │ │ ├── dots1356-braille.glif │ │ ├── dots13567-braille.glif │ │ ├── dots135678-braille.glif │ │ ├── dots13568-braille.glif │ │ ├── dots1357-braille.glif │ │ ├── dots13578-braille.glif │ │ ├── dots1358-braille.glif │ │ ├── dots136-braille.glif │ │ ├── dots1367-braille.glif │ │ ├── dots13678-braille.glif │ │ ├── dots1368-braille.glif │ │ ├── dots137-braille.glif │ │ ├── dots1378-braille.glif │ │ ├── dots138-braille.glif │ │ ├── dots14-braille.glif │ │ ├── dots145-braille.glif │ │ ├── dots1456-braille.glif │ │ ├── dots14567-braille.glif │ │ ├── dots145678-braille.glif │ │ ├── dots14568-braille.glif │ │ ├── dots1457-braille.glif │ │ ├── dots14578-braille.glif │ │ ├── dots1458-braille.glif │ │ ├── dots146-braille.glif │ │ ├── dots1467-braille.glif │ │ ├── dots14678-braille.glif │ │ ├── dots1468-braille.glif │ │ ├── dots147-braille.glif │ │ ├── dots1478-braille.glif │ │ ├── dots148-braille.glif │ │ ├── dots15-braille.glif │ │ ├── dots156-braille.glif │ │ ├── dots1567-braille.glif │ │ ├── dots15678-braille.glif │ │ ├── dots1568-braille.glif │ │ ├── dots157-braille.glif │ │ ├── dots1578-braille.glif │ │ ├── dots158-braille.glif │ │ ├── dots16-braille.glif │ │ ├── dots167-braille.glif │ │ ├── dots1678-braille.glif │ │ ├── dots168-braille.glif │ │ ├── dots17-braille.glif │ │ ├── dots178-braille.glif │ │ ├── dots18-braille.glif │ │ ├── dots2-braille.glif │ │ ├── dots23-braille.glif │ │ ├── dots234-braille.glif │ │ ├── dots2345-braille.glif │ │ ├── dots23456-braille.glif │ │ ├── dots234567-braille.glif │ │ ├── dots2345678-braille.glif │ │ ├── dots234568-braille.glif │ │ ├── dots23457-braille.glif │ │ ├── dots234578-braille.glif │ │ ├── dots23458-braille.glif │ │ ├── dots2346-braille.glif │ │ ├── dots23467-braille.glif │ │ ├── dots234678-braille.glif │ │ ├── dots23468-braille.glif │ │ ├── dots2347-braille.glif │ │ ├── dots23478-braille.glif │ │ ├── dots2348-braille.glif │ │ ├── dots235-braille.glif │ │ ├── dots2356-braille.glif │ │ ├── dots23567-braille.glif │ │ ├── dots235678-braille.glif │ │ ├── dots23568-braille.glif │ │ ├── dots2357-braille.glif │ │ ├── dots23578-braille.glif │ │ ├── dots2358-braille.glif │ │ ├── dots236-braille.glif │ │ ├── dots2367-braille.glif │ │ ├── dots23678-braille.glif │ │ ├── dots2368-braille.glif │ │ ├── dots237-braille.glif │ │ ├── dots2378-braille.glif │ │ ├── dots238-braille.glif │ │ ├── dots24-braille.glif │ │ ├── dots245-braille.glif │ │ ├── dots2456-braille.glif │ │ ├── dots24567-braille.glif │ │ ├── dots245678-braille.glif │ │ ├── dots24568-braille.glif │ │ ├── dots2457-braille.glif │ │ ├── dots24578-braille.glif │ │ ├── dots2458-braille.glif │ │ ├── dots246-braille.glif │ │ ├── dots2467-braille.glif │ │ ├── dots24678-braille.glif │ │ ├── dots2468-braille.glif │ │ ├── dots247-braille.glif │ │ ├── dots2478-braille.glif │ │ ├── dots248-braille.glif │ │ ├── dots25-braille.glif │ │ ├── dots256-braille.glif │ │ ├── dots2567-braille.glif │ │ ├── dots25678-braille.glif │ │ ├── dots2568-braille.glif │ │ ├── dots257-braille.glif │ │ ├── dots2578-braille.glif │ │ ├── dots258-braille.glif │ │ ├── dots26-braille.glif │ │ ├── dots267-braille.glif │ │ ├── dots2678-braille.glif │ │ ├── dots268-braille.glif │ │ ├── dots27-braille.glif │ │ ├── dots278-braille.glif │ │ ├── dots28-braille.glif │ │ ├── dots3-braille.glif │ │ ├── dots34-braille.glif │ │ ├── dots345-braille.glif │ │ ├── dots3456-braille.glif │ │ ├── dots34567-braille.glif │ │ ├── dots345678-braille.glif │ │ ├── dots34568-braille.glif │ │ ├── dots3457-braille.glif │ │ ├── dots34578-braille.glif │ │ ├── dots3458-braille.glif │ │ ├── dots346-braille.glif │ │ ├── dots3467-braille.glif │ │ ├── dots34678-braille.glif │ │ ├── dots3468-braille.glif │ │ ├── dots347-braille.glif │ │ ├── dots3478-braille.glif │ │ ├── dots348-braille.glif │ │ ├── dots35-braille.glif │ │ ├── dots356-braille.glif │ │ ├── dots3567-braille.glif │ │ ├── dots35678-braille.glif │ │ ├── dots3568-braille.glif │ │ ├── dots357-braille.glif │ │ ├── dots3578-braille.glif │ │ ├── dots358-braille.glif │ │ ├── dots36-braille.glif │ │ ├── dots367-braille.glif │ │ ├── dots3678-braille.glif │ │ ├── dots368-braille.glif │ │ ├── dots37-braille.glif │ │ ├── dots378-braille.glif │ │ ├── dots38-braille.glif │ │ ├── dots4-braille.glif │ │ ├── dots45-braille.glif │ │ ├── dots456-braille.glif │ │ ├── dots4567-braille.glif │ │ ├── dots45678-braille.glif │ │ ├── dots4568-braille.glif │ │ ├── dots457-braille.glif │ │ ├── dots4578-braille.glif │ │ ├── dots458-braille.glif │ │ ├── dots46-braille.glif │ │ ├── dots467-braille.glif │ │ ├── dots4678-braille.glif │ │ ├── dots468-braille.glif │ │ ├── dots47-braille.glif │ │ ├── dots478-braille.glif │ │ ├── dots48-braille.glif │ │ ├── dots5-braille.glif │ │ ├── dots56-braille.glif │ │ ├── dots567-braille.glif │ │ ├── dots5678-braille.glif │ │ ├── dots568-braille.glif │ │ ├── dots57-braille.glif │ │ ├── dots578-braille.glif │ │ ├── dots58-braille.glif │ │ ├── dots6-braille.glif │ │ ├── dots67-braille.glif │ │ ├── dots678-braille.glif │ │ ├── dots68-braille.glif │ │ ├── dots7-braille.glif │ │ ├── dots78-braille.glif │ │ ├── dots8-braille.glif │ │ ├── dottedC_ircle.glif │ │ ├── dottedS_quare.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.comb.glif │ │ ├── doubleverticalbarbelowS_ymbol-ar.glif │ │ ├── downA_rrow.glif │ │ ├── downB_lackS_mallT_riangle.glif │ │ ├── downB_lackT_riangle.glif │ │ ├── downT_ipL_eftA_rrow.glif │ │ ├── downW_hiteS_mallT_riangle.glif │ │ ├── downW_hiteT_riangle.glif │ │ ├── dtail.glif │ │ ├── dul-ar.fina.glif │ │ ├── dul-ar.glif │ │ ├── dyeh-ar.fina.glif │ │ ├── dyeh-ar.glif │ │ ├── dyeh-ar.init.glif │ │ ├── dyeh-ar.medi.glif │ │ ├── dze-cy.glif │ │ ├── dzhe-cy.glif │ │ ├── e-ar.fina.alt.glif │ │ ├── e-ar.fina.glif │ │ ├── e-ar.glif │ │ ├── e-ar.init.alt.glif │ │ ├── e-ar.init.glif │ │ ├── e-ar.medi.glif │ │ ├── e-cy.glif │ │ ├── e.glif │ │ ├── eacute.glif │ │ ├── ebreve.glif │ │ ├── ecaron.glif │ │ ├── ecircumflex.glif │ │ ├── ecircumflexacute.glif │ │ ├── ecircumflexdotbelow.glif │ │ ├── ecircumflexgrave.glif │ │ ├── ecircumflexhookabove.glif │ │ ├── ecircumflextilde.glif │ │ ├── edieresis.glif │ │ ├── edotaccent.glif │ │ ├── edotbelow.glif │ │ ├── ef-cy.glif │ │ ├── ef-cy.loclB_G_R_.glif │ │ ├── egrave.glif │ │ ├── ehookabove.glif │ │ ├── eight-ar.glif │ │ ├── eight-arinferior.glif │ │ ├── eight-arsuperior.glif │ │ ├── eight-persian.glif │ │ ├── eight-persianinferior.glif │ │ ├── eight-persiansuperior.glif │ │ ├── eight.dnom.glif │ │ ├── eight.glif │ │ ├── eight.numr.glif │ │ ├── eightinferior.glif │ │ ├── eightsuperior.glif │ │ ├── el-cy.glif │ │ ├── el-cy.loclB_G_R_.glif │ │ ├── ellipsis.glif │ │ ├── em-cy.glif │ │ ├── emacron.glif │ │ ├── emdash.glif │ │ ├── en-cy.glif │ │ ├── endO_fM_ediumC_ontrol.glif │ │ ├── endO_fM_ediumC_ontrol.ss20.glif │ │ ├── endO_fT_extC_ontrol.glif │ │ ├── endO_fT_extC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.glif │ │ ├── endO_fT_ransmissionB_lockC_ontrol.ss20.glif │ │ ├── endO_fT_ransmissionC_ontrol.glif │ │ ├── endO_fT_ransmissionC_ontrol.ss20.glif │ │ ├── endash.glif │ │ ├── endescender-cy.glif │ │ ├── endofayah-ar.glif │ │ ├── eng.glif │ │ ├── enquiryC_ontrol.glif │ │ ├── enquiryC_ontrol.ss20.glif │ │ ├── eogonek.glif │ │ ├── eopen.glif │ │ ├── epsilon.glif │ │ ├── epsilontonos.glif │ │ ├── equal.glif │ │ ├── equal_end.seq.glif │ │ ├── equal_equal.liga.glif │ │ ├── equal_equal_equal.liga.glif │ │ ├── equal_greater_greater.liga.glif │ │ ├── equal_less_less.liga.glif │ │ ├── equal_middle.seq.glif │ │ ├── equal_start.seq.glif │ │ ├── equivalence.glif │ │ ├── er-cy.glif │ │ ├── ereversed-cy.glif │ │ ├── es-cy.glif │ │ ├── escapeC_ontrol.glif │ │ ├── escapeC_ontrol.ss20.glif │ │ ├── esh.glif │ │ ├── estimated.glif │ │ ├── eta.glif │ │ ├── etatonos.glif │ │ ├── eth.glif │ │ ├── etilde.glif │ │ ├── eturned.glif │ │ ├── euro.glif │ │ ├── eurocurrency.glif │ │ ├── exclam.glif │ │ ├── exclam_colon.liga.glif │ │ ├── exclam_equal.liga.glif │ │ ├── exclam_equal_equal.liga.glif │ │ ├── exclam_equal_middle.seq.glif │ │ ├── exclam_exclam.liga.glif │ │ ├── exclam_exclam_period.liga.glif │ │ ├── exclam_period.liga.glif │ │ ├── exclamdouble.glif │ │ ├── exclamdown.glif │ │ ├── ezh.glif │ │ ├── f.glif │ │ ├── fatha-ar.glif │ │ ├── fathatan-ar.glif │ │ ├── feh-ar.alt.glif │ │ ├── feh-ar.fina.alt.glif │ │ ├── feh-ar.fina.glif │ │ ├── feh-ar.glif │ │ ├── feh-ar.init.alt.glif │ │ ├── feh-ar.init.glif │ │ ├── feh-ar.medi.glif │ │ ├── fehD_otM_ovedbelow-ar.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.alt.glif │ │ ├── fehD_otM_ovedbelow-ar.fina.glif │ │ ├── fehD_otM_ovedbelow-ar.glif │ │ ├── fehD_otM_ovedbelow-ar.init.glif │ │ ├── fehD_otM_ovedbelow-ar.medi.glif │ │ ├── fehD_otbelow-ar.alt.glif │ │ ├── fehD_otbelow-ar.fina.alt.glif │ │ ├── fehD_otbelow-ar.fina.glif │ │ ├── fehD_otbelow-ar.glif │ │ ├── fehD_otbelow-ar.init.glif │ │ ├── fehD_otbelow-ar.medi.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.alt.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.fina.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.init.glif │ │ ├── fehD_otbelowT_hreedotsabove-ar.medi.glif │ │ ├── fehD_otless-ar.alt.glif │ │ ├── fehD_otless-ar.fina.alt.glif │ │ ├── fehD_otless-ar.fina.glif │ │ ├── fehD_otless-ar.glif │ │ ├── fehD_otless-ar.init.alt.glif │ │ ├── fehD_otless-ar.init.glif │ │ ├── fehD_otless-ar.medi.glif │ │ ├── fehT_hreedotsbelow-ar.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsbelow-ar.fina.glif │ │ ├── fehT_hreedotsbelow-ar.glif │ │ ├── fehT_hreedotsbelow-ar.init.glif │ │ ├── fehT_hreedotsbelow-ar.medi.glif │ │ ├── fehT_hreedotsupbelow-ar.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── fehT_hreedotsupbelow-ar.fina.glif │ │ ├── fehT_hreedotsupbelow-ar.glif │ │ ├── fehT_hreedotsupbelow-ar.init.glif │ │ ├── fehT_hreedotsupbelow-ar.medi.glif │ │ ├── fehT_wodotsbelow-ar.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.alt.glif │ │ ├── fehT_wodotsbelow-ar.fina.glif │ │ ├── fehT_wodotsbelow-ar.glif │ │ ├── fehT_wodotsbelow-ar.init.glif │ │ ├── fehT_wodotsbelow-ar.medi.glif │ │ ├── fi.glif │ │ ├── fileS_eparatorC_ontrol.glif │ │ ├── filledR_ect.glif │ │ ├── finalkaf-hb.glif │ │ ├── finalkafdagesh-hb.glif │ │ ├── finalmem-hb.glif │ │ ├── finalnun-hb.glif │ │ ├── finalpe-hb.glif │ │ ├── finalpedagesh-hb.glif │ │ ├── finaltsadi-hb.glif │ │ ├── firsttonechinese.glif │ │ ├── fisheye.glif │ │ ├── five-ar.glif │ │ ├── five-arinferior.glif │ │ ├── five-arsuperior.glif │ │ ├── five-persian.glif │ │ ├── five-persianinferior.glif │ │ ├── five-persiansuperior.glif │ │ ├── five.dnom.glif │ │ ├── five.glif │ │ ├── five.numr.glif │ │ ├── fiveeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── fiveeighths.glif │ │ ├── fiveinferior.glif │ │ ├── fivesuperior.glif │ │ ├── fl.glif │ │ ├── florin.glif │ │ ├── footnotemarker-ar.glif │ │ ├── formF_eedC_ontrol.glif │ │ ├── formF_eedC_ontrol.ss20.glif │ │ ├── four-ar.glif │ │ ├── four-arinferior.glif │ │ ├── four-arsuperior.glif │ │ ├── four-persian.glif │ │ ├── four-persian.small01.glif │ │ ├── four-persian.urdu.glif │ │ ├── four-persian.urduinferior.glif │ │ ├── four-persian.urdusuperior.glif │ │ ├── four-persianbelow-ar.glif │ │ ├── four-persiancenter-ar.glif │ │ ├── four-persianinferior.glif │ │ ├── four-persiansuperior.glif │ │ ├── four.dnom.glif │ │ ├── four.glif │ │ ├── four.half.glif │ │ ├── four.numr.glif │ │ ├── fourdotsabove-ar.glif │ │ ├── fourdotsbelow-ar.glif │ │ ├── fourdotscenter-ar.glif │ │ ├── fourinferior.glif │ │ ├── foursuperior.glif │ │ ├── fourthroot-ar.glif │ │ ├── fraction.glif │ │ ├── franc.glif │ │ ├── fullB_lock.glif │ │ ├── fullB_lock.stypo.glif │ │ ├── fullstop-ar.glif │ │ ├── g.glif │ │ ├── gaf-ar.fina.glif │ │ ├── gaf-ar.glif │ │ ├── gaf-ar.init.glif │ │ ├── gaf-ar.medi.glif │ │ ├── gafI_nvertedstroke-ar.fina.glif │ │ ├── gafI_nvertedstroke-ar.glif │ │ ├── gafI_nvertedstroke-ar.init.glif │ │ ├── gafI_nvertedstroke-ar.medi.glif │ │ ├── gafR_ing-ar.fina.glif │ │ ├── gafR_ing-ar.glif │ │ ├── gafR_ing-ar.init.glif │ │ ├── gafR_ing-ar.medi.glif │ │ ├── gafT_hreedots-ar.fina.glif │ │ ├── gafT_hreedots-ar.glif │ │ ├── gafT_hreedots-ar.init.glif │ │ ├── gafT_hreedots-ar.medi.glif │ │ ├── gafT_wodotsbelow-ar.fina.glif │ │ ├── gafT_wodotsbelow-ar.glif │ │ ├── gafT_wodotsbelow-ar.init.glif │ │ ├── gafT_wodotsbelow-ar.medi.glif │ │ ├── gafsarkashabove-ar.glif │ │ ├── gamma-latin.glif │ │ ├── gamma.glif │ │ ├── gbreve.glif │ │ ├── gcaron.glif │ │ ├── gcircumflex.glif │ │ ├── gcommaaccent.glif │ │ ├── gdotaccent.glif │ │ ├── ge-cy.glif │ │ ├── ge-cy.loclB_G_R_.glif │ │ ├── geresh-hb.glif │ │ ├── germandbls.glif │ │ ├── gershayim-hb.glif │ │ ├── ghain-ar.fina.glif │ │ ├── ghain-ar.glif │ │ ├── ghain-ar.init.glif │ │ ├── ghain-ar.medi.glif │ │ ├── ghainD_otbelow-ar.fina.glif │ │ ├── ghainD_otbelow-ar.glif │ │ ├── ghainD_otbelow-ar.init.glif │ │ ├── ghainD_otbelow-ar.medi.glif │ │ ├── ghestroke-cy.glif │ │ ├── gheupturn-cy.glif │ │ ├── gimel-hb.glif │ │ ├── gimeldagesh-hb.glif │ │ ├── gje-cy.glif │ │ ├── glottalstop.glif │ │ ├── glottalstopmod.glif │ │ ├── glottalstopreversed.glif │ │ ├── grave.glif │ │ ├── gravecomb.case.glif │ │ ├── gravecomb.glif │ │ ├── gravetonecomb.glif │ │ ├── greater.alt.glif │ │ ├── greater.center.glif │ │ ├── greater.glif │ │ ├── greater_equal.liga.glif │ │ ├── greater_equal_end.seq.glif │ │ ├── greater_equal_middle.seq.glif │ │ ├── greater_equal_start.seq.glif │ │ ├── greater_greater.liga.glif │ │ ├── greater_greater_equal.liga.glif │ │ ├── greater_greater_equal_end.seq.glif │ │ ├── greater_greater_equal_middle.seq.glif │ │ ├── greater_greater_equal_start.seq.glif │ │ ├── greater_greater_greater.liga.glif │ │ ├── greater_greater_hyphen_end.seq.glif │ │ ├── greater_greater_hyphen_middle.seq.glif │ │ ├── greater_greater_hyphen_start.seq.glif │ │ ├── greater_hyphen_end.seq.glif │ │ ├── greater_hyphen_middle.seq.glif │ │ ├── greater_hyphen_start.seq.glif │ │ ├── greaterequal.glif │ │ ├── groupS_eparatorC_ontrol.glif │ │ ├── gstroke.glif │ │ ├── guarani.glif │ │ ├── gueh-ar.fina.glif │ │ ├── gueh-ar.glif │ │ ├── gueh-ar.init.glif │ │ ├── gueh-ar.medi.glif │ │ ├── guillemetleft.glif │ │ ├── guillemetright.glif │ │ ├── guilsinglleft.glif │ │ ├── guilsinglright.glif │ │ ├── h.glif │ │ ├── ha-cy.glif │ │ ├── hadescender-cy.glif │ │ ├── hah-ar.fina.glif │ │ ├── hah-ar.glif │ │ ├── hah-ar.init.glif │ │ ├── hah-ar.medi.glif │ │ ├── hahF_ourbelow-ar.fina.glif │ │ ├── hahF_ourbelow-ar.glif │ │ ├── hahF_ourbelow-ar.init.glif │ │ ├── hahF_ourbelow-ar.medi.glif │ │ ├── hahH_amzaabove-ar.fina.glif │ │ ├── hahH_amzaabove-ar.glif │ │ ├── hahH_amzaabove-ar.init.glif │ │ ├── hahH_amzaabove-ar.medi.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_ahabove-ar.fina.glif │ │ ├── hahT_ahabove-ar.glif │ │ ├── hahT_ahabove-ar.init.glif │ │ ├── hahT_ahabove-ar.medi.glif │ │ ├── hahT_ahbelow-ar.fina.glif │ │ ├── hahT_ahbelow-ar.glif │ │ ├── hahT_ahbelow-ar.init.glif │ │ ├── hahT_ahbelow-ar.medi.glif │ │ ├── hahT_hreedotsabove-ar.fina.glif │ │ ├── hahT_hreedotsabove-ar.glif │ │ ├── hahT_hreedotsabove-ar.init.glif │ │ ├── hahT_hreedotsabove-ar.medi.glif │ │ ├── hahT_hreedotsupbelow-ar.fina.glif │ │ ├── hahT_hreedotsupbelow-ar.glif │ │ ├── hahT_hreedotsupbelow-ar.init.glif │ │ ├── hahT_hreedotsupbelow-ar.medi.glif │ │ ├── hahT_wodotshorizontalabove-ar.fina.glif │ │ ├── hahT_wodotshorizontalabove-ar.glif │ │ ├── hahT_wodotshorizontalabove-ar.init.glif │ │ ├── hahT_wodotshorizontalabove-ar.medi.glif │ │ ├── hahT_wodotsverticalabove-ar.fina.glif │ │ ├── hahT_wodotsverticalabove-ar.glif │ │ ├── hahT_wodotsverticalabove-ar.init.glif │ │ ├── hahT_wodotsverticalabove-ar.medi.glif │ │ ├── hamza-ar.glif │ │ ├── hamzaabove-ar.glif │ │ ├── hamzabelow-ar.glif │ │ ├── hardsign-cy.glif │ │ ├── hardsign-cy.loclB_G_R_.glif │ │ ├── hbar.glif │ │ ├── hcaron.glif │ │ ├── hcircumflex.glif │ │ ├── hdotbelow.glif │ │ ├── he-hb.glif │ │ ├── heartB_lackS_uit.glif │ │ ├── heavyH_orizontalF_ill.glif │ │ ├── heavyH_orizontalF_ill.stypo.glif │ │ ├── heavyleftpointinganglebracketornament.glif │ │ ├── heavyleftpointinganglequotationmarkornament.glif │ │ ├── heavyrightpointinganglebracketornament.glif │ │ ├── heavyrightpointinganglequotationmarkornament.glif │ │ ├── hedagesh-hb.glif │ │ ├── heh-ar.fina.glif │ │ ├── heh-ar.glif │ │ ├── heh-ar.init.glif │ │ ├── heh-ar.medi.glif │ │ ├── hehA_lefabove-ar.init.fina.glif │ │ ├── hehA_lefabove-ar.init.glif │ │ ├── hehD_oachashmee-ar.fina.glif │ │ ├── hehD_oachashmee-ar.glif │ │ ├── hehD_oachashmee-ar.init.glif │ │ ├── hehD_oachashmee-ar.medi.glif │ │ ├── hehH_amzaabove-ar.fina.glif │ │ ├── hehH_amzaabove-ar.glif │ │ ├── hehV_invertedabove-ar.fina.glif │ │ ├── hehV_invertedabove-ar.glif │ │ ├── hehV_invertedabove-ar.init.glif │ │ ├── hehV_invertedabove-ar.medi.glif │ │ ├── hehgoal-ar.fina.glif │ │ ├── hehgoal-ar.glif │ │ ├── hehgoal-ar.init.alt.glif │ │ ├── hehgoal-ar.init.glif │ │ ├── hehgoal-ar.medi.glif │ │ ├── hehgoalH_amzaabove-ar.fina.glif │ │ ├── hehgoalH_amzaabove-ar.glif │ │ ├── hehgoalH_amzaabove-ar.init.alt.glif │ │ ├── hehgoalH_amzaabove-ar.init.glif │ │ ├── hehgoalH_amzaabove-ar.medi.glif │ │ ├── het-hb.glif │ │ ├── highhamza-ar.glif │ │ ├── highhamzaA_lef-ar.fina.glif │ │ ├── highhamzaA_lef-ar.fina.rlig.glif │ │ ├── highhamzaA_lef-ar.glif │ │ ├── highhamzaW_aw-ar.fina.glif │ │ ├── highhamzaW_aw-ar.glif │ │ ├── highhamzaY_eh-ar.fina.alt.glif │ │ ├── highhamzaY_eh-ar.fina.glif │ │ ├── highhamzaY_eh-ar.glif │ │ ├── highhamzaY_eh-ar.init.alt.glif │ │ ├── highhamzaY_eh-ar.init.glif │ │ ├── highhamzaY_eh-ar.medi.glif │ │ ├── holam-hb.glif │ │ ├── holamhaser-hb.glif │ │ ├── hookabovecomb.case.glif │ │ ├── hookabovecomb.glif │ │ ├── horizontalB_lackH_exagon.glif │ │ ├── horizontalF_illS_quare.glif │ │ ├── horizontalO_neE_ightB_lock-2.glif │ │ ├── horizontalO_neE_ightB_lock-2.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-3.glif │ │ ├── horizontalO_neE_ightB_lock-3.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-4.glif │ │ ├── horizontalO_neE_ightB_lock-4.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-5.glif │ │ ├── horizontalO_neE_ightB_lock-5.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-6.glif │ │ ├── horizontalO_neE_ightB_lock-6.stypo.glif │ │ ├── horizontalO_neE_ightB_lock-7.glif │ │ ├── horizontalO_neE_ightB_lock-7.stypo.glif │ │ ├── horizontalT_abulationC_ontrol.glif │ │ ├── horizontalT_abulationC_ontrol.ss20.glif │ │ ├── horizontalbar.glif │ │ ├── horizontallineextension.glif │ │ ├── horncomb.case.glif │ │ ├── horncomb.glif │ │ ├── house.glif │ │ ├── hryvnia.glif │ │ ├── hungarumlaut.glif │ │ ├── hungarumlautcomb.case.glif │ │ ├── hungarumlautcomb.glif │ │ ├── hyphen.glif │ │ ├── hyphen_asciitilde.liga.glif │ │ ├── hyphen_end.seq.glif │ │ ├── hyphen_hyphen.liga.glif │ │ ├── hyphen_hyphen_hyphen.liga.glif │ │ ├── hyphen_middle.seq.glif │ │ ├── hyphen_start.seq.glif │ │ ├── hyphentwo.glif │ │ ├── i-cy.glif │ │ ├── i.glif │ │ ├── ia-cy.glif │ │ ├── iacute.glif │ │ ├── ibreve.glif │ │ ├── icircumflex.glif │ │ ├── idieresis.glif │ │ ├── idotbelow.glif │ │ ├── idotless.glif │ │ ├── ie-cy.glif │ │ ├── iegrave-cy.glif │ │ ├── igrave.glif │ │ ├── ihookabove.glif │ │ ├── ii-cy.glif │ │ ├── ii-cy.loclB_G_R_.glif │ │ ├── iigrave-cy.glif │ │ ├── iigrave-cy.loclB_G_R_.glif │ │ ├── iishort-cy.glif │ │ ├── iishort-cy.loclB_G_R_.glif │ │ ├── ij.glif │ │ ├── ij_acute.glif │ │ ├── imacron-cy.glif │ │ ├── imacron.glif │ │ ├── increment.glif │ │ ├── infinity.glif │ │ ├── integral.glif │ │ ├── integralbt.glif │ │ ├── integraltp.glif │ │ ├── intersection.glif │ │ ├── inverseB_ullet.glif │ │ ├── inverseW_hiteC_ircle.glif │ │ ├── io-cy.glif │ │ ├── iogonek.glif │ │ ├── iota-latin.glif │ │ ├── iota.glif │ │ ├── iotadieresis.glif │ │ ├── iotadieresistonos.glif │ │ ├── iotatonos.glif │ │ ├── itilde.glif │ │ ├── iu-cy.glif │ │ ├── iu-cy.loclB_G_R_.glif │ │ ├── j.glif │ │ ├── jacute.glif │ │ ├── jcaron.glif │ │ ├── jcircumflex.glif │ │ ├── jdotless.glif │ │ ├── je-cy.glif │ │ ├── jeem-ar.fina.glif │ │ ├── jeem-ar.glif │ │ ├── jeem-ar.init.glif │ │ ├── jeem-ar.medi.glif │ │ ├── jeemT_wodotsabove-ar.fina.glif │ │ ├── jeemT_wodotsabove-ar.glif │ │ ├── jeemT_wodotsabove-ar.init.glif │ │ ├── jeemT_wodotsabove-ar.medi.glif │ │ ├── jeh-ar.fina.glif │ │ ├── jeh-ar.glif │ │ ├── k.glif │ │ ├── ka-cy.glif │ │ ├── ka-cy.loclB_G_R_.glif │ │ ├── kadescender-cy.glif │ │ ├── kaf-ar.fina.glif │ │ ├── kaf-ar.glif │ │ ├── kaf-ar.init.glif │ │ ├── kaf-ar.medi.glif │ │ ├── kaf-hb.glif │ │ ├── kafD_otabove-ar.fina.glif │ │ ├── kafD_otabove-ar.glif │ │ ├── kafD_otabove-ar.init.glif │ │ ├── kafD_otabove-ar.medi.glif │ │ ├── kafR_ing-ar.fina.glif │ │ ├── kafR_ing-ar.glif │ │ ├── kafR_ing-ar.init.glif │ │ ├── kafR_ing-ar.medi.glif │ │ ├── kafT_hreedotsbelow-ar.fina.glif │ │ ├── kafT_hreedotsbelow-ar.glif │ │ ├── kafT_hreedotsbelow-ar.init.glif │ │ ├── kafT_hreedotsbelow-ar.medi.glif │ │ ├── kafT_wodotshorizontalabove-ar.fina.glif │ │ ├── kafT_wodotshorizontalabove-ar.glif │ │ ├── kafT_wodotshorizontalabove-ar.init.glif │ │ ├── kafT_wodotshorizontalabove-ar.medi.glif │ │ ├── kafdagesh-hb.glif │ │ ├── kafswash-ar.alt.glif │ │ ├── kafswash-ar.fina.alt.glif │ │ ├── kafswash-ar.fina.glif │ │ ├── kafswash-ar.glif │ │ ├── kafswash-ar.init.alt.glif │ │ ├── kafswash-ar.init.glif │ │ ├── kafswash-ar.medi.alt.glif │ │ ├── kafswash-ar.medi.glif │ │ ├── kaiS_ymbol.glif │ │ ├── kappa.glif │ │ ├── kashida-ar.glif │ │ ├── kasra-ar.glif │ │ ├── kasratan-ar.glif │ │ ├── kcommaaccent.glif │ │ ├── kdotbelow.glif │ │ ├── keheh-ar.fina.glif │ │ ├── keheh-ar.glif │ │ ├── keheh-ar.init.glif │ │ ├── keheh-ar.medi.glif │ │ ├── kehehD_otabove-ar.fina.glif │ │ ├── kehehD_otabove-ar.glif │ │ ├── kehehD_otabove-ar.init.glif │ │ ├── kehehD_otabove-ar.medi.glif │ │ ├── kehehT_hreedotsabove-ar.fina.glif │ │ ├── kehehT_hreedotsabove-ar.glif │ │ ├── kehehT_hreedotsabove-ar.init.glif │ │ ├── kehehT_hreedotsabove-ar.medi.glif │ │ ├── kehehT_hreedotsbelow-ar.fina.glif │ │ ├── kehehT_hreedotsbelow-ar.glif │ │ ├── kehehT_hreedotsbelow-ar.init.glif │ │ ├── kehehT_hreedotsbelow-ar.medi.glif │ │ ├── kehehT_hreedotsupbelow-ar.fina.glif │ │ ├── kehehT_hreedotsupbelow-ar.glif │ │ ├── kehehT_hreedotsupbelow-ar.init.glif │ │ ├── kehehT_hreedotsupbelow-ar.medi.glif │ │ ├── kehehT_wodotshorizontalabove-ar.fina.glif │ │ ├── kehehT_wodotshorizontalabove-ar.glif │ │ ├── kehehT_wodotshorizontalabove-ar.init.glif │ │ ├── kehehT_wodotshorizontalabove-ar.medi.glif │ │ ├── kgreenlandic.glif │ │ ├── khah-ar.fina.glif │ │ ├── khah-ar.glif │ │ ├── khah-ar.init.glif │ │ ├── khah-ar.medi.glif │ │ ├── kip.glif │ │ ├── kirghizoe-ar.fina.glif │ │ ├── kirghizoe-ar.glif │ │ ├── kirghizyu-ar.fina.glif │ │ ├── kirghizyu-ar.glif │ │ ├── kje-cy.glif │ │ ├── klinebelow.glif │ │ ├── l.glif │ │ ├── lacute.glif │ │ ├── lam-ar.fina.glif │ │ ├── lam-ar.glif │ │ ├── lam-ar.init.glif │ │ ├── lam-ar.init.rlig.glif │ │ ├── lam-ar.medi.glif │ │ ├── lam-ar.medi.rlig.glif │ │ ├── lamB_ar-ar.fina.glif │ │ ├── lamB_ar-ar.glif │ │ ├── lamB_ar-ar.init.glif │ │ ├── lamB_ar-ar.init.rlig.glif │ │ ├── lamB_ar-ar.medi.glif │ │ ├── lamB_ar-ar.medi.rlig.glif │ │ ├── lamD_otabove-ar.fina.glif │ │ ├── lamD_otabove-ar.glif │ │ ├── lamD_otabove-ar.init.glif │ │ ├── lamD_otabove-ar.init.rlig.glif │ │ ├── lamD_otabove-ar.medi.glif │ │ ├── lamD_otabove-ar.medi.rlig.glif │ │ ├── lamD_oublebar-ar.fina.glif │ │ ├── lamD_oublebar-ar.glif │ │ ├── lamD_oublebar-ar.init.glif │ │ ├── lamD_oublebar-ar.init.rlig.glif │ │ ├── lamD_oublebar-ar.medi.glif │ │ ├── lamD_oublebar-ar.medi.rlig.glif │ │ ├── lamT_hreedotsabove-ar.fina.glif │ │ ├── lamT_hreedotsabove-ar.glif │ │ ├── lamT_hreedotsabove-ar.init.glif │ │ ├── lamT_hreedotsabove-ar.init.rlig.glif │ │ ├── lamT_hreedotsabove-ar.medi.glif │ │ ├── lamT_hreedotsabove-ar.medi.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.fina.glif │ │ ├── lamT_hreedotsbelow-ar.glif │ │ ├── lamT_hreedotsbelow-ar.init.glif │ │ ├── lamT_hreedotsbelow-ar.init.rlig.glif │ │ ├── lamT_hreedotsbelow-ar.medi.glif │ │ ├── lamT_hreedotsbelow-ar.medi.rlig.glif │ │ ├── lamV_above-ar.fina.glif │ │ ├── lamV_above-ar.glif │ │ ├── lamV_above-ar.init.glif │ │ ├── lamV_above-ar.init.rlig.glif │ │ ├── lamV_above-ar.medi.glif │ │ ├── lamV_above-ar.medi.rlig.glif │ │ ├── lam_alef-ar.fina.glif │ │ ├── lam_alef-ar.fina.short.glif │ │ ├── lam_alef-ar.glif │ │ ├── lam_alef-ar.short.glif │ │ ├── lam_alefH_amzaabove-ar.fina.glif │ │ ├── lam_alefH_amzaabove-ar.glif │ │ ├── lam_alefH_amzabelow-ar.fina.glif │ │ ├── lam_alefH_amzabelow-ar.glif │ │ ├── lam_alefM_adda-ar.fina.glif │ │ ├── lam_alefM_adda-ar.glif │ │ ├── lam_alefW_asla-ar.fina.glif │ │ ├── lam_alefW_asla-ar.glif │ │ ├── lam_lam_heh-ar.glif │ │ ├── lambda.glif │ │ ├── lambdastroke.glif │ │ ├── lamed-hb.glif │ │ ├── lameddagesh-hb.glif │ │ ├── largeC_ircle.glif │ │ ├── largeT_ype-1CE1A.glif │ │ ├── largeT_ype-1CE1A.stypo.glif │ │ ├── largeT_ype-1CE1B.glif │ │ ├── largeT_ype-1CE1B.stypo.glif │ │ ├── largeT_ype-1CE1C.glif │ │ ├── largeT_ype-1CE1C.stypo.glif │ │ ├── largeT_ype-1CE1D.glif │ │ ├── largeT_ype-1CE1D.stypo.glif │ │ ├── largeT_ype-1CE1E.glif │ │ ├── largeT_ype-1CE1E.stypo.glif │ │ ├── largeT_ype-1CE1F.glif │ │ ├── largeT_ype-1CE1F.stypo.glif │ │ ├── largeT_ype-1CE20.glif │ │ ├── largeT_ype-1CE20.stypo.glif │ │ ├── largeT_ype-1CE21.glif │ │ ├── largeT_ype-1CE21.stypo.glif │ │ ├── largeT_ype-1CE22.glif │ │ ├── largeT_ype-1CE22.stypo.glif │ │ ├── largeT_ype-1CE23.glif │ │ ├── largeT_ype-1CE23.stypo.glif │ │ ├── largeT_ype-1CE24.glif │ │ ├── largeT_ype-1CE24.stypo.glif │ │ ├── largeT_ype-1CE25.glif │ │ ├── largeT_ype-1CE25.stypo.glif │ │ ├── largeT_ype-1CE26.glif │ │ ├── largeT_ype-1CE26.stypo.glif │ │ ├── largeT_ype-1CE27.glif │ │ ├── largeT_ype-1CE27.stypo.glif │ │ ├── largeT_ype-1CE28.glif │ │ ├── largeT_ype-1CE28.stypo.glif │ │ ├── largeT_ype-1CE29.glif │ │ ├── largeT_ype-1CE29.stypo.glif │ │ ├── largeT_ype-1CE2A.glif │ │ ├── largeT_ype-1CE2A.stypo.glif │ │ ├── largeT_ype-1CE2B.glif │ │ ├── largeT_ype-1CE2B.stypo.glif │ │ ├── largeT_ype-1CE2C.glif │ │ ├── largeT_ype-1CE2C.stypo.glif │ │ ├── largeT_ype-1CE2D.glif │ │ ├── largeT_ype-1CE2D.stypo.glif │ │ ├── largeT_ype-1CE2E.glif │ │ ├── largeT_ype-1CE2E.stypo.glif │ │ ├── largeT_ype-1CE2F.glif │ │ ├── largeT_ype-1CE2F.stypo.glif │ │ ├── largeT_ype-1CE30.glif │ │ ├── largeT_ype-1CE30.stypo.glif │ │ ├── largeT_ype-1CE31.glif │ │ ├── largeT_ype-1CE31.stypo.glif │ │ ├── largeT_ype-1CE32.glif │ │ ├── largeT_ype-1CE32.stypo.glif │ │ ├── largeT_ype-1CE33.glif │ │ ├── largeT_ype-1CE33.stypo.glif │ │ ├── largeT_ype-1CE34.glif │ │ ├── largeT_ype-1CE34.stypo.glif │ │ ├── largeT_ype-1CE35.glif │ │ ├── largeT_ype-1CE35.stypo.glif │ │ ├── largeT_ype-1CE36.glif │ │ ├── largeT_ype-1CE36.stypo.glif │ │ ├── largeT_ype-1CE37.glif │ │ ├── largeT_ype-1CE37.stypo.glif │ │ ├── largeT_ype-1CE38.glif │ │ ├── largeT_ype-1CE38.stypo.glif │ │ ├── largeT_ype-1CE39.glif │ │ ├── largeT_ype-1CE39.stypo.glif │ │ ├── largeT_ype-1CE3A.glif │ │ ├── largeT_ype-1CE3A.stypo.glif │ │ ├── largeT_ype-1CE3B.glif │ │ ├── largeT_ype-1CE3B.stypo.glif │ │ ├── largeT_ype-1CE3C.glif │ │ ├── largeT_ype-1CE3C.stypo.glif │ │ ├── largeT_ype-1CE3D.glif │ │ ├── largeT_ype-1CE3D.stypo.glif │ │ ├── largeT_ype-1CE3E.glif │ │ ├── largeT_ype-1CE3E.stypo.glif │ │ ├── largeT_ype-1CE3F.glif │ │ ├── largeT_ype-1CE3F.stypo.glif │ │ ├── largeT_ype-1CE40.glif │ │ ├── largeT_ype-1CE40.stypo.glif │ │ ├── largeT_ype-1CE41.glif │ │ ├── largeT_ype-1CE41.stypo.glif │ │ ├── largeT_ype-1CE42.glif │ │ ├── largeT_ype-1CE42.stypo.glif │ │ ├── largeT_ype-1CE43.glif │ │ ├── largeT_ype-1CE43.stypo.glif │ │ ├── largeT_ype-1CE44.glif │ │ ├── largeT_ype-1CE44.stypo.glif │ │ ├── largeT_ype-1CE45.glif │ │ ├── largeT_ype-1CE45.stypo.glif │ │ ├── largeT_ype-1CE46.glif │ │ ├── largeT_ype-1CE46.stypo.glif │ │ ├── largeT_ype-1CE47.glif │ │ ├── largeT_ype-1CE47.stypo.glif │ │ ├── largeT_ype-1CE48.glif │ │ ├── largeT_ype-1CE48.stypo.glif │ │ ├── largeT_ype-1CE49.glif │ │ ├── largeT_ype-1CE49.stypo.glif │ │ ├── largeT_ype-1CE4A.glif │ │ ├── largeT_ype-1CE4A.stypo.glif │ │ ├── largeT_ype-1CE4B.glif │ │ ├── largeT_ype-1CE4B.stypo.glif │ │ ├── largeT_ype-1CE4C.glif │ │ ├── largeT_ype-1CE4C.stypo.glif │ │ ├── largeT_ype-1CE4D.glif │ │ ├── largeT_ype-1CE4D.stypo.glif │ │ ├── largeT_ype-1CE4E.glif │ │ ├── largeT_ype-1CE4E.stypo.glif │ │ ├── largeT_ype-1CE4F.glif │ │ ├── largeT_ype-1CE4F.stypo.glif │ │ ├── largeT_ype-1CE50.glif │ │ ├── largeT_ype-1CE50.stypo.glif │ │ ├── lari.glif │ │ ├── layerinfo.plist │ │ ├── lbar.glif │ │ ├── lbelt.glif │ │ ├── lcaron.glif │ │ ├── lcommaaccent.glif │ │ ├── ldot.glif │ │ ├── ldotbelow.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.glif │ │ ├── leftA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.glif │ │ ├── leftA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── leftA_rrow.glif │ │ ├── leftB_lackP_ointer.glif │ │ ├── leftB_lackS_mallT_riangle.glif │ │ ├── leftB_lackT_riangle.glif │ │ ├── leftB_lock.glif │ │ ├── leftB_lock.stypo.glif │ │ ├── leftF_iveE_ighthsB_lock.glif │ │ ├── leftF_iveE_ighthsB_lock.stypo.glif │ │ ├── leftH_alfB_lackC_ircle.glif │ │ ├── leftH_alfB_lackD_iamond.glif │ │ ├── leftH_alfB_lackS_quare.glif │ │ ├── leftH_alfB_lackW_hiteC_ircle.glif │ │ ├── leftO_neE_ighthB_lock.glif │ │ ├── leftO_neE_ighthB_lock.stypo.glif │ │ ├── leftO_neQ_uarterB_lock.glif │ │ ├── leftO_neQ_uarterB_lock.stypo.glif │ │ ├── leftO_neT_hirdB_lock.glif │ │ ├── leftO_neT_hirdB_lock.stypo.glif │ │ ├── leftR_ightA_rrow.glif │ │ ├── leftS_evenE_ighthsB_lock.glif │ │ ├── leftS_evenE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeE_ighthsB_lock.glif │ │ ├── leftT_hreeE_ighthsB_lock.stypo.glif │ │ ├── leftT_hreeQ_uartersB_lock.glif │ │ ├── leftT_hreeQ_uartersB_lock.stypo.glif │ │ ├── leftT_woT_hirdsB_lock.glif │ │ ├── leftT_woT_hirdsB_lock.stypo.glif │ │ ├── leftW_hiteP_ointer.glif │ │ ├── leftW_hiteS_mallT_riangle.glif │ │ ├── leftW_hiteT_riangle.glif │ │ ├── less.alt.glif │ │ ├── less.center.glif │ │ ├── less.glif │ │ ├── less_asciitilde.liga.glif │ │ ├── less_asciitilde_asciitilde.liga.glif │ │ ├── less_asciitilde_greater.liga.glif │ │ ├── less_asterisk.liga.glif │ │ ├── less_asterisk_greater.liga.glif │ │ ├── less_bar.liga.glif │ │ ├── less_bar_bar.liga.glif │ │ ├── less_bar_bar_bar.liga.glif │ │ ├── less_bar_greater.liga.glif │ │ ├── less_dollar.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar.liga.glif │ │ ├── less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif │ │ ├── less_dollar_greater.liga.glif │ │ ├── less_equal.liga.glif │ │ ├── less_equal_end.seq.glif │ │ ├── less_equal_middle.seq.glif │ │ ├── less_equal_start.seq.glif │ │ ├── less_exclam_hyphen_hyphen.liga.glif │ │ ├── less_greater.liga.glif │ │ ├── less_hyphen_end.seq.glif │ │ ├── less_hyphen_middle.seq.glif │ │ ├── less_hyphen_start.seq.glif │ │ ├── less_less.liga.glif │ │ ├── less_less_equal.liga.glif │ │ ├── less_less_equal_end.seq.glif │ │ ├── less_less_equal_middle.seq.glif │ │ ├── less_less_equal_start.seq.glif │ │ ├── less_less_hyphen_end.seq.glif │ │ ├── less_less_hyphen_middle.seq.glif │ │ ├── less_less_hyphen_start.seq.glif │ │ ├── less_less_less.liga.glif │ │ ├── less_plus.liga.glif │ │ ├── less_plus_greater.liga.glif │ │ ├── less_slash.liga.glif │ │ ├── less_slash_greater.liga.glif │ │ ├── lessequal.glif │ │ ├── lineF_eedC_ontrol.glif │ │ ├── lineF_eedC_ontrol.ss20.glif │ │ ├── lineseparator.glif │ │ ├── lira.glif │ │ ├── liraT_urkish.glif │ │ ├── literS_ign.glif │ │ ├── lje-cy.glif │ │ ├── llinebelow.glif │ │ ├── lmiddletilde.glif │ │ ├── logicalnot.glif │ │ ├── logicalnotR_eversed.glif │ │ ├── longs.glif │ │ ├── lowerF_iveE_ighthsB_lock.glif │ │ ├── lowerF_iveE_ighthsB_lock.stypo.glif │ │ ├── lowerH_alfA_rc.glif │ │ ├── lowerH_alfB_lackW_hiteC_ircle.glif │ │ ├── lowerH_alfB_lock.glif │ │ ├── lowerH_alfB_lock.stypo.glif │ │ ├── lowerH_alfI_nverseW_hiteC_ircle.glif │ │ ├── lowerH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftA_rc.glif │ │ ├── lowerL_eftB_lackT_riangle.glif │ │ ├── lowerL_eftB_lock.glif │ │ ├── lowerL_eftB_lock.stypo.glif │ │ ├── lowerL_eftH_alfW_hiteS_quare.glif │ │ ├── lowerL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerL_eftT_riangle.glif │ │ ├── lowerO_neE_ighthB_lock.glif │ │ ├── lowerO_neE_ighthB_lock.stypo.glif │ │ ├── lowerO_neQ_uarterB_lock.glif │ │ ├── lowerO_neQ_uarterB_lock.stypo.glif │ │ ├── lowerR_ightA_rc.glif │ │ ├── lowerR_ightB_lackT_riangle.glif │ │ ├── lowerR_ightB_lock.glif │ │ ├── lowerR_ightB_lock.stypo.glif │ │ ├── lowerR_ightD_iagonalH_alfB_lackS_quare.glif │ │ ├── lowerR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── lowerR_ightT_riangle.glif │ │ ├── lowerS_evenE_ighthsB_lock.glif │ │ ├── lowerS_evenE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeE_ighthsB_lock.glif │ │ ├── lowerT_hreeE_ighthsB_lock.stypo.glif │ │ ├── lowerT_hreeQ_uartersB_lock.glif │ │ ├── lowerT_hreeQ_uartersB_lock.stypo.glif │ │ ├── lowernumeral-greek.glif │ │ ├── lowlinecomb.glif │ │ ├── lozenge.glif │ │ ├── lslash.glif │ │ ├── m.glif │ │ ├── macron.glif │ │ ├── macronbelowcomb.glif │ │ ├── macroncomb.case.glif │ │ ├── macroncomb.glif │ │ ├── madda-ar.glif │ │ ├── manat.glif │ │ ├── maqaf-hb.glif │ │ ├── mars.glif │ │ ├── mediumB_lackS_mallS_quare.glif │ │ ├── mediumB_lackS_quare.glif │ │ ├── mediumW_hiteS_mallS_quare.glif │ │ ├── mediumW_hiteS_quare.glif │ │ ├── mediumleftpointinganglebracketornament.glif │ │ ├── mediumrightpointinganglebracketornament.glif │ │ ├── meem-ar.fina.glif │ │ ├── meem-ar.glif │ │ ├── meem-ar.init.glif │ │ ├── meem-ar.medi.glif │ │ ├── meemD_otabove-ar.fina.glif │ │ ├── meemD_otabove-ar.glif │ │ ├── meemD_otabove-ar.init.glif │ │ ├── meemD_otabove-ar.medi.glif │ │ ├── meemD_otbelow-ar.fina.glif │ │ ├── meemD_otbelow-ar.glif │ │ ├── meemD_otbelow-ar.init.glif │ │ ├── meemD_otbelow-ar.medi.glif │ │ ├── meemS_topabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.fina.glif │ │ ├── meemT_hreedotsabove-ar.glif │ │ ├── meemT_hreedotsabove-ar.init.glif │ │ ├── meemT_hreedotsabove-ar.medi.glif │ │ ├── mem-hb.glif │ │ ├── memdagesh-hb.glif │ │ ├── micro.glif │ │ ├── minus.glif │ │ ├── minute.glif │ │ ├── misraC_omma-ar.glif │ │ ├── mu.glif │ │ ├── multiply.glif │ │ ├── n.glif │ │ ├── nacute.glif │ │ ├── nacute.loclP_L_K_.glif │ │ ├── naira.glif │ │ ├── napostrophe.glif │ │ ├── nbspace.glif │ │ ├── ncaron.glif │ │ ├── ncommaaccent.glif │ │ ├── negativeA_cknowledgeC_ontrol.glif │ │ ├── negativeA_cknowledgeC_ontrol.ss20.glif │ │ ├── newlineC_ontrol.glif │ │ ├── ng-ar.fina.glif │ │ ├── ng-ar.glif │ │ ├── ng-ar.init.glif │ │ ├── ng-ar.medi.glif │ │ ├── ngoeh-ar.fina.glif │ │ ├── ngoeh-ar.glif │ │ ├── ngoeh-ar.init.glif │ │ ├── ngoeh-ar.medi.glif │ │ ├── nhookleft.glif │ │ ├── nine-ar.glif │ │ ├── nine-arinferior.glif │ │ ├── nine-arsuperior.glif │ │ ├── nine-persian.glif │ │ ├── nine-persianinferior.glif │ │ ├── nine-persiansuperior.glif │ │ ├── nine.dnom.glif │ │ ├── nine.glif │ │ ├── nine.numr.glif │ │ ├── nineinferior.glif │ │ ├── ninesuperior.glif │ │ ├── nje-cy.glif │ │ ├── nlinebelow.glif │ │ ├── nmod.glif │ │ ├── nonbreakinghyphen.glif │ │ ├── noon-ar.fina.glif │ │ ├── noon-ar.glif │ │ ├── noon-ar.init.alt.glif │ │ ├── noon-ar.init.glif │ │ ├── noon-ar.medi.glif │ │ ├── noonA_frican-ar.fina.glif │ │ ├── noonA_frican-ar.glif │ │ ├── noonA_frican-ar.init.alt.glif │ │ ├── noonA_frican-ar.init.glif │ │ ├── noonA_frican-ar.medi.glif │ │ ├── noonD_otbelow-ar.fina.glif │ │ ├── noonD_otbelow-ar.glif │ │ ├── noonD_otbelow-ar.init.alt.glif │ │ ├── noonD_otbelow-ar.init.glif │ │ ├── noonD_otbelow-ar.medi.glif │ │ ├── noonR_ing-ar.fina.glif │ │ ├── noonR_ing-ar.glif │ │ ├── noonR_ing-ar.init.alt.glif │ │ ├── noonR_ing-ar.init.glif │ │ ├── noonR_ing-ar.medi.glif │ │ ├── noonT_ahabove-ar.fina.glif │ │ ├── noonT_ahabove-ar.glif │ │ ├── noonT_ahabove-ar.init.alt.glif │ │ ├── noonT_ahabove-ar.init.glif │ │ ├── noonT_ahabove-ar.medi.glif │ │ ├── noonT_hreedotsabove-ar.fina.glif │ │ ├── noonT_hreedotsabove-ar.glif │ │ ├── noonT_hreedotsabove-ar.init.alt.glif │ │ ├── noonT_hreedotsabove-ar.init.glif │ │ ├── noonT_hreedotsabove-ar.medi.glif │ │ ├── noonT_wodotsbelow-ar.fina.glif │ │ ├── noonT_wodotsbelow-ar.glif │ │ ├── noonT_wodotsbelow-ar.init.alt.glif │ │ ├── noonT_wodotsbelow-ar.init.glif │ │ ├── noonT_wodotsbelow-ar.medi.glif │ │ ├── noonV_above-ar.fina.glif │ │ ├── noonV_above-ar.glif │ │ ├── noonV_above-ar.init.alt.glif │ │ ├── noonV_above-ar.init.glif │ │ ├── noonV_above-ar.medi.glif │ │ ├── noonabove-ar.glif │ │ ├── noonghunna-ar.fina.glif │ │ ├── noonghunna-ar.glif │ │ ├── noonghunna-ar.init.alt.glif │ │ ├── noonghunna-ar.init.glif │ │ ├── noonghunna-ar.medi.glif │ │ ├── noonghunnaabove-ar.glif │ │ ├── note-musical.glif │ │ ├── notedbl-musical.glif │ │ ├── notequal.glif │ │ ├── notidentical.glif │ │ ├── ntilde.glif │ │ ├── nu.glif │ │ ├── nullC_ontrol.glif │ │ ├── number-ar.glif │ │ ├── numbermark-ar.glif │ │ ├── numbersign.glif │ │ ├── numbersign_braceleft.liga.glif │ │ ├── numbersign_bracketleft.liga.glif │ │ ├── numbersign_colon.liga.glif │ │ ├── numbersign_end.seq.glif │ │ ├── numbersign_equal.liga.glif │ │ ├── numbersign_exclam.liga.glif │ │ ├── numbersign_middle.seq.glif │ │ ├── numbersign_parenleft.liga.glif │ │ ├── numbersign_question.liga.glif │ │ ├── numbersign_start.seq.glif │ │ ├── numbersign_underscore.liga.glif │ │ ├── numbersign_underscore_parenleft.liga.glif │ │ ├── numeral-greek.glif │ │ ├── numero.glif │ │ ├── nun-hb.glif │ │ ├── nundagesh-hb.glif │ │ ├── nyeh-ar.fina.glif │ │ ├── nyeh-ar.glif │ │ ├── nyeh-ar.init.glif │ │ ├── nyeh-ar.medi.glif │ │ ├── o-cy.glif │ │ ├── o.glif │ │ ├── oacute.glif │ │ ├── oacute.loclP_L_K_.glif │ │ ├── obarred-cy.glif │ │ ├── obreve.glif │ │ ├── ocircumflex.glif │ │ ├── ocircumflexacute.glif │ │ ├── ocircumflexdotbelow.glif │ │ ├── ocircumflexgrave.glif │ │ ├── ocircumflexhookabove.glif │ │ ├── ocircumflextilde.glif │ │ ├── odieresis.glif │ │ ├── odotbelow.glif │ │ ├── oe-ar.fina.glif │ │ ├── oe-ar.glif │ │ ├── oe.glif │ │ ├── ogonek.glif │ │ ├── ogonekcomb.glif │ │ ├── ograve.glif │ │ ├── ohookabove.glif │ │ ├── ohorn.glif │ │ ├── ohornacute.glif │ │ ├── ohorndotbelow.glif │ │ ├── ohorngrave.glif │ │ ├── ohornhookabove.glif │ │ ├── ohorntilde.glif │ │ ├── ohungarumlaut.glif │ │ ├── omacron.glif │ │ ├── omacronacute.glif │ │ ├── omacrongrave.glif │ │ ├── omega.glif │ │ ├── omegatonos.glif │ │ ├── omicron.glif │ │ ├── omicrontonos.glif │ │ ├── one-ar.glif │ │ ├── one-arinferior.glif │ │ ├── one-arsuperior.glif │ │ ├── one-persian.glif │ │ ├── one-persianinferior.glif │ │ ├── one-persiansuperior.glif │ │ ├── one.dnom.glif │ │ ├── one.glif │ │ ├── one.half.glif │ │ ├── one.numr.glif │ │ ├── onedotenleader.glif │ │ ├── oneeighth.B_R_A_C_K_E_T_.500.glif │ │ ├── oneeighth.glif │ │ ├── onehalf.B_R_A_C_K_E_T_.500.glif │ │ ├── onehalf.glif │ │ ├── oneinferior.glif │ │ ├── onequarter.B_R_A_C_K_E_T_.500.glif │ │ ├── onequarter.glif │ │ ├── onesuperior.glif │ │ ├── oogonek.glif │ │ ├── oopen.glif │ │ ├── ordfeminine.glif │ │ ├── ordmasculine.glif │ │ ├── orthogonal.glif │ │ ├── oslash.glif │ │ ├── oslashacute.glif │ │ ├── otilde.glif │ │ ├── overline.glif │ │ ├── p.glif │ │ ├── pagenumber-ar.glif │ │ ├── palochka-cy.glif │ │ ├── paragraph.glif │ │ ├── parenleft-ar.glif │ │ ├── parenleft.glif │ │ ├── parenleft_asterisk.liga.glif │ │ ├── parenright-ar.glif │ │ ├── parenright.glif │ │ ├── partialdiff.glif │ │ ├── paseq-hb.glif │ │ ├── patah-hb.glif │ │ ├── pe-cy.glif │ │ ├── pe-cy.loclB_G_R_.glif │ │ ├── pe-hb.glif │ │ ├── pedagesh-hb.B_R_A_C_K_E_T_.600.glif │ │ ├── pedagesh-hb.glif │ │ ├── peh-ar.alt.glif │ │ ├── peh-ar.fina.alt.glif │ │ ├── peh-ar.fina.glif │ │ ├── peh-ar.glif │ │ ├── peh-ar.init.alt.glif │ │ ├── peh-ar.init.glif │ │ ├── peh-ar.medi.glif │ │ ├── pehM_eemabove-ar.alt.glif │ │ ├── pehM_eemabove-ar.fina.alt.glif │ │ ├── pehM_eemabove-ar.fina.glif │ │ ├── pehM_eemabove-ar.glif │ │ ├── pehM_eemabove-ar.init.alt.glif │ │ ├── pehM_eemabove-ar.init.glif │ │ ├── pehM_eemabove-ar.medi.glif │ │ ├── peheh-ar.alt.glif │ │ ├── peheh-ar.fina.alt.glif │ │ ├── peheh-ar.fina.glif │ │ ├── peheh-ar.glif │ │ ├── peheh-ar.init.alt.glif │ │ ├── peheh-ar.init.glif │ │ ├── peheh-ar.medi.glif │ │ ├── percent-ar.glif │ │ ├── percent.glif │ │ ├── percent_percent.liga.glif │ │ ├── period.glif │ │ ├── period_equal.liga.glif │ │ ├── period_hyphen.liga.glif │ │ ├── period_period.liga.glif │ │ ├── period_period_equal.liga.glif │ │ ├── period_period_less.liga.glif │ │ ├── period_period_period.liga.glif │ │ ├── period_question.liga.glif │ │ ├── periodcentered.glif │ │ ├── perispomenicomb.glif │ │ ├── perthousand-ar.glif │ │ ├── perthousand.glif │ │ ├── peseta.glif │ │ ├── peso.glif │ │ ├── phi.glif │ │ ├── pi.glif │ │ ├── plus.glif │ │ ├── plus_greater.liga.glif │ │ ├── plus_plus.liga.glif │ │ ├── plus_plus_plus.liga.glif │ │ ├── plusminus.glif │ │ ├── prescription.glif │ │ ├── product.glif │ │ ├── psi.glif │ │ ├── published.glif │ │ ├── punctuationspace.glif │ │ ├── q.glif │ │ ├── qaf-ar.fina.glif │ │ ├── qaf-ar.glif │ │ ├── qaf-ar.init.alt.glif │ │ ├── qaf-ar.init.glif │ │ ├── qaf-ar.medi.glif │ │ ├── qafA_frican-ar.fina.glif │ │ ├── qafA_frican-ar.glif │ │ ├── qafA_frican-ar.init.alt.glif │ │ ├── qafA_frican-ar.init.glif │ │ ├── qafA_frican-ar.medi.glif │ │ ├── qafD_otabove-ar.fina.glif │ │ ├── qafD_otabove-ar.glif │ │ ├── qafD_otabove-ar.init.alt.glif │ │ ├── qafD_otabove-ar.init.glif │ │ ├── qafD_otabove-ar.medi.glif │ │ ├── qafD_otbelow-ar.fina.glif │ │ ├── qafD_otbelow-ar.glif │ │ ├── qafD_otbelow-ar.init.glif │ │ ├── qafD_otbelow-ar.medi.glif │ │ ├── qafD_otless-ar.fina.glif │ │ ├── qafD_otless-ar.glif │ │ ├── qafD_otless-ar.init.alt.glif │ │ ├── qafD_otless-ar.init.glif │ │ ├── qafD_otless-ar.medi.glif │ │ ├── qafT_hreedotsabove-ar.fina.glif │ │ ├── qafT_hreedotsabove-ar.glif │ │ ├── qafT_hreedotsabove-ar.init.glif │ │ ├── qafT_hreedotsabove-ar.medi.glif │ │ ├── qamats-hb.glif │ │ ├── qamatsqatan-hb.glif │ │ ├── qof-hb.glif │ │ ├── qofdagesh-hb.glif │ │ ├── question-ar.glif │ │ ├── question.glif │ │ ├── question_colon.liga.glif │ │ ├── question_equal.liga.glif │ │ ├── question_period.liga.glif │ │ ├── question_question.liga.glif │ │ ├── question_question_equal.liga.glif │ │ ├── questiondown.glif │ │ ├── questiongreek.glif │ │ ├── quotedbl.glif │ │ ├── quotedblbase.glif │ │ ├── quotedblleft.glif │ │ ├── quotedblright.glif │ │ ├── quoteleft.glif │ │ ├── quotereversed.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── quotesingle.glif │ │ ├── r.glif │ │ ├── racute.glif │ │ ├── radical.glif │ │ ├── ratio.glif │ │ ├── ray-ar.glif │ │ ├── rcaron.glif │ │ ├── rcommaaccent.glif │ │ ├── rdotbelow.glif │ │ ├── recordS_eparatorC_ontrol.glif │ │ ├── registered.glif │ │ ├── reh-ar.fina.glif │ │ ├── reh-ar.glif │ │ ├── rehA_lefabove-ar.fina.glif │ │ ├── rehA_lefabove-ar.glif │ │ ├── rehD_otbelow-ar.fina.glif │ │ ├── rehD_otbelow-ar.glif │ │ ├── rehD_otbelowdotabove-ar.fina.glif │ │ ├── rehD_otbelowdotabove-ar.glif │ │ ├── rehF_ourdots-ar.fina.glif │ │ ├── rehF_ourdots-ar.glif │ │ ├── rehH_amzaabove-ar.fina.glif │ │ ├── rehH_amzaabove-ar.glif │ │ ├── rehL_oop-ar.fina.glif │ │ ├── rehL_oop-ar.glif │ │ ├── rehR_ing-ar.fina.glif │ │ ├── rehR_ing-ar.glif │ │ ├── rehS_troke-ar.fina.glif │ │ ├── rehS_troke-ar.glif │ │ ├── rehT_wodots-ar.fina.glif │ │ ├── rehT_wodots-ar.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif │ │ ├── rehT_wodotshorizontalaboveT_ahabove-ar.glif │ │ ├── rehT_wodotsverticalabove-ar.fina.glif │ │ ├── rehT_wodotsverticalabove-ar.glif │ │ ├── rehV_below-ar.fina.glif │ │ ├── rehV_below-ar.glif │ │ ├── rehV_invertedabove-ar.fina.glif │ │ ├── rehV_invertedabove-ar.glif │ │ ├── rehv-ar.fina.glif │ │ ├── rehv-ar.glif │ │ ├── replacementC_haracter.glif │ │ ├── resh-hb.glif │ │ ├── reshdagesh-hb.glif │ │ ├── returnsymbol.glif │ │ ├── reversedR_otatedF_loralH_eartB_ullet.glif │ │ ├── rho.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.glif │ │ ├── rightA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.glif │ │ ├── rightA_ndU_pperO_neE_ightB_lock.stypo.glif │ │ ├── rightA_rrow.glif │ │ ├── rightB_lackP_ointer.glif │ │ ├── rightB_lackS_mallT_riangle.glif │ │ ├── rightB_lackT_riangle.glif │ │ ├── rightB_lock.glif │ │ ├── rightB_lock.stypo.glif │ │ ├── rightF_iveE_ighthsB_lock.glif │ │ ├── rightF_iveE_ighthsB_lock.stypo.glif │ │ ├── rightH_alfB_lackC_ircle.glif │ │ ├── rightH_alfB_lackD_iamond.glif │ │ ├── rightH_alfB_lackS_quare.glif │ │ ├── rightH_alfB_lackW_hiteC_ircle.glif │ │ ├── rightO_neE_ighthB_lock.glif │ │ ├── rightO_neE_ighthB_lock.stypo.glif │ │ ├── rightO_neQ_uarterB_lock.glif │ │ ├── rightO_neQ_uarterB_lock.stypo.glif │ │ ├── rightS_evenE_ighthsB_lock.glif │ │ ├── rightS_evenE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeE_ighthsB_lock.glif │ │ ├── rightT_hreeE_ighthsB_lock.stypo.glif │ │ ├── rightT_hreeQ_uartersB_lock.glif │ │ ├── rightT_hreeQ_uartersB_lock.stypo.glif │ │ ├── rightW_hiteP_ointer.glif │ │ ├── rightW_hiteS_mallT_riangle.glif │ │ ├── rightW_hiteT_riangle.glif │ │ ├── ring.glif │ │ ├── ringA_rabic.glif │ │ ├── ringbelowcomb.glif │ │ ├── ringcomb.case.glif │ │ ├── ringcomb.glif │ │ ├── rnoon-ar.fina.glif │ │ ├── rnoon-ar.glif │ │ ├── rnoon-ar.init.alt.glif │ │ ├── rnoon-ar.init.glif │ │ ├── rnoon-ar.medi.glif │ │ ├── rotatedF_loralH_eartB_ullet.glif │ │ ├── rreh-ar.fina.glif │ │ ├── rreh-ar.glif │ │ ├── ruble.glif │ │ ├── rupee.glif │ │ ├── rupeeI_ndian.glif │ │ ├── s.glif │ │ ├── sacute.glif │ │ ├── sacute.loclP_L_K_.glif │ │ ├── sad-ar.alt.glif │ │ ├── sad-ar.fina.alt.glif │ │ ├── sad-ar.fina.glif │ │ ├── sad-ar.glif │ │ ├── sad-ar.init.glif │ │ ├── sad-ar.medi.glif │ │ ├── sadT_hreedots-ar.alt.glif │ │ ├── sadT_hreedots-ar.fina.alt.glif │ │ ├── sadT_hreedots-ar.fina.glif │ │ ├── sadT_hreedots-ar.glif │ │ ├── sadT_hreedots-ar.init.glif │ │ ├── sadT_hreedots-ar.medi.glif │ │ ├── sadT_hreedotsbelow-ar.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.alt.glif │ │ ├── sadT_hreedotsbelow-ar.fina.glif │ │ ├── sadT_hreedotsbelow-ar.glif │ │ ├── sadT_hreedotsbelow-ar.init.glif │ │ ├── sadT_hreedotsbelow-ar.medi.glif │ │ ├── sadT_wodotsbelow-ar.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.alt.glif │ │ ├── sadT_wodotsbelow-ar.fina.glif │ │ ├── sadT_wodotsbelow-ar.glif │ │ ├── sadT_wodotsbelow-ar.init.glif │ │ ├── sadT_wodotsbelow-ar.medi.glif │ │ ├── samekh-hb.glif │ │ ├── samekhdagesh-hb.glif │ │ ├── samvat-ar.glif │ │ ├── scaron.glif │ │ ├── scedilla.glif │ │ ├── schwa-cy.glif │ │ ├── schwa.glif │ │ ├── scircumflex.glif │ │ ├── scommaaccent.glif │ │ ├── sdotbelow.glif │ │ ├── second.glif │ │ ├── section.glif │ │ ├── seen-ar.alt.glif │ │ ├── seen-ar.fina.alt.glif │ │ ├── seen-ar.fina.glif │ │ ├── seen-ar.glif │ │ ├── seen-ar.init.glif │ │ ├── seen-ar.medi.glif │ │ ├── seenD_otbelowD_otabove-ar.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.alt.glif │ │ ├── seenD_otbelowD_otabove-ar.fina.glif │ │ ├── seenD_otbelowD_otabove-ar.glif │ │ ├── seenD_otbelowD_otabove-ar.init.glif │ │ ├── seenD_otbelowD_otabove-ar.medi.glif │ │ ├── seenF_ourabove-ar.alt.glif │ │ ├── seenF_ourabove-ar.fina.alt.glif │ │ ├── seenF_ourabove-ar.fina.glif │ │ ├── seenF_ourabove-ar.glif │ │ ├── seenF_ourabove-ar.init.glif │ │ ├── seenF_ourabove-ar.medi.glif │ │ ├── seenF_ourdotsabove-ar.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.alt.glif │ │ ├── seenF_ourdotsabove-ar.fina.glif │ │ ├── seenF_ourdotsabove-ar.glif │ │ ├── seenF_ourdotsabove-ar.init.glif │ │ ├── seenF_ourdotsabove-ar.medi.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_ahT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_hreedotsbelow-ar.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelow-ar.fina.glif │ │ ├── seenT_hreedotsbelow-ar.glif │ │ ├── seenT_hreedotsbelow-ar.init.glif │ │ ├── seenT_hreedotsbelow-ar.medi.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.alt.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.fina.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.init.glif │ │ ├── seenT_hreedotsbelowthreedots-ar.medi.glif │ │ ├── seenT_wodotshorizontalabove-ar.fina.glif │ │ ├── seenT_wodotshorizontalabove-ar.glif │ │ ├── seenT_wodotshorizontalabove-ar.init.glif │ │ ├── seenT_wodotshorizontalabove-ar.medi.glif │ │ ├── seenT_wodotsverticalabove-ar.alt.glif │ │ ├── seenT_wodotsverticalabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.alt.glif │ │ ├── seenV_invertedabove-ar.fina.alt.glif │ │ ├── seenV_invertedabove-ar.fina.glif │ │ ├── seenV_invertedabove-ar.glif │ │ ├── seenV_invertedabove-ar.init.glif │ │ ├── seenV_invertedabove-ar.medi.glif │ │ ├── segmentedD_igit0.glif │ │ ├── segmentedD_igit1.glif │ │ ├── segmentedD_igit2.glif │ │ ├── segmentedD_igit3.glif │ │ ├── segmentedD_igit4.glif │ │ ├── segmentedD_igit5.glif │ │ ├── segmentedD_igit6.glif │ │ ├── segmentedD_igit7.glif │ │ ├── segmentedD_igit8.glif │ │ ├── segmentedD_igit9.glif │ │ ├── semicolon-ar.glif │ │ ├── semicolon.glif │ │ ├── semicolon_semicolon.liga.glif │ │ ├── seven-ar.glif │ │ ├── seven-arinferior.glif │ │ ├── seven-arsuperior.glif │ │ ├── seven-persian.glif │ │ ├── seven-persian.urdu.glif │ │ ├── seven-persian.urduinferior.glif │ │ ├── seven-persian.urdusuperior.glif │ │ ├── seven-persianinferior.glif │ │ ├── seven-persiansuperior.glif │ │ ├── seven.dnom.glif │ │ ├── seven.glif │ │ ├── seven.numr.glif │ │ ├── seveneighths.B_R_A_C_K_E_T_.500.glif │ │ ├── seveneighths.glif │ │ ├── seveninferior.glif │ │ ├── sevensuperior.glif │ │ ├── sha-cy.glif │ │ ├── sha-cy.loclB_G_R_.glif │ │ ├── shadda-ar.glif │ │ ├── shadedark.glif │ │ ├── shadedark.stypo.glif │ │ ├── shadelight.glif │ │ ├── shadelight.stypo.glif │ │ ├── shademedium.glif │ │ ├── shademedium.stypo.glif │ │ ├── shcha-cy.glif │ │ ├── shcha-cy.loclB_G_R_.glif │ │ ├── sheen-ar.alt.glif │ │ ├── sheen-ar.fina.alt.glif │ │ ├── sheen-ar.fina.glif │ │ ├── sheen-ar.glif │ │ ├── sheen-ar.init.glif │ │ ├── sheen-ar.medi.glif │ │ ├── sheenD_otbelow-ar.alt.glif │ │ ├── sheenD_otbelow-ar.fina.alt.glif │ │ ├── sheenD_otbelow-ar.fina.glif │ │ ├── sheenD_otbelow-ar.glif │ │ ├── sheenD_otbelow-ar.init.glif │ │ ├── sheenD_otbelow-ar.medi.glif │ │ ├── sheqel.glif │ │ ├── shha-cy.glif │ │ ├── shiftI_nC_ontrol.glif │ │ ├── shiftI_nC_ontrol.ss20.glif │ │ ├── shiftO_utC_ontrol.glif │ │ ├── shiftO_utC_ontrol.ss20.glif │ │ ├── shin-hb.glif │ │ ├── shindagesh-hb.glif │ │ ├── shindageshshindot-hb.glif │ │ ├── shindageshsindot-hb.glif │ │ ├── shindot-hb.glif │ │ ├── shinshindot-hb.glif │ │ ├── shinsindot-hb.glif │ │ ├── sigma.glif │ │ ├── sigmafinal.glif │ │ ├── sindhiampersand-ar.glif │ │ ├── sindhipostpositionmen-ar.glif │ │ ├── sindot-hb.glif │ │ ├── six-ar.glif │ │ ├── six-arinferior.glif │ │ ├── six-arsuperior.glif │ │ ├── six-persian.glif │ │ ├── six-persianinferior.glif │ │ ├── six-persiansuperior.glif │ │ ├── six.dnom.glif │ │ ├── six.glif │ │ ├── six.numr.glif │ │ ├── sixinferior.glif │ │ ├── sixsuperior.glif │ │ ├── slash.glif │ │ ├── slash_asterisk.liga.glif │ │ ├── slash_backslash.liga.glif │ │ ├── slash_equal_end.seq.glif │ │ ├── slash_equal_middle.seq.glif │ │ ├── slash_equal_start.seq.glif │ │ ├── slash_greater.liga.glif │ │ ├── slash_slash.liga.glif │ │ ├── slash_slash_equal_end.seq.glif │ │ ├── slash_slash_equal_middle.seq.glif │ │ ├── slash_slash_equal_start.seq.glif │ │ ├── slash_slash_slash.liga.glif │ │ ├── softhyphen.glif │ │ ├── softsign-cy.glif │ │ ├── softsign-cy.loclB_G_R_.glif │ │ ├── space.glif │ │ ├── spaceC_ontrol.glif │ │ ├── spadeB_lackS_uit.glif │ │ ├── startO_fH_eadingC_ontrol.glif │ │ ├── startO_fH_eadingC_ontrol.ss20.glif │ │ ├── startO_fT_extC_ontrol.glif │ │ ├── startO_fT_extC_ontrol.ss20.glif │ │ ├── sterling.glif │ │ ├── strictlyequivalentto.glif │ │ ├── substituteC_ontrol.glif │ │ ├── substituteC_ontrol.ss20.glif │ │ ├── substituteF_ormT_woC_ontrol.glif │ │ ├── sukun-ar.glif │ │ ├── summation.glif │ │ ├── sunW_ithR_ays.glif │ │ ├── synchronousI_dleC_ontrol.glif │ │ ├── synchronousI_dleC_ontrol.ss20.glif │ │ ├── t.glif │ │ ├── tah-ar.fina.glif │ │ ├── tah-ar.glif │ │ ├── tah-ar.init.glif │ │ ├── tah-ar.medi.glif │ │ ├── tahT_hreedots-ar.fina.glif │ │ ├── tahT_hreedots-ar.glif │ │ ├── tahT_hreedots-ar.init.glif │ │ ├── tahT_hreedots-ar.medi.glif │ │ ├── tahT_wodotsabove-ar.fina.glif │ │ ├── tahT_wodotsabove-ar.glif │ │ ├── tahT_wodotsabove-ar.init.glif │ │ ├── tahT_wodotsabove-ar.medi.glif │ │ ├── tahbelow-ar.glif │ │ ├── tahcenter-ar.glif │ │ ├── tau.glif │ │ ├── tav-hb.glif │ │ ├── tavdagesh-hb.glif │ │ ├── tbar.glif │ │ ├── tcaron.glif │ │ ├── tcedilla.glif │ │ ├── tcheh-ar.fina.glif │ │ ├── tcheh-ar.glif │ │ ├── tcheh-ar.init.glif │ │ ├── tcheh-ar.medi.glif │ │ ├── tchehD_otabove-ar.fina.glif │ │ ├── tchehD_otabove-ar.glif │ │ ├── tchehD_otabove-ar.init.glif │ │ ├── tchehD_otabove-ar.medi.glif │ │ ├── tcheheh-ar.fina.glif │ │ ├── tcheheh-ar.glif │ │ ├── tcheheh-ar.init.glif │ │ ├── tcheheh-ar.medi.glif │ │ ├── tcommaaccent.glif │ │ ├── te-cy.glif │ │ ├── te-cy.loclB_G_R_.glif │ │ ├── teh-ar.alt.glif │ │ ├── teh-ar.fina.alt.glif │ │ ├── teh-ar.fina.glif │ │ ├── teh-ar.glif │ │ ├── teh-ar.init.alt.glif │ │ ├── teh-ar.init.glif │ │ ├── teh-ar.medi.glif │ │ ├── tehM_arbuta-ar.fina.glif │ │ ├── tehM_arbuta-ar.glif │ │ ├── tehM_arbutagoal-ar.fina.glif │ │ ├── tehM_arbutagoal-ar.glif │ │ ├── tehR_ing-ar.alt.glif │ │ ├── tehR_ing-ar.fina.alt.glif │ │ ├── tehR_ing-ar.fina.glif │ │ ├── tehR_ing-ar.glif │ │ ├── tehR_ing-ar.init.alt.glif │ │ ├── tehR_ing-ar.init.glif │ │ ├── tehR_ing-ar.medi.glif │ │ ├── tehT_ehabove-ar.alt.glif │ │ ├── tehT_ehabove-ar.fina.alt.glif │ │ ├── tehT_ehabove-ar.fina.glif │ │ ├── tehT_ehabove-ar.glif │ │ ├── tehT_ehabove-ar.init.alt.glif │ │ ├── tehT_ehabove-ar.init.glif │ │ ├── tehT_ehabove-ar.medi.glif │ │ ├── tehT_hreedotsdown-ar.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.alt.glif │ │ ├── tehT_hreedotsdown-ar.fina.glif │ │ ├── tehT_hreedotsdown-ar.glif │ │ ├── tehT_hreedotsdown-ar.init.alt.glif │ │ ├── tehT_hreedotsdown-ar.init.glif │ │ ├── tehT_hreedotsdown-ar.medi.glif │ │ ├── tehT_hreedotsupbelow-ar.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.fina.glif │ │ ├── tehT_hreedotsupbelow-ar.glif │ │ ├── tehT_hreedotsupbelow-ar.init.alt.glif │ │ ├── tehT_hreedotsupbelow-ar.init.glif │ │ ├── tehT_hreedotsupbelow-ar.medi.glif │ │ ├── tehabove-ar.small.glif │ │ ├── teheh-ar.alt.glif │ │ ├── teheh-ar.fina.alt.glif │ │ ├── teheh-ar.fina.glif │ │ ├── teheh-ar.glif │ │ ├── teheh-ar.init.alt.glif │ │ ├── teheh-ar.init.glif │ │ ├── teheh-ar.medi.glif │ │ ├── tenge.glif │ │ ├── tesh.glif │ │ ├── tet-hb.glif │ │ ├── tetdagesh-hb.glif │ │ ├── thal-ar.fina.glif │ │ ├── thal-ar.glif │ │ ├── thalA_lefabove-ar.fina.glif │ │ ├── thalA_lefabove-ar.glif │ │ ├── theh-ar.alt.glif │ │ ├── theh-ar.fina.alt.glif │ │ ├── theh-ar.fina.glif │ │ ├── theh-ar.glif │ │ ├── theh-ar.init.alt.glif │ │ ├── theh-ar.init.glif │ │ ├── theh-ar.medi.glif │ │ ├── theta.glif │ │ ├── thetamod.glif │ │ ├── thorn.glif │ │ ├── thousandseparator-ar.glif │ │ ├── three-ar.glif │ │ ├── three-arinferior.glif │ │ ├── three-arsuperior.glif │ │ ├── three-persian.glif │ │ ├── three-persian.small01.glif │ │ ├── three-persianinferior.glif │ │ ├── three-persiansuperior.glif │ │ ├── three.dnom.glif │ │ ├── three.glif │ │ ├── three.half.glif │ │ ├── three.numr.glif │ │ ├── threedots-ar.glif │ │ ├── threedotsdownabove-ar.glif │ │ ├── threedotsdownbelow-ar.glif │ │ ├── threedotsdowncenter-ar.glif │ │ ├── threedotsupabove-ar.glif │ │ ├── threedotsupabove-ar.v2.glif │ │ ├── threedotsupbelow-ar.glif │ │ ├── threedotsupcenter-ar.glif │ │ ├── threeeighths.B_R_A_C_K_E_T_.500.glif │ │ ├── threeeighths.glif │ │ ├── threeinferior.glif │ │ ├── threequarters.B_R_A_C_K_E_T_.500.glif │ │ ├── threequarters.glif │ │ ├── threesuperior.glif │ │ ├── tilde.glif │ │ ├── tildecomb.case.glif │ │ ├── tildecomb.glif │ │ ├── tonos.case.glif │ │ ├── tonos.glif │ │ ├── topH_alfB_lackC_ircle.glif │ │ ├── topH_alfB_lackD_iamond.glif │ │ ├── topH_alfW_hiteS_quare.glif │ │ ├── topR_ightH_alfW_hiteS_quare.glif │ │ ├── trademark.glif │ │ ├── tsadi-hb.glif │ │ ├── tsadidagesh-hb.glif │ │ ├── tse-cy.glif │ │ ├── tse-cy.loclB_G_R_.glif │ │ ├── tshe-cy.glif │ │ ├── tteh-ar.alt.glif │ │ ├── tteh-ar.fina.alt.glif │ │ ├── tteh-ar.fina.glif │ │ ├── tteh-ar.glif │ │ ├── tteh-ar.init.alt.glif │ │ ├── tteh-ar.init.glif │ │ ├── tteh-ar.medi.glif │ │ ├── tteheh-ar.alt.glif │ │ ├── tteheh-ar.fina.alt.glif │ │ ├── tteheh-ar.fina.glif │ │ ├── tteheh-ar.glif │ │ ├── tteheh-ar.init.alt.glif │ │ ├── tteheh-ar.init.glif │ │ ├── tteheh-ar.medi.glif │ │ ├── tugrik.glif │ │ ├── two-ar.glif │ │ ├── two-arinferior.glif │ │ ├── two-arsuperior.glif │ │ ├── two-persian.glif │ │ ├── two-persian.small01.glif │ │ ├── two-persianinferior.glif │ │ ├── two-persiansuperior.glif │ │ ├── two.dnom.glif │ │ ├── two.glif │ │ ├── two.half.glif │ │ ├── two.numr.glif │ │ ├── twodotshorizontalabove-ar.glif │ │ ├── twodotshorizontalabove-ar.v2.glif │ │ ├── twodotshorizontalbelow-ar.glif │ │ ├── twodotshorizontalcenter-ar.glif │ │ ├── twodotstahbelow-ar.glif │ │ ├── twodotstahcenter-ar.glif │ │ ├── twodotsverticalabove-ar.glif │ │ ├── twodotsverticalbelow-ar.glif │ │ ├── twodotsverticalcenter-ar.glif │ │ ├── twoinferior.glif │ │ ├── twosuperior.glif │ │ ├── u-ar.fina.glif │ │ ├── u-ar.glif │ │ ├── u-cy.glif │ │ ├── u.glif │ │ ├── uH_amzaabove-ar.fina.glif │ │ ├── uH_amzaabove-ar.glif │ │ ├── uacute.glif │ │ ├── ubreve.glif │ │ ├── ucircumflex.glif │ │ ├── udieresis.glif │ │ ├── udotbelow.glif │ │ ├── ugrave.glif │ │ ├── uhookabove.glif │ │ ├── uhorn.glif │ │ ├── uhornacute.glif │ │ ├── uhorndotbelow.glif │ │ ├── uhorngrave.glif │ │ ├── uhornhookabove.glif │ │ ├── uhorntilde.glif │ │ ├── uhungarumlaut.glif │ │ ├── umacron-cy.glif │ │ ├── umacron.glif │ │ ├── underscore.glif │ │ ├── underscore_end.seq.glif │ │ ├── underscore_middle.seq.glif │ │ ├── underscore_start.seq.glif │ │ ├── underscore_underscore.liga.glif │ │ ├── underscoredbl.glif │ │ ├── uni08B_3.fina.glif │ │ ├── uni08B_3.glif │ │ ├── uni08B_3.init.glif │ │ ├── uni08B_3.medi.glif │ │ ├── uni08B_4.fina.glif │ │ ├── uni08B_4.glif │ │ ├── uni08B_4.init.glif │ │ ├── uni08B_4.medi.glif │ │ ├── uni08B_9.fina.glif │ │ ├── uniF_B_C_0.glif │ │ ├── unitS_eparatorC_ontrol.glif │ │ ├── uogonek.glif │ │ ├── upA_rrow.glif │ │ ├── upB_lackS_mallT_riangle.glif │ │ ├── upB_lackT_riangle.glif │ │ ├── upD_ashA_rrow.glif │ │ ├── upD_ownA_rrow.glif │ │ ├── upD_ownbaseA_rrow.glif │ │ ├── upL_eftH_alfB_lackT_riangle.glif │ │ ├── upR_ightH_alfB_lackT_riangle.glif │ │ ├── upW_hiteS_mallT_riangle.glif │ │ ├── upW_hiteT_riangle.glif │ │ ├── upW_hiteT_riangleW_ithD_ot.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.glif │ │ ├── upperA_ndL_owerO_neE_ightB_lock.stypo.glif │ │ ├── upperF_iveE_ighthsB_lock.glif │ │ ├── upperF_iveE_ighthsB_lock.stypo.glif │ │ ├── upperH_alfA_rc.glif │ │ ├── upperH_alfB_lackW_hiteC_ircle.glif │ │ ├── upperH_alfB_lock.glif │ │ ├── upperH_alfB_lock.stypo.glif │ │ ├── upperH_alfI_nverseW_hiteC_ircle.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif │ │ ├── upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperL_eftA_rc.glif │ │ ├── upperL_eftB_lackT_riangle.glif │ │ ├── upperL_eftB_lock.glif │ │ ├── upperL_eftB_lock.stypo.glif │ │ ├── upperL_eftD_iagonalH_alfB_lackS_quare.glif │ │ ├── upperL_eftQ_uadrantW_hiteC_ircle.glif │ │ ├── upperL_eftT_riangle.glif │ │ ├── upperL_eftW_hiteC_ircle.glif │ │ ├── upperO_neE_ighthB_lock.glif │ │ ├── upperO_neE_ighthB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.glif │ │ ├── upperR_ightA_ndL_owerL_eftB_lock.stypo.glif │ │ ├── upperR_ightA_rc.glif │ │ ├── upperR_ightB_lackC_ircle.glif │ │ ├── upperR_ightB_lackT_riangle.glif │ │ ├── upperR_ightB_lock.glif │ │ ├── upperR_ightB_lock.stypo.glif │ │ ├── upperR_ightQ_uadrantW_hiteC_ircle.glif │ │ ├── upperR_ightT_riangle.glif │ │ ├── upperS_evenE_ighthsB_lock.glif │ │ ├── upperS_evenE_ighthsB_lock.stypo.glif │ │ ├── upperT_hreeE_ighthsB_lock.glif │ │ ├── upperT_hreeE_ighthsB_lock.stypo.glif │ │ ├── upperlefttolowerrightF_illS_quare.glif │ │ ├── upperrighttolowerleftF_illS_quare.glif │ │ ├── upsilon-latin.glif │ │ ├── upsilon.glif │ │ ├── upsilondieresis.glif │ │ ├── upsilondieresistonos.glif │ │ ├── upsilontonos.glif │ │ ├── uring.glif │ │ ├── ushort-cy.glif │ │ ├── ustraight-cy.glif │ │ ├── ustraightstroke-cy.glif │ │ ├── utilde.glif │ │ ├── v.glif │ │ ├── vabove-ar.glif │ │ ├── vav-hb.glif │ │ ├── vavdagesh-hb.glif │ │ ├── vavholam-hb.glif │ │ ├── ve-ar.fina.glif │ │ ├── ve-ar.glif │ │ ├── ve-cy.glif │ │ ├── ve-cy.loclB_G_R_.glif │ │ ├── vectorO_rC_rossP_roduct.glif │ │ ├── veh-ar.alt.glif │ │ ├── veh-ar.fina.alt.glif │ │ ├── veh-ar.fina.glif │ │ ├── veh-ar.glif │ │ ├── veh-ar.init.alt.glif │ │ ├── veh-ar.init.glif │ │ ├── veh-ar.medi.glif │ │ ├── venus.glif │ │ ├── verseC_omma-ar.glif │ │ ├── verticalB_isectingL_ineW_hiteS_quare.glif │ │ ├── verticalF_illC_ircle.glif │ │ ├── verticalF_illS_quare.glif │ │ ├── verticalO_neE_ighthB_lock-2.glif │ │ ├── verticalO_neE_ighthB_lock-2.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-3.glif │ │ ├── verticalO_neE_ighthB_lock-3.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-4.glif │ │ ├── verticalO_neE_ighthB_lock-4.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-5.glif │ │ ├── verticalO_neE_ighthB_lock-5.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-6.glif │ │ ├── verticalO_neE_ighthB_lock-6.stypo.glif │ │ ├── verticalO_neE_ighthB_lock-7.glif │ │ ├── verticalO_neE_ighthB_lock-7.stypo.glif │ │ ├── verticalT_abulationC_ontrol.glif │ │ ├── verticalT_abulationC_ontrol.ss20.glif │ │ ├── vhook.glif │ │ ├── vinvertedabove-ar.glif │ │ ├── vturned.glif │ │ ├── w.glif │ │ ├── w_w_w.liga.glif │ │ ├── wacute.glif │ │ ├── wasla-ar.glif │ │ ├── wavyhamzaabove-ar.glif │ │ ├── wavyhamzabelow-ar.glif │ │ ├── waw-ar.fina.glif │ │ ├── waw-ar.glif │ │ ├── wawD_otabove-ar.fina.glif │ │ ├── wawD_otabove-ar.glif │ │ ├── wawD_otcenter-ar.fina.glif │ │ ├── wawD_otcenter-ar.glif │ │ ├── wawH_amzaabove-ar.fina.glif │ │ ├── wawH_amzaabove-ar.glif │ │ ├── wawS_traight-ar.glif │ │ ├── wawT_hreeA_bove-ar.fina.glif │ │ ├── wawT_hreeA_bove-ar.glif │ │ ├── wawT_woabove-ar.fina.glif │ │ ├── wawT_woabove-ar.glif │ │ ├── wawT_wodots-ar.fina.glif │ │ ├── wawT_wodots-ar.glif │ │ ├── wawring-ar.fina.glif │ │ ├── wawring-ar.glif │ │ ├── wcircumflex.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── whiteB_ullet.glif │ │ ├── whiteC_ircle.glif │ │ ├── whiteD_iamond.glif │ │ ├── whiteH_exagon.glif │ │ ├── whiteH_orizontalE_llipse.glif │ │ ├── whiteI_nB_lackS_quare.glif │ │ ├── whiteL_argeS_quare.glif │ │ ├── whiteL_owerL_eftQ_uadrantS_quare.glif │ │ ├── whiteL_owerR_ightQ_uadrantS_quare.glif │ │ ├── whiteM_ediumD_iamond.glif │ │ ├── whiteM_ediumL_ozenge.glif │ │ ├── whiteP_arallelogram.glif │ │ ├── whiteP_entagon.glif │ │ ├── whiteR_ect.glif │ │ ├── whiteR_oundedC_ornersS_quare.glif │ │ ├── whiteS_mallL_ozenge.glif │ │ ├── whiteS_mallS_quare.glif │ │ ├── whiteS_milingF_ace.glif │ │ ├── whiteS_quare.glif │ │ ├── whiteU_pperL_eftQ_uadrantS_quare.glif │ │ ├── whiteU_pperR_ightQ_uadrantS_quare.glif │ │ ├── whiteV_erticalE_llipse.glif │ │ ├── whiteV_erticalR_ect.glif │ │ ├── whiteV_erysmallS_quare.glif │ │ ├── wmod.glif │ │ ├── won.glif │ │ ├── x.glif │ │ ├── x.multiply.glif │ │ ├── xi.glif │ │ ├── y.glif │ │ ├── yacute.glif │ │ ├── ycircumflex.glif │ │ ├── ydieresis.glif │ │ ├── ydotbelow.glif │ │ ├── year-ar.glif │ │ ├── yeh-ar.fina.alt.glif │ │ ├── yeh-ar.fina.glif │ │ ├── yeh-ar.glif │ │ ├── yeh-ar.init.alt.glif │ │ ├── yeh-ar.init.glif │ │ ├── yeh-ar.medi.glif │ │ ├── yeh-farsi.fina.alt.glif │ │ ├── yeh-farsi.fina.glif │ │ ├── yeh-farsi.glif │ │ ├── yeh-farsi.init.alt.glif │ │ ├── yeh-farsi.init.glif │ │ ├── yeh-farsi.medi.glif │ │ ├── yehF_ourbelow-farsi.fina.alt.glif │ │ ├── yehF_ourbelow-farsi.fina.glif │ │ ├── yehF_ourbelow-farsi.glif │ │ ├── yehF_ourbelow-farsi.init.alt.glif │ │ ├── yehF_ourbelow-farsi.init.glif │ │ ├── yehF_ourbelow-farsi.medi.glif │ │ ├── yehH_amzaabove-ar.fina.alt.glif │ │ ├── yehH_amzaabove-ar.fina.glif │ │ ├── yehH_amzaabove-ar.glif │ │ ├── yehH_amzaabove-ar.init.alt.glif │ │ ├── yehH_amzaabove-ar.init.glif │ │ ├── yehH_amzaabove-ar.medi.glif │ │ ├── yehK_ashmiri-ar.fina.alt.glif │ │ ├── yehK_ashmiri-ar.fina.glif │ │ ├── yehK_ashmiri-ar.glif │ │ ├── yehK_ashmiri-ar.init.alt.glif │ │ ├── yehK_ashmiri-ar.init.glif │ │ ├── yehK_ashmiri-ar.medi.glif │ │ ├── yehR_ohingya-ar.fina.glif │ │ ├── yehR_ohingya-ar.glif │ │ ├── yehR_ohingya-ar.isol.glif │ │ ├── yehT_ail-ar.fina.alt.glif │ │ ├── yehT_ail-ar.fina.glif │ │ ├── yehT_ail-ar.glif │ │ ├── yehT_hreeabove-farsi.fina.alt.glif │ │ ├── yehT_hreeabove-farsi.fina.glif │ │ ├── yehT_hreeabove-farsi.glif │ │ ├── yehT_hreeabove-farsi.init.alt.glif │ │ ├── yehT_hreeabove-farsi.init.glif │ │ ├── yehT_hreeabove-farsi.medi.glif │ │ ├── yehT_hreedotsabove-farsi.fina.alt.glif │ │ ├── yehT_hreedotsabove-farsi.fina.glif │ │ ├── yehT_hreedotsabove-farsi.glif │ │ ├── yehT_hreedotsabove-farsi.init.alt.glif │ │ ├── yehT_hreedotsabove-farsi.init.glif │ │ ├── yehT_hreedotsabove-farsi.medi.glif │ │ ├── yehT_hreedotsbelow-ar.fina.alt.glif │ │ ├── yehT_hreedotsbelow-ar.fina.glif │ │ ├── yehT_hreedotsbelow-ar.glif │ │ ├── yehT_hreedotsbelow-ar.init.alt.glif │ │ ├── yehT_hreedotsbelow-ar.init.glif │ │ ├── yehT_hreedotsbelow-ar.medi.glif │ │ ├── yehT_woabove-farsi.fina.alt.glif │ │ ├── yehT_woabove-farsi.fina.glif │ │ ├── yehT_woabove-farsi.glif │ │ ├── yehT_woabove-farsi.init.alt.glif │ │ ├── yehT_woabove-farsi.init.glif │ │ ├── yehT_woabove-farsi.medi.glif │ │ ├── yehT_wodotsabove-farsi.fina.alt.glif │ │ ├── yehT_wodotsabove-farsi.fina.glif │ │ ├── yehT_wodotsabove-farsi.glif │ │ ├── yehT_wodotsabove-farsi.init.alt.glif │ │ ├── yehT_wodotsabove-farsi.init.glif │ │ ├── yehT_wodotsabove-farsi.medi.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.fina.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.init.glif │ │ ├── yehT_wodotsbelowD_otabove-ar.medi.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.fina.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.init.glif │ │ ├── yehT_wodotsbelowH_amzaabove-ar.medi.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.fina.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.alt.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.init.glif │ │ ├── yehT_wodotsbelowN_oonabove-ar.medi.glif │ │ ├── yehV_above-ar.fina.alt.glif │ │ ├── yehV_above-ar.fina.glif │ │ ├── yehV_above-ar.glif │ │ ├── yehV_above-ar.init.alt.glif │ │ ├── yehV_above-ar.init.glif │ │ ├── yehV_above-ar.medi.glif │ │ ├── yehV_inverted-farsi.fina.alt.glif │ │ ├── yehV_inverted-farsi.fina.glif │ │ ├── yehV_inverted-farsi.glif │ │ ├── yehV_inverted-farsi.init.alt.glif │ │ ├── yehV_inverted-farsi.init.glif │ │ ├── yehV_inverted-farsi.medi.glif │ │ ├── yehbarree-ar.fina.glif │ │ ├── yehbarree-ar.glif │ │ ├── yehbarreeH_amzaabove-ar.fina.glif │ │ ├── yehbarreeH_amzaabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.fina.glif │ │ ├── yehbarreeT_hreeabove-ar.glif │ │ ├── yehbarreeT_hreeabove-ar.init.alt.glif │ │ ├── yehbarreeT_hreeabove-ar.init.glif │ │ ├── yehbarreeT_hreeabove-ar.medi.glif │ │ ├── yehbarreeT_woabove-ar.fina.glif │ │ ├── yehbarreeT_woabove-ar.glif │ │ ├── yehbarreeT_woabove-ar.init.alt.glif │ │ ├── yehbarreeT_woabove-ar.init.glif │ │ ├── yehbarreeT_woabove-ar.medi.glif │ │ ├── yen.glif │ │ ├── yeru-cy.glif │ │ ├── ygrave.glif │ │ ├── yhookabove.glif │ │ ├── yi-cy.glif │ │ ├── ymacron.glif │ │ ├── ymod.glif │ │ ├── yod-hb.glif │ │ ├── yoddagesh-hb.glif │ │ ├── ytilde.glif │ │ ├── yu-ar.fina.glif │ │ ├── yu-ar.glif │ │ ├── z.glif │ │ ├── zacute.glif │ │ ├── zacute.loclP_L_K_.glif │ │ ├── zah-ar.fina.glif │ │ ├── zah-ar.glif │ │ ├── zah-ar.init.glif │ │ ├── zah-ar.medi.glif │ │ ├── zain-ar.fina.glif │ │ ├── zain-ar.glif │ │ ├── zainV_I_nvertedabove-ar.fina.glif │ │ ├── zainV_I_nvertedabove-ar.glif │ │ ├── zayin-hb.glif │ │ ├── zayindagesh-hb.glif │ │ ├── zcaron.glif │ │ ├── zdotaccent.glif │ │ ├── ze-cy.glif │ │ ├── ze-cy.loclB_G_R_.glif │ │ ├── zero-ar.glif │ │ ├── zero-arinferior.glif │ │ ├── zero-arsuperior.glif │ │ ├── zero-persian.glif │ │ ├── zero-persianinferior.glif │ │ ├── zero-persiansuperior.glif │ │ ├── zero.dnom.glif │ │ ├── zero.glif │ │ ├── zero.numr.glif │ │ ├── zero.zero.glif │ │ ├── zeroinferior.glif │ │ ├── zerosuperior.glif │ │ ├── zeta.glif │ │ ├── zhe-cy.glif │ │ ├── zhe-cy.loclB_G_R_.glif │ │ ├── zhedescender-cy.glif │ │ └── zmod.glif │ ├── glyphs.public.background/ │ │ ├── allah-ar.glif │ │ ├── bar_braceright.liga.glif │ │ ├── braceleft.glif │ │ ├── braceleft_bar.liga.glif │ │ ├── braceright.glif │ │ ├── braceright_numbersign.liga.glif │ │ ├── contents.plist │ │ └── numbersign_braceleft.liga.glif │ ├── groups.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── CascadiaCode_variable.designspace ├── CascadiaCode_variable_italic.designspace ├── features/ │ ├── aalt.fea │ ├── aalt_italic.fea │ ├── calt.fea │ ├── calt_italic.fea │ ├── calt_italic_mono.fea │ ├── calt_mono.fea │ ├── case.fea │ ├── ccmp.fea │ ├── figures.fea │ ├── figures_italic.fea │ ├── fina.fea │ ├── frac.fea │ ├── header.fea │ ├── header_italic.fea │ ├── init.fea │ ├── locl.fea │ ├── locl_italic.fea │ ├── medi.fea │ ├── ordn.fea │ ├── rclt.fea │ ├── rclt_PL.fea │ ├── rlig.fea │ ├── salt.fea │ ├── ss01.fea │ ├── ss02.fea │ ├── ss03.fea │ ├── ss19.fea │ ├── ss20.fea │ └── zero.fea ├── nerdfonts/ │ ├── NerdfontsPL-Regular.ufo/ │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── contents.plist │ │ │ ├── layerinfo.plist │ │ │ ├── uniE_0A_0.glif │ │ │ ├── uniE_0A_0.stypo.glif │ │ │ ├── uniE_0A_1.glif │ │ │ ├── uniE_0A_2.glif │ │ │ ├── uniE_0A_3.glif │ │ │ ├── uniE_0B_0.glif │ │ │ ├── uniE_0B_0.stypo.glif │ │ │ ├── uniE_0B_1.glif │ │ │ ├── uniE_0B_1.stypo.glif │ │ │ ├── uniE_0B_2.glif │ │ │ ├── uniE_0B_2.stypo.glif │ │ │ ├── uniE_0B_3.glif │ │ │ ├── uniE_0B_3.stypo.glif │ │ │ ├── uniE_0B_4.glif │ │ │ ├── uniE_0B_4.stypo.glif │ │ │ ├── uniE_0B_5.glif │ │ │ ├── uniE_0B_5.stypo.glif │ │ │ ├── uniE_0B_6.glif │ │ │ ├── uniE_0B_6.stypo.glif │ │ │ ├── uniE_0B_7.glif │ │ │ ├── uniE_0B_7.stypo.glif │ │ │ ├── uniE_0B_8.glif │ │ │ ├── uniE_0B_8.stypo.glif │ │ │ ├── uniE_0B_9.glif │ │ │ ├── uniE_0B_9.stypo.glif │ │ │ ├── uniE_0B_A_.glif │ │ │ ├── uniE_0B_A_.stypo.glif │ │ │ ├── uniE_0B_B_.glif │ │ │ ├── uniE_0B_B_.stypo.glif │ │ │ ├── uniE_0B_C_.glif │ │ │ ├── uniE_0B_C_.stypo.glif │ │ │ ├── uniE_0B_D_.glif │ │ │ ├── uniE_0B_D_.stypo.glif │ │ │ ├── uniE_0B_E_.glif │ │ │ ├── uniE_0B_E_.stypo.glif │ │ │ ├── uniE_0B_F_.glif │ │ │ ├── uniE_0B_F_.stypo.glif │ │ │ ├── uniE_0C_0.glif │ │ │ ├── uniE_0C_0.stypo.glif │ │ │ ├── uniE_0C_1.glif │ │ │ ├── uniE_0C_1.stypo.glif │ │ │ ├── uniE_0C_2.glif │ │ │ ├── uniE_0C_2.stypo.glif │ │ │ ├── uniE_0C_3.glif │ │ │ ├── uniE_0C_3.stypo.glif │ │ │ ├── uniE_0C_4.glif │ │ │ ├── uniE_0C_4.stypo.glif │ │ │ ├── uniE_0C_5.glif │ │ │ ├── uniE_0C_5.stypo.glif │ │ │ ├── uniE_0C_6.glif │ │ │ ├── uniE_0C_6.stypo.glif │ │ │ ├── uniE_0C_7.glif │ │ │ ├── uniE_0C_7.stypo.glif │ │ │ ├── uniE_0C_8.glif │ │ │ ├── uniE_0C_8.stypo.glif │ │ │ ├── uniE_0C_A_.glif │ │ │ ├── uniE_0C_A_.stypo.glif │ │ │ ├── uniE_0C_C_.glif │ │ │ ├── uniE_0C_C_.stypo.glif │ │ │ ├── uniE_0C_D_.glif │ │ │ ├── uniE_0C_D_.stypo.glif │ │ │ ├── uniE_0C_E_.glif │ │ │ ├── uniE_0C_E_.stypo.glif │ │ │ ├── uniE_0C_F_.glif │ │ │ ├── uniE_0C_F_.stypo.glif │ │ │ ├── uniE_0D_0.glif │ │ │ ├── uniE_0D_1.glif │ │ │ ├── uniE_0D_1.stypo.glif │ │ │ ├── uniE_0D_2.glif │ │ │ ├── uniE_0D_2.stypo.glif │ │ │ ├── uniE_0D_4.glif │ │ │ └── uniE_0D_4.stypo.glif │ │ ├── glyphs.public.background/ │ │ │ ├── contents.plist │ │ │ ├── uniE_0B_4.glif │ │ │ ├── uniE_0B_6.glif │ │ │ ├── uniE_0C_0.glif │ │ │ ├── uniE_0C_0.stypo.glif │ │ │ ├── uniE_0C_8.stypo.glif │ │ │ └── uniE_0C_A_.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── Nerdfonts_PL.glyphs │ └── full/ │ ├── PowerlineExtraSymbols.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── _notdef.glif │ │ │ ├── contents.plist │ │ │ ├── uni2630.glif │ │ │ ├── uniE_0A_0.glif │ │ │ ├── uniE_0A_1.glif │ │ │ ├── uniE_0A_2.glif │ │ │ ├── uniE_0A_3.glif │ │ │ ├── uniE_0B_0.glif │ │ │ ├── uniE_0B_1.glif │ │ │ ├── uniE_0B_2.glif │ │ │ ├── uniE_0B_3.glif │ │ │ ├── uniE_0B_4.glif │ │ │ ├── uniE_0B_5.glif │ │ │ ├── uniE_0B_6.glif │ │ │ ├── uniE_0B_7.glif │ │ │ ├── uniE_0B_8.glif │ │ │ ├── uniE_0B_9.glif │ │ │ ├── uniE_0B_A_.glif │ │ │ ├── uniE_0B_B_.glif │ │ │ ├── uniE_0B_C_.glif │ │ │ ├── uniE_0B_D_.glif │ │ │ ├── uniE_0B_E_.glif │ │ │ ├── uniE_0B_F_.glif │ │ │ ├── uniE_0C_0.glif │ │ │ ├── uniE_0C_1.glif │ │ │ ├── uniE_0C_2.glif │ │ │ ├── uniE_0C_3.glif │ │ │ ├── uniE_0C_4.glif │ │ │ ├── uniE_0C_5.glif │ │ │ ├── uniE_0C_6.glif │ │ │ ├── uniE_0C_7.glif │ │ │ ├── uniE_0C_8.glif │ │ │ ├── uniE_0C_A_.glif │ │ │ ├── uniE_0C_C_.glif │ │ │ ├── uniE_0C_D_.glif │ │ │ ├── uniE_0C_E_.glif │ │ │ ├── uniE_0C_F_.glif │ │ │ ├── uniE_0D_0.glif │ │ │ ├── uniE_0D_1.glif │ │ │ ├── uniE_0D_2.glif │ │ │ └── uniE_0D_4.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── original/ │ │ ├── FontAwesome.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── _279.glif │ │ │ │ ├── _283.glif │ │ │ │ ├── _303.glif │ │ │ │ ├── _312.glif │ │ │ │ ├── _317.glif │ │ │ │ ├── _329.glif │ │ │ │ ├── _334.glif │ │ │ │ ├── _335.glif │ │ │ │ ├── _366.glif │ │ │ │ ├── _372.glif │ │ │ │ ├── _374.glif │ │ │ │ ├── _376.glif │ │ │ │ ├── _378.glif │ │ │ │ ├── _380.glif │ │ │ │ ├── _382.glif │ │ │ │ ├── _383.glif │ │ │ │ ├── _384.glif │ │ │ │ ├── _385.glif │ │ │ │ ├── _386.glif │ │ │ │ ├── _387.glif │ │ │ │ ├── _388.glif │ │ │ │ ├── _389.glif │ │ │ │ ├── _392.glif │ │ │ │ ├── _393.glif │ │ │ │ ├── _395.glif │ │ │ │ ├── _396.glif │ │ │ │ ├── _397.glif │ │ │ │ ├── _398.glif │ │ │ │ ├── _399.glif │ │ │ │ ├── _400.glif │ │ │ │ ├── _402.glif │ │ │ │ ├── _403.glif │ │ │ │ ├── _404.glif │ │ │ │ ├── _406.glif │ │ │ │ ├── _407.glif │ │ │ │ ├── _408.glif │ │ │ │ ├── _409.glif │ │ │ │ ├── _410.glif │ │ │ │ ├── _411.glif │ │ │ │ ├── _412.glif │ │ │ │ ├── _413.glif │ │ │ │ ├── _414.glif │ │ │ │ ├── _415.glif │ │ │ │ ├── _416.glif │ │ │ │ ├── _417.glif │ │ │ │ ├── _418.glif │ │ │ │ ├── _419.glif │ │ │ │ ├── _422.glif │ │ │ │ ├── _423.glif │ │ │ │ ├── _424.glif │ │ │ │ ├── _425.glif │ │ │ │ ├── _426.glif │ │ │ │ ├── _427.glif │ │ │ │ ├── _428.glif │ │ │ │ ├── _429.glif │ │ │ │ ├── _430.glif │ │ │ │ ├── _431.glif │ │ │ │ ├── _432.glif │ │ │ │ ├── _433.glif │ │ │ │ ├── _434.glif │ │ │ │ ├── _438.glif │ │ │ │ ├── _439.glif │ │ │ │ ├── _443.glif │ │ │ │ ├── _444.glif │ │ │ │ ├── _445.glif │ │ │ │ ├── _446.glif │ │ │ │ ├── _447.glif │ │ │ │ ├── _448.glif │ │ │ │ ├── _449.glif │ │ │ │ ├── _451.glif │ │ │ │ ├── _452.glif │ │ │ │ ├── _453.glif │ │ │ │ ├── _454.glif │ │ │ │ ├── _455.glif │ │ │ │ ├── _456.glif │ │ │ │ ├── _457.glif │ │ │ │ ├── _458.glif │ │ │ │ ├── _459.glif │ │ │ │ ├── _460.glif │ │ │ │ ├── _461.glif │ │ │ │ ├── _462.glif │ │ │ │ ├── _463.glif │ │ │ │ ├── _464.glif │ │ │ │ ├── _466.glif │ │ │ │ ├── _467.glif │ │ │ │ ├── _469.glif │ │ │ │ ├── _470.glif │ │ │ │ ├── _471.glif │ │ │ │ ├── _472.glif │ │ │ │ ├── _473.glif │ │ │ │ ├── _474.glif │ │ │ │ ├── _475.glif │ │ │ │ ├── _476.glif │ │ │ │ ├── _478.glif │ │ │ │ ├── _479.glif │ │ │ │ ├── _480.glif │ │ │ │ ├── _481.glif │ │ │ │ ├── _482.glif │ │ │ │ ├── _483.glif │ │ │ │ ├── _484.glif │ │ │ │ ├── _485.glif │ │ │ │ ├── _486.glif │ │ │ │ ├── _487.glif │ │ │ │ ├── _488.glif │ │ │ │ ├── _489.glif │ │ │ │ ├── _490.glif │ │ │ │ ├── _491.glif │ │ │ │ ├── _492.glif │ │ │ │ ├── _493.glif │ │ │ │ ├── _494.glif │ │ │ │ ├── _496.glif │ │ │ │ ├── _498.glif │ │ │ │ ├── _499.glif │ │ │ │ ├── _500.glif │ │ │ │ ├── _501.glif │ │ │ │ ├── _502.glif │ │ │ │ ├── _503.glif │ │ │ │ ├── _504.glif │ │ │ │ ├── _505.glif │ │ │ │ ├── _506.glif │ │ │ │ ├── _507.glif │ │ │ │ ├── _508.glif │ │ │ │ ├── _509.glif │ │ │ │ ├── _511.glif │ │ │ │ ├── _512.glif │ │ │ │ ├── _513.glif │ │ │ │ ├── _514.glif │ │ │ │ ├── _515.glif │ │ │ │ ├── _516.glif │ │ │ │ ├── _517.glif │ │ │ │ ├── _518.glif │ │ │ │ ├── _519.glif │ │ │ │ ├── _520.glif │ │ │ │ ├── _521.glif │ │ │ │ ├── _522.glif │ │ │ │ ├── _523.glif │ │ │ │ ├── _524.glif │ │ │ │ ├── _525.glif │ │ │ │ ├── _526.glif │ │ │ │ ├── _527.glif │ │ │ │ ├── _528.glif │ │ │ │ ├── _529.glif │ │ │ │ ├── _530.glif │ │ │ │ ├── _531.glif │ │ │ │ ├── _532.glif │ │ │ │ ├── _533.glif │ │ │ │ ├── _534.glif │ │ │ │ ├── _535.glif │ │ │ │ ├── _536.glif │ │ │ │ ├── _537.glif │ │ │ │ ├── _538.glif │ │ │ │ ├── _539.glif │ │ │ │ ├── _540.glif │ │ │ │ ├── _541.glif │ │ │ │ ├── _542.glif │ │ │ │ ├── _543.glif │ │ │ │ ├── _544.glif │ │ │ │ ├── _545.glif │ │ │ │ ├── _546.glif │ │ │ │ ├── _547.glif │ │ │ │ ├── _548.glif │ │ │ │ ├── _549.glif │ │ │ │ ├── _550.glif │ │ │ │ ├── _551.glif │ │ │ │ ├── _552.glif │ │ │ │ ├── _553.glif │ │ │ │ ├── _554.glif │ │ │ │ ├── _555.glif │ │ │ │ ├── _556.glif │ │ │ │ ├── _557.glif │ │ │ │ ├── _558.glif │ │ │ │ ├── _559.glif │ │ │ │ ├── _560.glif │ │ │ │ ├── _561.glif │ │ │ │ ├── _562.glif │ │ │ │ ├── _563.glif │ │ │ │ ├── _564.glif │ │ │ │ ├── _565.glif │ │ │ │ ├── _566.glif │ │ │ │ ├── _567.glif │ │ │ │ ├── _568.glif │ │ │ │ ├── _569.glif │ │ │ │ ├── _572.glif │ │ │ │ ├── _574.glif │ │ │ │ ├── _575.glif │ │ │ │ ├── _576.glif │ │ │ │ ├── _577.glif │ │ │ │ ├── _578.glif │ │ │ │ ├── _579.glif │ │ │ │ ├── _580.glif │ │ │ │ ├── _581.glif │ │ │ │ ├── _582.glif │ │ │ │ ├── _583.glif │ │ │ │ ├── _584.glif │ │ │ │ ├── _585.glif │ │ │ │ ├── _586.glif │ │ │ │ ├── _587.glif │ │ │ │ ├── _588.glif │ │ │ │ ├── _589.glif │ │ │ │ ├── _590.glif │ │ │ │ ├── _591.glif │ │ │ │ ├── _592.glif │ │ │ │ ├── _593.glif │ │ │ │ ├── _594.glif │ │ │ │ ├── _595.glif │ │ │ │ ├── _596.glif │ │ │ │ ├── _597.glif │ │ │ │ ├── _598.glif │ │ │ │ ├── _602.glif │ │ │ │ ├── _603.glif │ │ │ │ ├── _604.glif │ │ │ │ ├── _607.glif │ │ │ │ ├── _608.glif │ │ │ │ ├── _609.glif │ │ │ │ ├── _610.glif │ │ │ │ ├── _611.glif │ │ │ │ ├── _612.glif │ │ │ │ ├── _613.glif │ │ │ │ ├── _614.glif │ │ │ │ ├── _615.glif │ │ │ │ ├── _616.glif │ │ │ │ ├── _617.glif │ │ │ │ ├── _618.glif │ │ │ │ ├── _619.glif │ │ │ │ ├── _620.glif │ │ │ │ ├── _621.glif │ │ │ │ ├── _622.glif │ │ │ │ ├── _623.glif │ │ │ │ ├── _624.glif │ │ │ │ ├── _625.glif │ │ │ │ ├── _626.glif │ │ │ │ ├── _627.glif │ │ │ │ ├── _628.glif │ │ │ │ ├── _629.glif │ │ │ │ ├── adjust.glif │ │ │ │ ├── adn.glif │ │ │ │ ├── align_center.glif │ │ │ │ ├── align_justify.glif │ │ │ │ ├── align_left.glif │ │ │ │ ├── align_right.glif │ │ │ │ ├── ambulance.glif │ │ │ │ ├── anchor.glif │ │ │ │ ├── android.glif │ │ │ │ ├── angle_down.glif │ │ │ │ ├── angle_left.glif │ │ │ │ ├── angle_right.glif │ │ │ │ ├── angle_up.glif │ │ │ │ ├── apple.glif │ │ │ │ ├── archive.glif │ │ │ │ ├── arrow_circle_alt_left.glif │ │ │ │ ├── arrow_down.glif │ │ │ │ ├── arrow_left.glif │ │ │ │ ├── arrow_right.glif │ │ │ │ ├── arrow_up.glif │ │ │ │ ├── asterisk.glif │ │ │ │ ├── backward.glif │ │ │ │ ├── ban_circle.glif │ │ │ │ ├── bar_chart.glif │ │ │ │ ├── barcode.glif │ │ │ │ ├── beaker.glif │ │ │ │ ├── beer.glif │ │ │ │ ├── bell.glif │ │ │ │ ├── bell_alt.glif │ │ │ │ ├── bitbucket_sign.glif │ │ │ │ ├── bold.glif │ │ │ │ ├── bolt.glif │ │ │ │ ├── book.glif │ │ │ │ ├── bookmark.glif │ │ │ │ ├── bookmark_empty.glif │ │ │ │ ├── briefcase.glif │ │ │ │ ├── btc.glif │ │ │ │ ├── bug.glif │ │ │ │ ├── building.glif │ │ │ │ ├── bullhorn.glif │ │ │ │ ├── bullseye.glif │ │ │ │ ├── calendar.glif │ │ │ │ ├── calendar_empty.glif │ │ │ │ ├── camera.glif │ │ │ │ ├── camera_retro.glif │ │ │ │ ├── caret_down.glif │ │ │ │ ├── caret_left.glif │ │ │ │ ├── caret_right.glif │ │ │ │ ├── caret_up.glif │ │ │ │ ├── certificate.glif │ │ │ │ ├── check.glif │ │ │ │ ├── check_empty.glif │ │ │ │ ├── check_minus.glif │ │ │ │ ├── check_sign.glif │ │ │ │ ├── chevron_down.glif │ │ │ │ ├── chevron_left.glif │ │ │ │ ├── chevron_right.glif │ │ │ │ ├── chevron_sign_down.glif │ │ │ │ ├── chevron_sign_left.glif │ │ │ │ ├── chevron_sign_right.glif │ │ │ │ ├── chevron_sign_up.glif │ │ │ │ ├── chevron_up.glif │ │ │ │ ├── circle.glif │ │ │ │ ├── circle_arrow_down.glif │ │ │ │ ├── circle_arrow_left.glif │ │ │ │ ├── circle_arrow_right.glif │ │ │ │ ├── circle_arrow_up.glif │ │ │ │ ├── circle_blank.glif │ │ │ │ ├── cloud.glif │ │ │ │ ├── cloud_download.glif │ │ │ │ ├── cloud_upload.glif │ │ │ │ ├── code.glif │ │ │ │ ├── code_fork.glif │ │ │ │ ├── coffee.glif │ │ │ │ ├── cog.glif │ │ │ │ ├── cogs.glif │ │ │ │ ├── collapse.glif │ │ │ │ ├── collapse_alt.glif │ │ │ │ ├── collapse_top.glif │ │ │ │ ├── columns.glif │ │ │ │ ├── comment.glif │ │ │ │ ├── comment_alt.glif │ │ │ │ ├── comments.glif │ │ │ │ ├── comments_alt.glif │ │ │ │ ├── compass.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copy.glif │ │ │ │ ├── credit_card.glif │ │ │ │ ├── crop.glif │ │ │ │ ├── css3.glif │ │ │ │ ├── cut.glif │ │ │ │ ├── dashboard.glif │ │ │ │ ├── desktop.glif │ │ │ │ ├── dot_circle_alt.glif │ │ │ │ ├── double_angle_down.glif │ │ │ │ ├── double_angle_left.glif │ │ │ │ ├── double_angle_right.glif │ │ │ │ ├── double_angle_up.glif │ │ │ │ ├── download.glif │ │ │ │ ├── download_alt.glif │ │ │ │ ├── dribble.glif │ │ │ │ ├── dropbox.glif │ │ │ │ ├── edit.glif │ │ │ │ ├── edit_sign.glif │ │ │ │ ├── eject.glif │ │ │ │ ├── ellipsis_horizontal.glif │ │ │ │ ├── ellipsis_vertical.glif │ │ │ │ ├── envelope.glif │ │ │ │ ├── envelope_alt.glif │ │ │ │ ├── eur.glif │ │ │ │ ├── exchange.glif │ │ │ │ ├── exclamation.glif │ │ │ │ ├── exclamation_sign.glif │ │ │ │ ├── expand_alt.glif │ │ │ │ ├── external_link.glif │ │ │ │ ├── eye_close.glif │ │ │ │ ├── eye_open.glif │ │ │ │ ├── f0fe.glif │ │ │ │ ├── f171.glif │ │ │ │ ├── f1a1.glif │ │ │ │ ├── f1a4.glif │ │ │ │ ├── f1ab.glif │ │ │ │ ├── f1f3.glif │ │ │ │ ├── f1fc.glif │ │ │ │ ├── f210.glif │ │ │ │ ├── f212.glif │ │ │ │ ├── f260.glif │ │ │ │ ├── f261.glif │ │ │ │ ├── f263.glif │ │ │ │ ├── f27e.glif │ │ │ │ ├── facebook.glif │ │ │ │ ├── facebook_sign.glif │ │ │ │ ├── facetime_video.glif │ │ │ │ ├── fast_backward.glif │ │ │ │ ├── fast_forward.glif │ │ │ │ ├── female.glif │ │ │ │ ├── fighter_jet.glif │ │ │ │ ├── file.glif │ │ │ │ ├── file_alt.glif │ │ │ │ ├── file_text.glif │ │ │ │ ├── file_text_alt.glif │ │ │ │ ├── film.glif │ │ │ │ ├── filter.glif │ │ │ │ ├── fire.glif │ │ │ │ ├── fire_extinguisher.glif │ │ │ │ ├── flag.glif │ │ │ │ ├── flag_alt.glif │ │ │ │ ├── flag_checkered.glif │ │ │ │ ├── flickr.glif │ │ │ │ ├── folder_close.glif │ │ │ │ ├── folder_close_alt.glif │ │ │ │ ├── folder_open.glif │ │ │ │ ├── folder_open_alt.glif │ │ │ │ ├── font.glif │ │ │ │ ├── food.glif │ │ │ │ ├── forward.glif │ │ │ │ ├── foursquare.glif │ │ │ │ ├── frown.glif │ │ │ │ ├── fullscreen.glif │ │ │ │ ├── gamepad.glif │ │ │ │ ├── gbp.glif │ │ │ │ ├── gift.glif │ │ │ │ ├── github.glif │ │ │ │ ├── github_alt.glif │ │ │ │ ├── github_sign.glif │ │ │ │ ├── gittip.glif │ │ │ │ ├── glass.glif │ │ │ │ ├── globe.glif │ │ │ │ ├── google_plus.glif │ │ │ │ ├── google_plus_sign.glif │ │ │ │ ├── group.glif │ │ │ │ ├── h_sign.glif │ │ │ │ ├── hand_down.glif │ │ │ │ ├── hand_left.glif │ │ │ │ ├── hand_right.glif │ │ │ │ ├── hand_up.glif │ │ │ │ ├── hdd.glif │ │ │ │ ├── headphones.glif │ │ │ │ ├── heart.glif │ │ │ │ ├── heart_empty.glif │ │ │ │ ├── home.glif │ │ │ │ ├── hospital.glif │ │ │ │ ├── html5.glif │ │ │ │ ├── inbox.glif │ │ │ │ ├── indent_left.glif │ │ │ │ ├── indent_right.glif │ │ │ │ ├── info_sign.glif │ │ │ │ ├── inr.glif │ │ │ │ ├── instagram.glif │ │ │ │ ├── italic.glif │ │ │ │ ├── jpy.glif │ │ │ │ ├── key.glif │ │ │ │ ├── keyboard.glif │ │ │ │ ├── krw.glif │ │ │ │ ├── laptop.glif │ │ │ │ ├── leaf.glif │ │ │ │ ├── legal.glif │ │ │ │ ├── lemon.glif │ │ │ │ ├── level_down.glif │ │ │ │ ├── level_up.glif │ │ │ │ ├── light_bulb.glif │ │ │ │ ├── link.glif │ │ │ │ ├── linkedin.glif │ │ │ │ ├── linkedin_sign.glif │ │ │ │ ├── linux.glif │ │ │ │ ├── list.glif │ │ │ │ ├── list_alt.glif │ │ │ │ ├── location_arrow.glif │ │ │ │ ├── lock.glif │ │ │ │ ├── long_arrow_down.glif │ │ │ │ ├── long_arrow_left.glif │ │ │ │ ├── long_arrow_right.glif │ │ │ │ ├── long_arrow_up.glif │ │ │ │ ├── magic.glif │ │ │ │ ├── magnet.glif │ │ │ │ ├── male.glif │ │ │ │ ├── map_marker.glif │ │ │ │ ├── maxcdn.glif │ │ │ │ ├── medkit.glif │ │ │ │ ├── meh.glif │ │ │ │ ├── microphone.glif │ │ │ │ ├── microphone_off.glif │ │ │ │ ├── minus.glif │ │ │ │ ├── minus_sign.glif │ │ │ │ ├── minus_sign_alt.glif │ │ │ │ ├── mobile_phone.glif │ │ │ │ ├── money.glif │ │ │ │ ├── move.glif │ │ │ │ ├── music.glif │ │ │ │ ├── off.glif │ │ │ │ ├── ok.glif │ │ │ │ ├── ok_circle.glif │ │ │ │ ├── ok_sign.glif │ │ │ │ ├── ol.glif │ │ │ │ ├── paper_clip.glif │ │ │ │ ├── paste.glif │ │ │ │ ├── pause.glif │ │ │ │ ├── pencil.glif │ │ │ │ ├── phone.glif │ │ │ │ ├── phone_sign.glif │ │ │ │ ├── picture.glif │ │ │ │ ├── pinterest.glif │ │ │ │ ├── pinterest_sign.glif │ │ │ │ ├── plane.glif │ │ │ │ ├── play.glif │ │ │ │ ├── play_circle.glif │ │ │ │ ├── play_sign.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── plus_sign.glif │ │ │ │ ├── plus_square_o.glif │ │ │ │ ├── print.glif │ │ │ │ ├── pushpin.glif │ │ │ │ ├── puzzle_piece.glif │ │ │ │ ├── qrcode.glif │ │ │ │ ├── question.glif │ │ │ │ ├── question_sign.glif │ │ │ │ ├── quote_left.glif │ │ │ │ ├── quote_right.glif │ │ │ │ ├── random.glif │ │ │ │ ├── refresh.glif │ │ │ │ ├── remove.glif │ │ │ │ ├── remove_circle.glif │ │ │ │ ├── remove_sign.glif │ │ │ │ ├── renren.glif │ │ │ │ ├── reorder.glif │ │ │ │ ├── repeat.glif │ │ │ │ ├── reply.glif │ │ │ │ ├── reply_all.glif │ │ │ │ ├── resize_full.glif │ │ │ │ ├── resize_horizontal.glif │ │ │ │ ├── resize_small.glif │ │ │ │ ├── resize_vertical.glif │ │ │ │ ├── retweet.glif │ │ │ │ ├── road.glif │ │ │ │ ├── rocket.glif │ │ │ │ ├── rss.glif │ │ │ │ ├── rub.glif │ │ │ │ ├── save.glif │ │ │ │ ├── screenshot.glif │ │ │ │ ├── search.glif │ │ │ │ ├── share.glif │ │ │ │ ├── share_alt.glif │ │ │ │ ├── share_sign.glif │ │ │ │ ├── shield.glif │ │ │ │ ├── shopping_cart.glif │ │ │ │ ├── sign_blank.glif │ │ │ │ ├── signal.glif │ │ │ │ ├── signin.glif │ │ │ │ ├── signout.glif │ │ │ │ ├── sitemap.glif │ │ │ │ ├── skype.glif │ │ │ │ ├── smile.glif │ │ │ │ ├── sort.glif │ │ │ │ ├── sort_by_alphabet.glif │ │ │ │ ├── sort_by_attributes.glif │ │ │ │ ├── sort_by_attributes_alt.glif │ │ │ │ ├── sort_by_order.glif │ │ │ │ ├── sort_by_order_alt.glif │ │ │ │ ├── sort_down.glif │ │ │ │ ├── sort_up.glif │ │ │ │ ├── spinner.glif │ │ │ │ ├── stack_exchange.glif │ │ │ │ ├── stackexchange.glif │ │ │ │ ├── star.glif │ │ │ │ ├── star_empty.glif │ │ │ │ ├── star_half.glif │ │ │ │ ├── star_half_empty.glif │ │ │ │ ├── step_backward.glif │ │ │ │ ├── step_forward.glif │ │ │ │ ├── stethoscope.glif │ │ │ │ ├── stop.glif │ │ │ │ ├── strikethrough.glif │ │ │ │ ├── subscript.glif │ │ │ │ ├── suitcase.glif │ │ │ │ ├── sun.glif │ │ │ │ ├── superscript.glif │ │ │ │ ├── table.glif │ │ │ │ ├── tablet.glif │ │ │ │ ├── tag.glif │ │ │ │ ├── tags.glif │ │ │ │ ├── tasks.glif │ │ │ │ ├── terminal.glif │ │ │ │ ├── text_height.glif │ │ │ │ ├── text_width.glif │ │ │ │ ├── th.glif │ │ │ │ ├── th_large.glif │ │ │ │ ├── th_list.glif │ │ │ │ ├── thumbs_down_alt.glif │ │ │ │ ├── thumbs_up_alt.glif │ │ │ │ ├── ticket.glif │ │ │ │ ├── time.glif │ │ │ │ ├── tint.glif │ │ │ │ ├── trash.glif │ │ │ │ ├── trello.glif │ │ │ │ ├── trophy.glif │ │ │ │ ├── truck.glif │ │ │ │ ├── tumblr.glif │ │ │ │ ├── tumblr_sign.glif │ │ │ │ ├── twitter.glif │ │ │ │ ├── twitter_sign.glif │ │ │ │ ├── ul.glif │ │ │ │ ├── umbrella.glif │ │ │ │ ├── underline.glif │ │ │ │ ├── undo.glif │ │ │ │ ├── uniF_1A_0.glif │ │ │ │ ├── uniF_1B_1.glif │ │ │ │ ├── uniF_1C_0.glif │ │ │ │ ├── uniF_1C_1.glif │ │ │ │ ├── uniF_1D_0.glif │ │ │ │ ├── uniF_1D_1.glif │ │ │ │ ├── uniF_1D_2.glif │ │ │ │ ├── uniF_1D_5.glif │ │ │ │ ├── uniF_1D_6.glif │ │ │ │ ├── uniF_1D_7.glif │ │ │ │ ├── uniF_1E_0.glif │ │ │ │ ├── uniF_1F_0.glif │ │ │ │ ├── uniF_280.glif │ │ │ │ ├── uniF_281.glif │ │ │ │ ├── uniF_285.glif │ │ │ │ ├── uniF_286.glif │ │ │ │ ├── uniF_2A_0.glif │ │ │ │ ├── uniF_2A_1.glif │ │ │ │ ├── uniF_2A_2.glif │ │ │ │ ├── uniF_2A_3.glif │ │ │ │ ├── uniF_2A_4.glif │ │ │ │ ├── uniF_2A_5.glif │ │ │ │ ├── uniF_2A_6.glif │ │ │ │ ├── uniF_2A_7.glif │ │ │ │ ├── uniF_2A_8.glif │ │ │ │ ├── uniF_2A_9.glif │ │ │ │ ├── uniF_2A_A_.glif │ │ │ │ ├── uniF_2A_B_.glif │ │ │ │ ├── uniF_2A_C_.glif │ │ │ │ ├── uniF_2A_D_.glif │ │ │ │ ├── uniF_2A_E_.glif │ │ │ │ ├── uniF_2B_0.glif │ │ │ │ ├── uniF_2B_1.glif │ │ │ │ ├── uniF_2B_2.glif │ │ │ │ ├── uniF_2B_3.glif │ │ │ │ ├── uniF_2B_4.glif │ │ │ │ ├── uniF_2B_5.glif │ │ │ │ ├── uniF_2B_6.glif │ │ │ │ ├── uniF_2B_7.glif │ │ │ │ ├── uniF_2B_8.glif │ │ │ │ ├── uniF_2B_9.glif │ │ │ │ ├── uniF_2B_A_.glif │ │ │ │ ├── uniF_2B_B_.glif │ │ │ │ ├── uniF_2B_C_.glif │ │ │ │ ├── uniF_2B_D_.glif │ │ │ │ ├── uniF_2B_E_.glif │ │ │ │ ├── uniF_2C_0.glif │ │ │ │ ├── uniF_2C_1.glif │ │ │ │ ├── uniF_2C_2.glif │ │ │ │ ├── uniF_2C_3.glif │ │ │ │ ├── uniF_2C_4.glif │ │ │ │ ├── uniF_2C_5.glif │ │ │ │ ├── uniF_2C_6.glif │ │ │ │ ├── uniF_2C_7.glif │ │ │ │ ├── uniF_2C_8.glif │ │ │ │ ├── uniF_2C_9.glif │ │ │ │ ├── uniF_2C_A_.glif │ │ │ │ ├── uniF_2C_B_.glif │ │ │ │ ├── uniF_2C_C_.glif │ │ │ │ ├── uniF_2C_D_.glif │ │ │ │ ├── uniF_2C_E_.glif │ │ │ │ ├── uniF_2D_0.glif │ │ │ │ ├── uniF_2D_1.glif │ │ │ │ ├── uniF_2D_2.glif │ │ │ │ ├── uniF_2D_3.glif │ │ │ │ ├── uniF_2D_4.glif │ │ │ │ ├── uniF_2D_5.glif │ │ │ │ ├── uniF_2D_6.glif │ │ │ │ ├── uniF_2D_7.glif │ │ │ │ ├── uniF_2D_8.glif │ │ │ │ ├── uniF_2D_9.glif │ │ │ │ ├── uniF_2D_A_.glif │ │ │ │ ├── uniF_2D_B_.glif │ │ │ │ ├── uniF_2D_C_.glif │ │ │ │ ├── uniF_2D_D_.glif │ │ │ │ ├── uniF_2D_E_.glif │ │ │ │ ├── uniF_2E_0.glif │ │ │ │ ├── unlink.glif │ │ │ │ ├── unlock.glif │ │ │ │ ├── unlock_alt.glif │ │ │ │ ├── upload.glif │ │ │ │ ├── upload_alt.glif │ │ │ │ ├── usd.glif │ │ │ │ ├── user.glif │ │ │ │ ├── user_md.glif │ │ │ │ ├── venus.glif │ │ │ │ ├── vimeo_square.glif │ │ │ │ ├── vk.glif │ │ │ │ ├── volume_down.glif │ │ │ │ ├── volume_off.glif │ │ │ │ ├── volume_up.glif │ │ │ │ ├── warning_sign.glif │ │ │ │ ├── weibo.glif │ │ │ │ ├── windows.glif │ │ │ │ ├── wrench.glif │ │ │ │ ├── xing.glif │ │ │ │ ├── xing_sign.glif │ │ │ │ ├── youtube.glif │ │ │ │ ├── youtube_play.glif │ │ │ │ ├── youtube_sign.glif │ │ │ │ ├── zoom_in.glif │ │ │ │ └── zoom_out.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── MaterialDesignIconsDesktop.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── ab-testing.glif │ │ │ │ ├── abacus.glif │ │ │ │ ├── abjad-arabic.glif │ │ │ │ ├── abjad-hebrew.glif │ │ │ │ ├── abugida-devanagari.glif │ │ │ │ ├── abugida-thai.glif │ │ │ │ ├── access-point-check.glif │ │ │ │ ├── access-point-minus.glif │ │ │ │ ├── access-point-network-off.glif │ │ │ │ ├── access-point-network.glif │ │ │ │ ├── access-point-off.glif │ │ │ │ ├── access-point-plus.glif │ │ │ │ ├── access-point-remove.glif │ │ │ │ ├── access-point.glif │ │ │ │ ├── account-alert-outline.glif │ │ │ │ ├── account-alert.glif │ │ │ │ ├── account-arrow-down-outline.glif │ │ │ │ ├── account-arrow-down.glif │ │ │ │ ├── account-arrow-left-outline.glif │ │ │ │ ├── account-arrow-left.glif │ │ │ │ ├── account-arrow-right-outline.glif │ │ │ │ ├── account-arrow-right.glif │ │ │ │ ├── account-arrow-up-outline.glif │ │ │ │ ├── account-arrow-up.glif │ │ │ │ ├── account-box-multiple-outline.glif │ │ │ │ ├── account-box-multiple.glif │ │ │ │ ├── account-box-outline.glif │ │ │ │ ├── account-box.glif │ │ │ │ ├── account-cancel-outline.glif │ │ │ │ ├── account-cancel.glif │ │ │ │ ├── account-cash-outline.glif │ │ │ │ ├── account-cash.glif │ │ │ │ ├── account-check-outline.glif │ │ │ │ ├── account-check.glif │ │ │ │ ├── account-child-circle.glif │ │ │ │ ├── account-child-outline.glif │ │ │ │ ├── account-child.glif │ │ │ │ ├── account-circle-outline.glif │ │ │ │ ├── account-circle.glif │ │ │ │ ├── account-clock-outline.glif │ │ │ │ ├── account-clock.glif │ │ │ │ ├── account-cog-outline.glif │ │ │ │ ├── account-cog.glif │ │ │ │ ├── account-convert-outline.glif │ │ │ │ ├── account-convert.glif │ │ │ │ ├── account-cowboy-hat-outline.glif │ │ │ │ ├── account-cowboy-hat.glif │ │ │ │ ├── account-details-outline.glif │ │ │ │ ├── account-details.glif │ │ │ │ ├── account-edit-outline.glif │ │ │ │ ├── account-edit.glif │ │ │ │ ├── account-eye-outline.glif │ │ │ │ ├── account-eye.glif │ │ │ │ ├── account-filter-outline.glif │ │ │ │ ├── account-filter.glif │ │ │ │ ├── account-group-outline.glif │ │ │ │ ├── account-group.glif │ │ │ │ ├── account-hard-hat-outline.glif │ │ │ │ ├── account-hard-hat.glif │ │ │ │ ├── account-heart-outline.glif │ │ │ │ ├── account-heart.glif │ │ │ │ ├── account-injury-outline.glif │ │ │ │ ├── account-injury.glif │ │ │ │ ├── account-key-outline.glif │ │ │ │ ├── account-key.glif │ │ │ │ ├── account-lock-open-outline.glif │ │ │ │ ├── account-lock-open.glif │ │ │ │ ├── account-lock-outline.glif │ │ │ │ ├── account-lock.glif │ │ │ │ ├── account-minus-outline.glif │ │ │ │ ├── account-minus.glif │ │ │ │ ├── account-multiple-check-outline.glif │ │ │ │ ├── account-multiple-check.glif │ │ │ │ ├── account-multiple-minus-outline.glif │ │ │ │ ├── account-multiple-minus.glif │ │ │ │ ├── account-multiple-outline.glif │ │ │ │ ├── account-multiple-plus-outline.glif │ │ │ │ ├── account-multiple-plus.glif │ │ │ │ ├── account-multiple-remove-outline.glif │ │ │ │ ├── account-multiple-remove.glif │ │ │ │ ├── account-multiple.glif │ │ │ │ ├── account-music-outline.glif │ │ │ │ ├── account-music.glif │ │ │ │ ├── account-network-outline.glif │ │ │ │ ├── account-network.glif │ │ │ │ ├── account-off-outline.glif │ │ │ │ ├── account-off.glif │ │ │ │ ├── account-outline.glif │ │ │ │ ├── account-plus-outline.glif │ │ │ │ ├── account-plus.glif │ │ │ │ ├── account-question-outline.glif │ │ │ │ ├── account-question.glif │ │ │ │ ├── account-reactivate-outline.glif │ │ │ │ ├── account-reactivate.glif │ │ │ │ ├── account-remove-outline.glif │ │ │ │ ├── account-remove.glif │ │ │ │ ├── account-school-outline.glif │ │ │ │ ├── account-school.glif │ │ │ │ ├── account-search-outline.glif │ │ │ │ ├── account-search.glif │ │ │ │ ├── account-settings-outline.glif │ │ │ │ ├── account-settings.glif │ │ │ │ ├── account-star-outline.glif │ │ │ │ ├── account-star.glif │ │ │ │ ├── account-supervisor-circle-outline.glif │ │ │ │ ├── account-supervisor-circle.glif │ │ │ │ ├── account-supervisor-outline.glif │ │ │ │ ├── account-supervisor.glif │ │ │ │ ├── account-switch-outline.glif │ │ │ │ ├── account-switch.glif │ │ │ │ ├── account-sync-outline.glif │ │ │ │ ├── account-sync.glif │ │ │ │ ├── account-tie-hat-outline.glif │ │ │ │ ├── account-tie-hat.glif │ │ │ │ ├── account-tie-outline.glif │ │ │ │ ├── account-tie-voice-off-outline.glif │ │ │ │ ├── account-tie-voice-off.glif │ │ │ │ ├── account-tie-voice-outline.glif │ │ │ │ ├── account-tie-voice.glif │ │ │ │ ├── account-tie-woman.glif │ │ │ │ ├── account-tie.glif │ │ │ │ ├── account-voice-off.glif │ │ │ │ ├── account-voice.glif │ │ │ │ ├── account-wrench-outline.glif │ │ │ │ ├── account-wrench.glif │ │ │ │ ├── account.glif │ │ │ │ ├── adjust.glif │ │ │ │ ├── advertisements-off.glif │ │ │ │ ├── advertisements.glif │ │ │ │ ├── air-conditioner.glif │ │ │ │ ├── air-filter.glif │ │ │ │ ├── air-horn.glif │ │ │ │ ├── air-humidifier-off.glif │ │ │ │ ├── air-humidifier.glif │ │ │ │ ├── air-purifier.glif │ │ │ │ ├── airbag.glif │ │ │ │ ├── airballoon-outline.glif │ │ │ │ ├── airballoon.glif │ │ │ │ ├── airplane-alert.glif │ │ │ │ ├── airplane-check.glif │ │ │ │ ├── airplane-clock.glif │ │ │ │ ├── airplane-cog.glif │ │ │ │ ├── airplane-edit.glif │ │ │ │ ├── airplane-landing.glif │ │ │ │ ├── airplane-marker.glif │ │ │ │ ├── airplane-minus.glif │ │ │ │ ├── airplane-off.glif │ │ │ │ ├── airplane-plus.glif │ │ │ │ ├── airplane-remove.glif │ │ │ │ ├── airplane-search.glif │ │ │ │ ├── airplane-settings.glif │ │ │ │ ├── airplane-takeoff.glif │ │ │ │ ├── airplane.glif │ │ │ │ ├── airport.glif │ │ │ │ ├── alarm-bell.glif │ │ │ │ ├── alarm-check.glif │ │ │ │ ├── alarm-light-off-outline.glif │ │ │ │ ├── alarm-light-off.glif │ │ │ │ ├── alarm-light-outline.glif │ │ │ │ ├── alarm-light.glif │ │ │ │ ├── alarm-multiple.glif │ │ │ │ ├── alarm-note-off.glif │ │ │ │ ├── alarm-note.glif │ │ │ │ ├── alarm-off.glif │ │ │ │ ├── alarm-panel-outline.glif │ │ │ │ ├── alarm-panel.glif │ │ │ │ ├── alarm-plus.glif │ │ │ │ ├── alarm-snooze.glif │ │ │ │ ├── alarm.glif │ │ │ │ ├── album.glif │ │ │ │ ├── alert-box-outline.glif │ │ │ │ ├── alert-box.glif │ │ │ │ ├── alert-circle-check-outline.glif │ │ │ │ ├── alert-circle-check.glif │ │ │ │ ├── alert-circle-outline.glif │ │ │ │ ├── alert-circle.glif │ │ │ │ ├── alert-decagram-outline.glif │ │ │ │ ├── alert-decagram.glif │ │ │ │ ├── alert-minus-outline.glif │ │ │ │ ├── alert-minus.glif │ │ │ │ ├── alert-octagon-outline.glif │ │ │ │ ├── alert-octagon.glif │ │ │ │ ├── alert-octagram-outline.glif │ │ │ │ ├── alert-octagram.glif │ │ │ │ ├── alert-outline.glif │ │ │ │ ├── alert-plus-outline.glif │ │ │ │ ├── alert-plus.glif │ │ │ │ ├── alert-remove-outline.glif │ │ │ │ ├── alert-remove.glif │ │ │ │ ├── alert-rhombus-outline.glif │ │ │ │ ├── alert-rhombus.glif │ │ │ │ ├── alert.glif │ │ │ │ ├── alien-outline.glif │ │ │ │ ├── alien.glif │ │ │ │ ├── align-horizontal-center.glif │ │ │ │ ├── align-horizontal-distribute.glif │ │ │ │ ├── align-horizontal-left.glif │ │ │ │ ├── align-horizontal-right.glif │ │ │ │ ├── align-vertical-bottom.glif │ │ │ │ ├── align-vertical-center.glif │ │ │ │ ├── align-vertical-distribute.glif │ │ │ │ ├── align-vertical-top.glif │ │ │ │ ├── all-inclusive-box-outline.glif │ │ │ │ ├── all-inclusive-box.glif │ │ │ │ ├── all-inclusive.glif │ │ │ │ ├── allergy.glif │ │ │ │ ├── alpha-a-box-outline.glif │ │ │ │ ├── alpha-a-box.glif │ │ │ │ ├── alpha-a-circle-outline.glif │ │ │ │ ├── alpha-a-circle.glif │ │ │ │ ├── alpha-a.glif │ │ │ │ ├── alpha-b-box-outline.glif │ │ │ │ ├── alpha-b-box.glif │ │ │ │ ├── alpha-b-circle-outline.glif │ │ │ │ ├── alpha-b-circle.glif │ │ │ │ ├── alpha-b.glif │ │ │ │ ├── alpha-c-box-outline.glif │ │ │ │ ├── alpha-c-box.glif │ │ │ │ ├── alpha-c-circle-outline.glif │ │ │ │ ├── alpha-c-circle.glif │ │ │ │ ├── alpha-c.glif │ │ │ │ ├── alpha-d-box-outline.glif │ │ │ │ ├── alpha-d-box.glif │ │ │ │ ├── alpha-d-circle-outline.glif │ │ │ │ ├── alpha-d-circle.glif │ │ │ │ ├── alpha-d.glif │ │ │ │ ├── alpha-e-box-outline.glif │ │ │ │ ├── alpha-e-box.glif │ │ │ │ ├── alpha-e-circle-outline.glif │ │ │ │ ├── alpha-e-circle.glif │ │ │ │ ├── alpha-e.glif │ │ │ │ ├── alpha-f-box-outline.glif │ │ │ │ ├── alpha-f-box.glif │ │ │ │ ├── alpha-f-circle-outline.glif │ │ │ │ ├── alpha-f-circle.glif │ │ │ │ ├── alpha-f.glif │ │ │ │ ├── alpha-g-box-outline.glif │ │ │ │ ├── alpha-g-box.glif │ │ │ │ ├── alpha-g-circle-outline.glif │ │ │ │ ├── alpha-g-circle.glif │ │ │ │ ├── alpha-g.glif │ │ │ │ ├── alpha-h-box-outline.glif │ │ │ │ ├── alpha-h-box.glif │ │ │ │ ├── alpha-h-circle-outline.glif │ │ │ │ ├── alpha-h-circle.glif │ │ │ │ ├── alpha-h.glif │ │ │ │ ├── alpha-i-box-outline.glif │ │ │ │ ├── alpha-i-box.glif │ │ │ │ ├── alpha-i-circle-outline.glif │ │ │ │ ├── alpha-i-circle.glif │ │ │ │ ├── alpha-i.glif │ │ │ │ ├── alpha-j-box-outline.glif │ │ │ │ ├── alpha-j-box.glif │ │ │ │ ├── alpha-j-circle-outline.glif │ │ │ │ ├── alpha-j-circle.glif │ │ │ │ ├── alpha-j.glif │ │ │ │ ├── alpha-k-box-outline.glif │ │ │ │ ├── alpha-k-box.glif │ │ │ │ ├── alpha-k-circle-outline.glif │ │ │ │ ├── alpha-k-circle.glif │ │ │ │ ├── alpha-k.glif │ │ │ │ ├── alpha-l-box-outline.glif │ │ │ │ ├── alpha-l-box.glif │ │ │ │ ├── alpha-l-circle-outline.glif │ │ │ │ ├── alpha-l-circle.glif │ │ │ │ ├── alpha-l.glif │ │ │ │ ├── alpha-m-box-outline.glif │ │ │ │ ├── alpha-m-box.glif │ │ │ │ ├── alpha-m-circle-outline.glif │ │ │ │ ├── alpha-m-circle.glif │ │ │ │ ├── alpha-m.glif │ │ │ │ ├── alpha-n-box-outline.glif │ │ │ │ ├── alpha-n-box.glif │ │ │ │ ├── alpha-n-circle-outline.glif │ │ │ │ ├── alpha-n-circle.glif │ │ │ │ ├── alpha-n.glif │ │ │ │ ├── alpha-o-box-outline.glif │ │ │ │ ├── alpha-o-box.glif │ │ │ │ ├── alpha-o-circle-outline.glif │ │ │ │ ├── alpha-o-circle.glif │ │ │ │ ├── alpha-o.glif │ │ │ │ ├── alpha-p-box-outline.glif │ │ │ │ ├── alpha-p-box.glif │ │ │ │ ├── alpha-p-circle-outline.glif │ │ │ │ ├── alpha-p-circle.glif │ │ │ │ ├── alpha-p.glif │ │ │ │ ├── alpha-q-box-outline.glif │ │ │ │ ├── alpha-q-box.glif │ │ │ │ ├── alpha-q-circle-outline.glif │ │ │ │ ├── alpha-q-circle.glif │ │ │ │ ├── alpha-q.glif │ │ │ │ ├── alpha-r-box-outline.glif │ │ │ │ ├── alpha-r-box.glif │ │ │ │ ├── alpha-r-circle-outline.glif │ │ │ │ ├── alpha-r-circle.glif │ │ │ │ ├── alpha-r.glif │ │ │ │ ├── alpha-s-box-outline.glif │ │ │ │ ├── alpha-s-box.glif │ │ │ │ ├── alpha-s-circle-outline.glif │ │ │ │ ├── alpha-s-circle.glif │ │ │ │ ├── alpha-s.glif │ │ │ │ ├── alpha-t-box-outline.glif │ │ │ │ ├── alpha-t-box.glif │ │ │ │ ├── alpha-t-circle-outline.glif │ │ │ │ ├── alpha-t-circle.glif │ │ │ │ ├── alpha-t.glif │ │ │ │ ├── alpha-u-box-outline.glif │ │ │ │ ├── alpha-u-box.glif │ │ │ │ ├── alpha-u-circle-outline.glif │ │ │ │ ├── alpha-u-circle.glif │ │ │ │ ├── alpha-u.glif │ │ │ │ ├── alpha-v-box-outline.glif │ │ │ │ ├── alpha-v-box.glif │ │ │ │ ├── alpha-v-circle-outline.glif │ │ │ │ ├── alpha-v-circle.glif │ │ │ │ ├── alpha-v.glif │ │ │ │ ├── alpha-w-box-outline.glif │ │ │ │ ├── alpha-w-box.glif │ │ │ │ ├── alpha-w-circle-outline.glif │ │ │ │ ├── alpha-w-circle.glif │ │ │ │ ├── alpha-w.glif │ │ │ │ ├── alpha-x-box-outline.glif │ │ │ │ ├── alpha-x-box.glif │ │ │ │ ├── alpha-x-circle-outline.glif │ │ │ │ ├── alpha-x-circle.glif │ │ │ │ ├── alpha-x.glif │ │ │ │ ├── alpha-y-box-outline.glif │ │ │ │ ├── alpha-y-box.glif │ │ │ │ ├── alpha-y-circle-outline.glif │ │ │ │ ├── alpha-y-circle.glif │ │ │ │ ├── alpha-y.glif │ │ │ │ ├── alpha-z-box-outline.glif │ │ │ │ ├── alpha-z-box.glif │ │ │ │ ├── alpha-z-circle-outline.glif │ │ │ │ ├── alpha-z-circle.glif │ │ │ │ ├── alpha-z.glif │ │ │ │ ├── alpha.glif │ │ │ │ ├── alphabet-aurebesh.glif │ │ │ │ ├── alphabet-cyrillic.glif │ │ │ │ ├── alphabet-greek.glif │ │ │ │ ├── alphabet-latin.glif │ │ │ │ ├── alphabet-piqad.glif │ │ │ │ ├── alphabet-tengwar.glif │ │ │ │ ├── alphabetical-off.glif │ │ │ │ ├── alphabetical-variant-off.glif │ │ │ │ ├── alphabetical-variant.glif │ │ │ │ ├── alphabetical.glif │ │ │ │ ├── altimeter.glif │ │ │ │ ├── ambulance.glif │ │ │ │ ├── ammunition.glif │ │ │ │ ├── ampersand.glif │ │ │ │ ├── amplifier-off.glif │ │ │ │ ├── amplifier.glif │ │ │ │ ├── anchor.glif │ │ │ │ ├── android-messages.glif │ │ │ │ ├── android-studio.glif │ │ │ │ ├── android.glif │ │ │ │ ├── angle-acute.glif │ │ │ │ ├── angle-obtuse.glif │ │ │ │ ├── angle-right.glif │ │ │ │ ├── angular.glif │ │ │ │ ├── angularjs.glif │ │ │ │ ├── animation-outline.glif │ │ │ │ ├── animation-play-outline.glif │ │ │ │ ├── animation-play.glif │ │ │ │ ├── animation.glif │ │ │ │ ├── ansible.glif │ │ │ │ ├── antenna.glif │ │ │ │ ├── anvil.glif │ │ │ │ ├── apache-kafka.glif │ │ │ │ ├── api-off.glif │ │ │ │ ├── api.glif │ │ │ │ ├── apple-finder.glif │ │ │ │ ├── apple-icloud.glif │ │ │ │ ├── apple-ios.glif │ │ │ │ ├── apple-keyboard-caps.glif │ │ │ │ ├── apple-keyboard-command.glif │ │ │ │ ├── apple-keyboard-control.glif │ │ │ │ ├── apple-keyboard-option.glif │ │ │ │ ├── apple-keyboard-shift.glif │ │ │ │ ├── apple-safari.glif │ │ │ │ ├── apple.glif │ │ │ │ ├── application-array-outline.glif │ │ │ │ ├── application-array.glif │ │ │ │ ├── application-braces-outline.glif │ │ │ │ ├── application-braces.glif │ │ │ │ ├── application-brackets-outline.glif │ │ │ │ ├── application-brackets.glif │ │ │ │ ├── application-cog-outline.glif │ │ │ │ ├── application-cog.glif │ │ │ │ ├── application-edit-outline.glif │ │ │ │ ├── application-edit.glif │ │ │ │ ├── application-export.glif │ │ │ │ ├── application-import.glif │ │ │ │ ├── application-outline.glif │ │ │ │ ├── application-parentheses-outline.glif │ │ │ │ ├── application-parentheses.glif │ │ │ │ ├── application-settings-outline.glif │ │ │ │ ├── application-settings.glif │ │ │ │ ├── application-variable-outline.glif │ │ │ │ ├── application-variable.glif │ │ │ │ ├── application.glif │ │ │ │ ├── approximately-equal-box.glif │ │ │ │ ├── approximately-equal.glif │ │ │ │ ├── apps-box.glif │ │ │ │ ├── apps.glif │ │ │ │ ├── arch.glif │ │ │ │ ├── archive-alert-outline.glif │ │ │ │ ├── archive-alert.glif │ │ │ │ ├── archive-arrow-down-outline.glif │ │ │ │ ├── archive-arrow-down.glif │ │ │ │ ├── archive-arrow-up-outline.glif │ │ │ │ ├── archive-arrow-up.glif │ │ │ │ ├── archive-cancel-outline.glif │ │ │ │ ├── archive-cancel.glif │ │ │ │ ├── archive-check-outline.glif │ │ │ │ ├── archive-check.glif │ │ │ │ ├── archive-clock-outline.glif │ │ │ │ ├── archive-clock.glif │ │ │ │ ├── archive-cog-outline.glif │ │ │ │ ├── archive-cog.glif │ │ │ │ ├── archive-edit-outline.glif │ │ │ │ ├── archive-edit.glif │ │ │ │ ├── archive-eye-outline.glif │ │ │ │ ├── archive-eye.glif │ │ │ │ ├── archive-lock-open-outline.glif │ │ │ │ ├── archive-lock-open.glif │ │ │ │ ├── archive-lock-outline.glif │ │ │ │ ├── archive-lock.glif │ │ │ │ ├── archive-marker-outline.glif │ │ │ │ ├── archive-marker.glif │ │ │ │ ├── archive-minus-outline.glif │ │ │ │ ├── archive-minus.glif │ │ │ │ ├── archive-music-outline.glif │ │ │ │ ├── archive-music.glif │ │ │ │ ├── archive-off-outline.glif │ │ │ │ ├── archive-off.glif │ │ │ │ ├── archive-outline.glif │ │ │ │ ├── archive-plus-outline.glif │ │ │ │ ├── archive-plus.glif │ │ │ │ ├── archive-refresh-outline.glif │ │ │ │ ├── archive-refresh.glif │ │ │ │ ├── archive-remove-outline.glif │ │ │ │ ├── archive-remove.glif │ │ │ │ ├── archive-search-outline.glif │ │ │ │ ├── archive-search.glif │ │ │ │ ├── archive-settings-outline.glif │ │ │ │ ├── archive-settings.glif │ │ │ │ ├── archive-star-outline.glif │ │ │ │ ├── archive-star.glif │ │ │ │ ├── archive-sync-outline.glif │ │ │ │ ├── archive-sync.glif │ │ │ │ ├── archive.glif │ │ │ │ ├── arm-flex-outline.glif │ │ │ │ ├── arm-flex.glif │ │ │ │ ├── arrange-bring-forward.glif │ │ │ │ ├── arrange-bring-to-front.glif │ │ │ │ ├── arrange-send-backward.glif │ │ │ │ ├── arrange-send-to-back.glif │ │ │ │ ├── arrow-all.glif │ │ │ │ ├── arrow-bottom-left-bold-box-outline.glif │ │ │ │ ├── arrow-bottom-left-bold-box.glif │ │ │ │ ├── arrow-bottom-left-bold-outline.glif │ │ │ │ ├── arrow-bottom-left-thick.glif │ │ │ │ ├── arrow-bottom-left-thin-circle-outline.glif │ │ │ │ ├── arrow-bottom-left-thin.glif │ │ │ │ ├── arrow-bottom-left.glif │ │ │ │ ├── arrow-bottom-right-bold-box-outline.glif │ │ │ │ ├── arrow-bottom-right-bold-box.glif │ │ │ │ ├── arrow-bottom-right-bold-outline.glif │ │ │ │ ├── arrow-bottom-right-thick.glif │ │ │ │ ├── arrow-bottom-right-thin-circle-outline.glif │ │ │ │ ├── arrow-bottom-right-thin.glif │ │ │ │ ├── arrow-bottom-right.glif │ │ │ │ ├── arrow-collapse-all.glif │ │ │ │ ├── arrow-collapse-down.glif │ │ │ │ ├── arrow-collapse-horizontal.glif │ │ │ │ ├── arrow-collapse-left.glif │ │ │ │ ├── arrow-collapse-right.glif │ │ │ │ ├── arrow-collapse-up.glif │ │ │ │ ├── arrow-collapse-vertical.glif │ │ │ │ ├── arrow-collapse.glif │ │ │ │ ├── arrow-decision-auto-outline.glif │ │ │ │ ├── arrow-decision-auto.glif │ │ │ │ ├── arrow-decision-outline.glif │ │ │ │ ├── arrow-decision.glif │ │ │ │ ├── arrow-down-bold-box-outline.glif │ │ │ │ ├── arrow-down-bold-box.glif │ │ │ │ ├── arrow-down-bold-circle-outline.glif │ │ │ │ ├── arrow-down-bold-circle.glif │ │ │ │ ├── arrow-down-bold-hexagon-outline.glif │ │ │ │ ├── arrow-down-bold-outline.glif │ │ │ │ ├── arrow-down-bold.glif │ │ │ │ ├── arrow-down-box.glif │ │ │ │ ├── arrow-down-circle-outline.glif │ │ │ │ ├── arrow-down-circle.glif │ │ │ │ ├── arrow-down-drop-circle-outline.glif │ │ │ │ ├── arrow-down-drop-circle.glif │ │ │ │ ├── arrow-down-left-bold.glif │ │ │ │ ├── arrow-down-left.glif │ │ │ │ ├── arrow-down-right-bold.glif │ │ │ │ ├── arrow-down-right.glif │ │ │ │ ├── arrow-down-thick.glif │ │ │ │ ├── arrow-down-thin-circle-outline.glif │ │ │ │ ├── arrow-down-thin.glif │ │ │ │ ├── arrow-down.glif │ │ │ │ ├── arrow-expand-all.glif │ │ │ │ ├── arrow-expand-down.glif │ │ │ │ ├── arrow-expand-horizontal.glif │ │ │ │ ├── arrow-expand-left.glif │ │ │ │ ├── arrow-expand-right.glif │ │ │ │ ├── arrow-expand-up.glif │ │ │ │ ├── arrow-expand-vertical.glif │ │ │ │ ├── arrow-expand.glif │ │ │ │ ├── arrow-horizontal-lock.glif │ │ │ │ ├── arrow-left-bold-box-outline.glif │ │ │ │ ├── arrow-left-bold-box.glif │ │ │ │ ├── arrow-left-bold-circle-outline.glif │ │ │ │ ├── arrow-left-bold-circle.glif │ │ │ │ ├── arrow-left-bold-hexagon-outline.glif │ │ │ │ ├── arrow-left-bold-outline.glif │ │ │ │ ├── arrow-left-bold.glif │ │ │ │ ├── arrow-left-bottom-bold.glif │ │ │ │ ├── arrow-left-bottom.glif │ │ │ │ ├── arrow-left-box.glif │ │ │ │ ├── arrow-left-circle-outline.glif │ │ │ │ ├── arrow-left-circle.glif │ │ │ │ ├── arrow-left-drop-circle-outline.glif │ │ │ │ ├── arrow-left-drop-circle.glif │ │ │ │ ├── arrow-left-right-bold-outline.glif │ │ │ │ ├── arrow-left-right-bold.glif │ │ │ │ ├── arrow-left-right.glif │ │ │ │ ├── arrow-left-thick.glif │ │ │ │ ├── arrow-left-thin-circle-outline.glif │ │ │ │ ├── arrow-left-thin.glif │ │ │ │ ├── arrow-left-top-bold.glif │ │ │ │ ├── arrow-left-top.glif │ │ │ │ ├── arrow-left.glif │ │ │ │ ├── arrow-projectile-multiple.glif │ │ │ │ ├── arrow-projectile.glif │ │ │ │ ├── arrow-right-bold-box-outline.glif │ │ │ │ ├── arrow-right-bold-box.glif │ │ │ │ ├── arrow-right-bold-circle-outline.glif │ │ │ │ ├── arrow-right-bold-circle.glif │ │ │ │ ├── arrow-right-bold-hexagon-outline.glif │ │ │ │ ├── arrow-right-bold-outline.glif │ │ │ │ ├── arrow-right-bold.glif │ │ │ │ ├── arrow-right-bottom-bold.glif │ │ │ │ ├── arrow-right-bottom.glif │ │ │ │ ├── arrow-right-box.glif │ │ │ │ ├── arrow-right-circle-outline.glif │ │ │ │ ├── arrow-right-circle.glif │ │ │ │ ├── arrow-right-drop-circle-outline.glif │ │ │ │ ├── arrow-right-drop-circle.glif │ │ │ │ ├── arrow-right-thick.glif │ │ │ │ ├── arrow-right-thin-circle-outline.glif │ │ │ │ ├── arrow-right-thin.glif │ │ │ │ ├── arrow-right-top-bold.glif │ │ │ │ ├── arrow-right-top.glif │ │ │ │ ├── arrow-right.glif │ │ │ │ ├── arrow-split-horizontal.glif │ │ │ │ ├── arrow-split-vertical.glif │ │ │ │ ├── arrow-top-left-bold-box-outline.glif │ │ │ │ ├── arrow-top-left-bold-box.glif │ │ │ │ ├── arrow-top-left-bold-outline.glif │ │ │ │ ├── arrow-top-left-bottom-right-bold.glif │ │ │ │ ├── arrow-top-left-bottom-right.glif │ │ │ │ ├── arrow-top-left-thick.glif │ │ │ │ ├── arrow-top-left-thin-circle-outline.glif │ │ │ │ ├── arrow-top-left-thin.glif │ │ │ │ ├── arrow-top-left.glif │ │ │ │ ├── arrow-top-right-bold-box-outline.glif │ │ │ │ ├── arrow-top-right-bold-box.glif │ │ │ │ ├── arrow-top-right-bold-outline.glif │ │ │ │ ├── arrow-top-right-bottom-left-bold.glif │ │ │ │ ├── arrow-top-right-bottom-left.glif │ │ │ │ ├── arrow-top-right-thick.glif │ │ │ │ ├── arrow-top-right-thin-circle-outline.glif │ │ │ │ ├── arrow-top-right-thin.glif │ │ │ │ ├── arrow-top-right.glif │ │ │ │ ├── arrow-u-down-left-bold.glif │ │ │ │ ├── arrow-u-down-left.glif │ │ │ │ ├── arrow-u-down-right-bold.glif │ │ │ │ ├── arrow-u-down-right.glif │ │ │ │ ├── arrow-u-left-bottom-bold.glif │ │ │ │ ├── arrow-u-left-bottom.glif │ │ │ │ ├── arrow-u-left-top-bold.glif │ │ │ │ ├── arrow-u-left-top.glif │ │ │ │ ├── arrow-u-right-bottom-bold.glif │ │ │ │ ├── arrow-u-right-bottom.glif │ │ │ │ ├── arrow-u-right-top-bold.glif │ │ │ │ ├── arrow-u-right-top.glif │ │ │ │ ├── arrow-u-up-left-bold.glif │ │ │ │ ├── arrow-u-up-left.glif │ │ │ │ ├── arrow-u-up-right-bold.glif │ │ │ │ ├── arrow-u-up-right.glif │ │ │ │ ├── arrow-up-bold-box-outline.glif │ │ │ │ ├── arrow-up-bold-box.glif │ │ │ │ ├── arrow-up-bold-circle-outline.glif │ │ │ │ ├── arrow-up-bold-circle.glif │ │ │ │ ├── arrow-up-bold-hexagon-outline.glif │ │ │ │ ├── arrow-up-bold-outline.glif │ │ │ │ ├── arrow-up-bold.glif │ │ │ │ ├── arrow-up-box.glif │ │ │ │ ├── arrow-up-circle-outline.glif │ │ │ │ ├── arrow-up-circle.glif │ │ │ │ ├── arrow-up-down-bold-outline.glif │ │ │ │ ├── arrow-up-down-bold.glif │ │ │ │ ├── arrow-up-down.glif │ │ │ │ ├── arrow-up-drop-circle-outline.glif │ │ │ │ ├── arrow-up-drop-circle.glif │ │ │ │ ├── arrow-up-left-bold.glif │ │ │ │ ├── arrow-up-left.glif │ │ │ │ ├── arrow-up-right-bold.glif │ │ │ │ ├── arrow-up-right.glif │ │ │ │ ├── arrow-up-thick.glif │ │ │ │ ├── arrow-up-thin-circle-outline.glif │ │ │ │ ├── arrow-up-thin.glif │ │ │ │ ├── arrow-up.glif │ │ │ │ ├── arrow-vertical-lock.glif │ │ │ │ ├── artstation.glif │ │ │ │ ├── aspect-ratio.glif │ │ │ │ ├── assistant.glif │ │ │ │ ├── asterisk-circle-outline.glif │ │ │ │ ├── asterisk.glif │ │ │ │ ├── at.glif │ │ │ │ ├── atlassian.glif │ │ │ │ ├── atm.glif │ │ │ │ ├── atom-variant.glif │ │ │ │ ├── atom.glif │ │ │ │ ├── attachment-check.glif │ │ │ │ ├── attachment-lock.glif │ │ │ │ ├── attachment-minus.glif │ │ │ │ ├── attachment-off.glif │ │ │ │ ├── attachment-plus.glif │ │ │ │ ├── attachment-remove.glif │ │ │ │ ├── attachment.glif │ │ │ │ ├── audio-input-rca.glif │ │ │ │ ├── audio-input-stereo-minijack.glif │ │ │ │ ├── audio-input-xlr.glif │ │ │ │ ├── audio-video-off.glif │ │ │ │ ├── audio-video.glif │ │ │ │ ├── augmented-reality.glif │ │ │ │ ├── auto-download.glif │ │ │ │ ├── auto-fix.glif │ │ │ │ ├── auto-upload.glif │ │ │ │ ├── autorenew-off.glif │ │ │ │ ├── autorenew.glif │ │ │ │ ├── av-timer.glif │ │ │ │ ├── aws.glif │ │ │ │ ├── axe-battle.glif │ │ │ │ ├── axe.glif │ │ │ │ ├── axis-arrow-info.glif │ │ │ │ ├── axis-arrow-lock.glif │ │ │ │ ├── axis-arrow.glif │ │ │ │ ├── axis-lock.glif │ │ │ │ ├── axis-x-arrow-lock.glif │ │ │ │ ├── axis-x-arrow.glif │ │ │ │ ├── axis-x-rotate-clockwise.glif │ │ │ │ ├── axis-x-rotate-counterclockwise.glif │ │ │ │ ├── axis-x-y-arrow-lock.glif │ │ │ │ ├── axis-y-arrow-lock.glif │ │ │ │ ├── axis-y-arrow.glif │ │ │ │ ├── axis-y-rotate-clockwise.glif │ │ │ │ ├── axis-y-rotate-counterclockwise.glif │ │ │ │ ├── axis-z-arrow-lock.glif │ │ │ │ ├── axis-z-arrow.glif │ │ │ │ ├── axis-z-rotate-clockwise.glif │ │ │ │ ├── axis-z-rotate-counterclockwise.glif │ │ │ │ ├── axis.glif │ │ │ │ ├── babel.glif │ │ │ │ ├── baby-bottle-outline.glif │ │ │ │ ├── baby-bottle.glif │ │ │ │ ├── baby-buggy.glif │ │ │ │ ├── baby-carriage-off.glif │ │ │ │ ├── baby-carriage.glif │ │ │ │ ├── baby-face-outline.glif │ │ │ │ ├── baby-face.glif │ │ │ │ ├── baby.glif │ │ │ │ ├── backburger.glif │ │ │ │ ├── backspace-outline.glif │ │ │ │ ├── backspace-reverse-outline.glif │ │ │ │ ├── backspace-reverse.glif │ │ │ │ ├── backspace.glif │ │ │ │ ├── backup-restore.glif │ │ │ │ ├── bacteria-outline.glif │ │ │ │ ├── bacteria.glif │ │ │ │ ├── badge-account-alert-outline.glif │ │ │ │ ├── badge-account-alert.glif │ │ │ │ ├── badge-account-horizontal-outline.glif │ │ │ │ ├── badge-account-horizontal.glif │ │ │ │ ├── badge-account-outline.glif │ │ │ │ ├── badge-account.glif │ │ │ │ ├── badminton.glif │ │ │ │ ├── bag-carry-on-check.glif │ │ │ │ ├── bag-carry-on-off.glif │ │ │ │ ├── bag-carry-on.glif │ │ │ │ ├── bag-checked.glif │ │ │ │ ├── bag-personal-off-outline.glif │ │ │ │ ├── bag-personal-off.glif │ │ │ │ ├── bag-personal-outline.glif │ │ │ │ ├── bag-personal.glif │ │ │ │ ├── bag-suitcase-off-outline.glif │ │ │ │ ├── bag-suitcase-off.glif │ │ │ │ ├── bag-suitcase-outline.glif │ │ │ │ ├── bag-suitcase.glif │ │ │ │ ├── baguette.glif │ │ │ │ ├── balcony.glif │ │ │ │ ├── balloon.glif │ │ │ │ ├── ballot-outline.glif │ │ │ │ ├── ballot-recount-outline.glif │ │ │ │ ├── ballot-recount.glif │ │ │ │ ├── ballot.glif │ │ │ │ ├── bandage.glif │ │ │ │ ├── bank-check.glif │ │ │ │ ├── bank-minus.glif │ │ │ │ ├── bank-off-outline.glif │ │ │ │ ├── bank-off.glif │ │ │ │ ├── bank-outline.glif │ │ │ │ ├── bank-plus.glif │ │ │ │ ├── bank-remove.glif │ │ │ │ ├── bank-transfer-in.glif │ │ │ │ ├── bank-transfer-out.glif │ │ │ │ ├── bank-transfer.glif │ │ │ │ ├── bank.glif │ │ │ │ ├── barcode-off.glif │ │ │ │ ├── barcode-scan.glif │ │ │ │ ├── barcode.glif │ │ │ │ ├── barley-off.glif │ │ │ │ ├── barley.glif │ │ │ │ ├── barn.glif │ │ │ │ ├── barrel-outline.glif │ │ │ │ ├── barrel.glif │ │ │ │ ├── baseball-bat.glif │ │ │ │ ├── baseball-diamond-outline.glif │ │ │ │ ├── baseball-diamond.glif │ │ │ │ ├── baseball.glif │ │ │ │ ├── bash.glif │ │ │ │ ├── basket-check-outline.glif │ │ │ │ ├── basket-check.glif │ │ │ │ ├── basket-fill.glif │ │ │ │ ├── basket-minus-outline.glif │ │ │ │ ├── basket-minus.glif │ │ │ │ ├── basket-off-outline.glif │ │ │ │ ├── basket-off.glif │ │ │ │ ├── basket-outline.glif │ │ │ │ ├── basket-plus-outline.glif │ │ │ │ ├── basket-plus.glif │ │ │ │ ├── basket-remove-outline.glif │ │ │ │ ├── basket-remove.glif │ │ │ │ ├── basket-unfill.glif │ │ │ │ ├── basket.glif │ │ │ │ ├── basketball-hoop-outline.glif │ │ │ │ ├── basketball-hoop.glif │ │ │ │ ├── basketball.glif │ │ │ │ ├── bat.glif │ │ │ │ ├── bathtub-outline.glif │ │ │ │ ├── bathtub.glif │ │ │ │ ├── battery-10-bluetooth.glif │ │ │ │ ├── battery-10.glif │ │ │ │ ├── battery-20-bluetooth.glif │ │ │ │ ├── battery-20.glif │ │ │ │ ├── battery-30-bluetooth.glif │ │ │ │ ├── battery-30.glif │ │ │ │ ├── battery-40-bluetooth.glif │ │ │ │ ├── battery-40.glif │ │ │ │ ├── battery-50-bluetooth.glif │ │ │ │ ├── battery-50.glif │ │ │ │ ├── battery-60-bluetooth.glif │ │ │ │ ├── battery-60.glif │ │ │ │ ├── battery-70-bluetooth.glif │ │ │ │ ├── battery-70.glif │ │ │ │ ├── battery-80-bluetooth.glif │ │ │ │ ├── battery-80.glif │ │ │ │ ├── battery-90-bluetooth.glif │ │ │ │ ├── battery-90.glif │ │ │ │ ├── battery-alert-bluetooth.glif │ │ │ │ ├── battery-alert-variant-outline.glif │ │ │ │ ├── battery-alert-variant.glif │ │ │ │ ├── battery-alert.glif │ │ │ │ ├── battery-arrow-down-outline.glif │ │ │ │ ├── battery-arrow-down.glif │ │ │ │ ├── battery-arrow-up-outline.glif │ │ │ │ ├── battery-arrow-up.glif │ │ │ │ ├── battery-bluetooth-variant.glif │ │ │ │ ├── battery-bluetooth.glif │ │ │ │ ├── battery-charging-10.glif │ │ │ │ ├── battery-charging-100.glif │ │ │ │ ├── battery-charging-20.glif │ │ │ │ ├── battery-charging-30.glif │ │ │ │ ├── battery-charging-40.glif │ │ │ │ ├── battery-charging-50.glif │ │ │ │ ├── battery-charging-60.glif │ │ │ │ ├── battery-charging-70.glif │ │ │ │ ├── battery-charging-80.glif │ │ │ │ ├── battery-charging-90.glif │ │ │ │ ├── battery-charging-high.glif │ │ │ │ ├── battery-charging-low.glif │ │ │ │ ├── battery-charging-medium.glif │ │ │ │ ├── battery-charging-outline.glif │ │ │ │ ├── battery-charging-wireless-10.glif │ │ │ │ ├── battery-charging-wireless-20.glif │ │ │ │ ├── battery-charging-wireless-30.glif │ │ │ │ ├── battery-charging-wireless-40.glif │ │ │ │ ├── battery-charging-wireless-50.glif │ │ │ │ ├── battery-charging-wireless-60.glif │ │ │ │ ├── battery-charging-wireless-70.glif │ │ │ │ ├── battery-charging-wireless-80.glif │ │ │ │ ├── battery-charging-wireless-90.glif │ │ │ │ ├── battery-charging-wireless-alert.glif │ │ │ │ ├── battery-charging-wireless-outline.glif │ │ │ │ ├── battery-charging-wireless.glif │ │ │ │ ├── battery-charging.glif │ │ │ │ ├── battery-check-outline.glif │ │ │ │ ├── battery-check.glif │ │ │ │ ├── battery-clock-outline.glif │ │ │ │ ├── battery-clock.glif │ │ │ │ ├── battery-heart-outline.glif │ │ │ │ ├── battery-heart-variant.glif │ │ │ │ ├── battery-heart.glif │ │ │ │ ├── battery-high.glif │ │ │ │ ├── battery-lock-open.glif │ │ │ │ ├── battery-lock.glif │ │ │ │ ├── battery-low.glif │ │ │ │ ├── battery-medium.glif │ │ │ │ ├── battery-minus-outline.glif │ │ │ │ ├── battery-minus-variant.glif │ │ │ │ ├── battery-minus.glif │ │ │ │ ├── battery-negative.glif │ │ │ │ ├── battery-off-outline.glif │ │ │ │ ├── battery-off.glif │ │ │ │ ├── battery-outline.glif │ │ │ │ ├── battery-plus-outline.glif │ │ │ │ ├── battery-plus-variant.glif │ │ │ │ ├── battery-plus.glif │ │ │ │ ├── battery-positive.glif │ │ │ │ ├── battery-remove-outline.glif │ │ │ │ ├── battery-remove.glif │ │ │ │ ├── battery-sync-outline.glif │ │ │ │ ├── battery-sync.glif │ │ │ │ ├── battery-unknown-bluetooth.glif │ │ │ │ ├── battery-unknown.glif │ │ │ │ ├── battery.glif │ │ │ │ ├── beach.glif │ │ │ │ ├── beaker-alert-outline.glif │ │ │ │ ├── beaker-alert.glif │ │ │ │ ├── beaker-check-outline.glif │ │ │ │ ├── beaker-check.glif │ │ │ │ ├── beaker-minus-outline.glif │ │ │ │ ├── beaker-minus.glif │ │ │ │ ├── beaker-outline.glif │ │ │ │ ├── beaker-plus-outline.glif │ │ │ │ ├── beaker-plus.glif │ │ │ │ ├── beaker-question-outline.glif │ │ │ │ ├── beaker-question.glif │ │ │ │ ├── beaker-remove-outline.glif │ │ │ │ ├── beaker-remove.glif │ │ │ │ ├── beaker.glif │ │ │ │ ├── bed-double-outline.glif │ │ │ │ ├── bed-double.glif │ │ │ │ ├── bed-empty.glif │ │ │ │ ├── bed-king-outline.glif │ │ │ │ ├── bed-king.glif │ │ │ │ ├── bed-outline.glif │ │ │ │ ├── bed-queen-outline.glif │ │ │ │ ├── bed-queen.glif │ │ │ │ ├── bed-single-outline.glif │ │ │ │ ├── bed-single.glif │ │ │ │ ├── bed.glif │ │ │ │ ├── bee-flower.glif │ │ │ │ ├── bee.glif │ │ │ │ ├── beehive-off-outline.glif │ │ │ │ ├── beehive-outline.glif │ │ │ │ ├── beekeeper.glif │ │ │ │ ├── beer-outline.glif │ │ │ │ ├── beer.glif │ │ │ │ ├── bell-alert-outline.glif │ │ │ │ ├── bell-alert.glif │ │ │ │ ├── bell-badge-outline.glif │ │ │ │ ├── bell-badge.glif │ │ │ │ ├── bell-cancel-outline.glif │ │ │ │ ├── bell-cancel.glif │ │ │ │ ├── bell-check-outline.glif │ │ │ │ ├── bell-check.glif │ │ │ │ ├── bell-circle-outline.glif │ │ │ │ ├── bell-circle.glif │ │ │ │ ├── bell-cog-outline.glif │ │ │ │ ├── bell-cog.glif │ │ │ │ ├── bell-minus-outline.glif │ │ │ │ ├── bell-minus.glif │ │ │ │ ├── bell-off-outline.glif │ │ │ │ ├── bell-off.glif │ │ │ │ ├── bell-outline.glif │ │ │ │ ├── bell-plus-outline.glif │ │ │ │ ├── bell-plus.glif │ │ │ │ ├── bell-remove-outline.glif │ │ │ │ ├── bell-remove.glif │ │ │ │ ├── bell-ring-outline.glif │ │ │ │ ├── bell-ring.glif │ │ │ │ ├── bell-sleep-outline.glif │ │ │ │ ├── bell-sleep.glif │ │ │ │ ├── bell.glif │ │ │ │ ├── beta.glif │ │ │ │ ├── betamax.glif │ │ │ │ ├── biathlon.glif │ │ │ │ ├── bicycle-basket.glif │ │ │ │ ├── bicycle-cargo.glif │ │ │ │ ├── bicycle-electric.glif │ │ │ │ ├── bicycle-penny-farthing.glif │ │ │ │ ├── bicycle.glif │ │ │ │ ├── bike-fast.glif │ │ │ │ ├── bike.glif │ │ │ │ ├── billboard.glif │ │ │ │ ├── billiards-rack.glif │ │ │ │ ├── billiards.glif │ │ │ │ ├── binoculars.glif │ │ │ │ ├── bio.glif │ │ │ │ ├── biohazard.glif │ │ │ │ ├── bird.glif │ │ │ │ ├── bitbucket.glif │ │ │ │ ├── bitcoin.glif │ │ │ │ ├── black-mesa.glif │ │ │ │ ├── blender-outline.glif │ │ │ │ ├── blender-software.glif │ │ │ │ ├── blender.glif │ │ │ │ ├── blinds-horizontal-closed.glif │ │ │ │ ├── blinds-horizontal.glif │ │ │ │ ├── blinds-open.glif │ │ │ │ ├── blinds-vertical-closed.glif │ │ │ │ ├── blinds-vertical.glif │ │ │ │ ├── blinds.glif │ │ │ │ ├── block-helper.glif │ │ │ │ ├── blood-bag.glif │ │ │ │ ├── bluetooth-audio.glif │ │ │ │ ├── bluetooth-connect.glif │ │ │ │ ├── bluetooth-off.glif │ │ │ │ ├── bluetooth-settings.glif │ │ │ │ ├── bluetooth-transfer.glif │ │ │ │ ├── bluetooth.glif │ │ │ │ ├── blur-linear.glif │ │ │ │ ├── blur-off.glif │ │ │ │ ├── blur-radial.glif │ │ │ │ ├── blur.glif │ │ │ │ ├── bolt.glif │ │ │ │ ├── bomb-off.glif │ │ │ │ ├── bomb.glif │ │ │ │ ├── bone-off.glif │ │ │ │ ├── bone.glif │ │ │ │ ├── book-account-outline.glif │ │ │ │ ├── book-account.glif │ │ │ │ ├── book-alert-outline.glif │ │ │ │ ├── book-alert.glif │ │ │ │ ├── book-alphabet.glif │ │ │ │ ├── book-arrow-down-outline.glif │ │ │ │ ├── book-arrow-down.glif │ │ │ │ ├── book-arrow-left-outline.glif │ │ │ │ ├── book-arrow-left.glif │ │ │ │ ├── book-arrow-right-outline.glif │ │ │ │ ├── book-arrow-right.glif │ │ │ │ ├── book-arrow-up-outline.glif │ │ │ │ ├── book-arrow-up.glif │ │ │ │ ├── book-cancel-outline.glif │ │ │ │ ├── book-cancel.glif │ │ │ │ ├── book-check-outline.glif │ │ │ │ ├── book-check.glif │ │ │ │ ├── book-clock-outline.glif │ │ │ │ ├── book-clock.glif │ │ │ │ ├── book-cog-outline.glif │ │ │ │ ├── book-cog.glif │ │ │ │ ├── book-cross.glif │ │ │ │ ├── book-edit-outline.glif │ │ │ │ ├── book-edit.glif │ │ │ │ ├── book-education-outline.glif │ │ │ │ ├── book-education.glif │ │ │ │ ├── book-heart-outline.glif │ │ │ │ ├── book-heart.glif │ │ │ │ ├── book-information-variant.glif │ │ │ │ ├── book-lock-open-outline.glif │ │ │ │ ├── book-lock-open.glif │ │ │ │ ├── book-lock-outline.glif │ │ │ │ ├── book-lock.glif │ │ │ │ ├── book-marker-outline.glif │ │ │ │ ├── book-marker.glif │ │ │ │ ├── book-minus-multiple-outline.glif │ │ │ │ ├── book-minus-multiple.glif │ │ │ │ ├── book-minus-outline.glif │ │ │ │ ├── book-minus.glif │ │ │ │ ├── book-multiple-outline.glif │ │ │ │ ├── book-multiple.glif │ │ │ │ ├── book-music-outline.glif │ │ │ │ ├── book-music.glif │ │ │ │ ├── book-off-outline.glif │ │ │ │ ├── book-off.glif │ │ │ │ ├── book-open-blank-variant.glif │ │ │ │ ├── book-open-outline.glif │ │ │ │ ├── book-open-page-variant-outline.glif │ │ │ │ ├── book-open-page-variant.glif │ │ │ │ ├── book-open-variant.glif │ │ │ │ ├── book-open.glif │ │ │ │ ├── book-outline.glif │ │ │ │ ├── book-play-outline.glif │ │ │ │ ├── book-play.glif │ │ │ │ ├── book-plus-multiple-outline.glif │ │ │ │ ├── book-plus-multiple.glif │ │ │ │ ├── book-plus-outline.glif │ │ │ │ ├── book-plus.glif │ │ │ │ ├── book-refresh-outline.glif │ │ │ │ ├── book-refresh.glif │ │ │ │ ├── book-remove-multiple-outline.glif │ │ │ │ ├── book-remove-multiple.glif │ │ │ │ ├── book-remove-outline.glif │ │ │ │ ├── book-remove.glif │ │ │ │ ├── book-search-outline.glif │ │ │ │ ├── book-search.glif │ │ │ │ ├── book-settings-outline.glif │ │ │ │ ├── book-settings.glif │ │ │ │ ├── book-sync-outline.glif │ │ │ │ ├── book-sync.glif │ │ │ │ ├── book-variant-multiple.glif │ │ │ │ ├── book-variant.glif │ │ │ │ ├── book.glif │ │ │ │ ├── bookmark-box-multiple-outline.glif │ │ │ │ ├── bookmark-box-multiple.glif │ │ │ │ ├── bookmark-check-outline.glif │ │ │ │ ├── bookmark-check.glif │ │ │ │ ├── bookmark-minus-outline.glif │ │ │ │ ├── bookmark-minus.glif │ │ │ │ ├── bookmark-multiple-outline.glif │ │ │ │ ├── bookmark-multiple.glif │ │ │ │ ├── bookmark-music-outline.glif │ │ │ │ ├── bookmark-music.glif │ │ │ │ ├── bookmark-off-outline.glif │ │ │ │ ├── bookmark-off.glif │ │ │ │ ├── bookmark-outline.glif │ │ │ │ ├── bookmark-plus-outline.glif │ │ │ │ ├── bookmark-plus.glif │ │ │ │ ├── bookmark-remove-outline.glif │ │ │ │ ├── bookmark-remove.glif │ │ │ │ ├── bookmark.glif │ │ │ │ ├── bookshelf.glif │ │ │ │ ├── boom-gate-alert-outline.glif │ │ │ │ ├── boom-gate-alert.glif │ │ │ │ ├── boom-gate-arrow-down-outline.glif │ │ │ │ ├── boom-gate-arrow-down.glif │ │ │ │ ├── boom-gate-arrow-up-outline.glif │ │ │ │ ├── boom-gate-arrow-up.glif │ │ │ │ ├── boom-gate-outline.glif │ │ │ │ ├── boom-gate-up-outline.glif │ │ │ │ ├── boom-gate-up.glif │ │ │ │ ├── boom-gate.glif │ │ │ │ ├── boombox.glif │ │ │ │ ├── boomerang.glif │ │ │ │ ├── bootstrap.glif │ │ │ │ ├── border-all-variant.glif │ │ │ │ ├── border-all.glif │ │ │ │ ├── border-bottom-variant.glif │ │ │ │ ├── border-bottom.glif │ │ │ │ ├── border-color.glif │ │ │ │ ├── border-horizontal.glif │ │ │ │ ├── border-inside.glif │ │ │ │ ├── border-left-variant.glif │ │ │ │ ├── border-left.glif │ │ │ │ ├── border-none-variant.glif │ │ │ │ ├── border-none.glif │ │ │ │ ├── border-outside.glif │ │ │ │ ├── border-right-variant.glif │ │ │ │ ├── border-right.glif │ │ │ │ ├── border-style.glif │ │ │ │ ├── border-top-variant.glif │ │ │ │ ├── border-top.glif │ │ │ │ ├── border-vertical.glif │ │ │ │ ├── bottle-soda-classic-outline.glif │ │ │ │ ├── bottle-soda-classic.glif │ │ │ │ ├── bottle-soda-outline.glif │ │ │ │ ├── bottle-soda.glif │ │ │ │ ├── bottle-tonic-outline.glif │ │ │ │ ├── bottle-tonic-plus-outline.glif │ │ │ │ ├── bottle-tonic-plus.glif │ │ │ │ ├── bottle-tonic-skull-outline.glif │ │ │ │ ├── bottle-tonic-skull.glif │ │ │ │ ├── bottle-tonic.glif │ │ │ │ ├── bottle-wine-outline.glif │ │ │ │ ├── bottle-wine.glif │ │ │ │ ├── bow-arrow.glif │ │ │ │ ├── bow-tie.glif │ │ │ │ ├── bowl-mix-outline.glif │ │ │ │ ├── bowl-mix.glif │ │ │ │ ├── bowl-outline.glif │ │ │ │ ├── bowl.glif │ │ │ │ ├── bowling.glif │ │ │ │ ├── box-cutter-off.glif │ │ │ │ ├── box-cutter.glif │ │ │ │ ├── box-shadow.glif │ │ │ │ ├── box.glif │ │ │ │ ├── boxing-glove.glif │ │ │ │ ├── braille.glif │ │ │ │ ├── brain.glif │ │ │ │ ├── bread-slice-outline.glif │ │ │ │ ├── bread-slice.glif │ │ │ │ ├── bridge.glif │ │ │ │ ├── briefcase-account-outline.glif │ │ │ │ ├── briefcase-account.glif │ │ │ │ ├── briefcase-arrow-left-right-outline.glif │ │ │ │ ├── briefcase-arrow-left-right.glif │ │ │ │ ├── briefcase-arrow-up-down-outline.glif │ │ │ │ ├── briefcase-arrow-up-down.glif │ │ │ │ ├── briefcase-check-outline.glif │ │ │ │ ├── briefcase-check.glif │ │ │ │ ├── briefcase-clock-outline.glif │ │ │ │ ├── briefcase-clock.glif │ │ │ │ ├── briefcase-download-outline.glif │ │ │ │ ├── briefcase-download.glif │ │ │ │ ├── briefcase-edit-outline.glif │ │ │ │ ├── briefcase-edit.glif │ │ │ │ ├── briefcase-eye-outline.glif │ │ │ │ ├── briefcase-eye.glif │ │ │ │ ├── briefcase-minus-outline.glif │ │ │ │ ├── briefcase-minus.glif │ │ │ │ ├── briefcase-off-outline.glif │ │ │ │ ├── briefcase-off.glif │ │ │ │ ├── briefcase-outline.glif │ │ │ │ ├── briefcase-plus-outline.glif │ │ │ │ ├── briefcase-plus.glif │ │ │ │ ├── briefcase-remove-outline.glif │ │ │ │ ├── briefcase-remove.glif │ │ │ │ ├── briefcase-search-outline.glif │ │ │ │ ├── briefcase-search.glif │ │ │ │ ├── briefcase-upload-outline.glif │ │ │ │ ├── briefcase-upload.glif │ │ │ │ ├── briefcase-variant-off-outline.glif │ │ │ │ ├── briefcase-variant-off.glif │ │ │ │ ├── briefcase-variant-outline.glif │ │ │ │ ├── briefcase-variant.glif │ │ │ │ ├── briefcase.glif │ │ │ │ ├── brightness-1.glif │ │ │ │ ├── brightness-2.glif │ │ │ │ ├── brightness-3.glif │ │ │ │ ├── brightness-4.glif │ │ │ │ ├── brightness-5.glif │ │ │ │ ├── brightness-6.glif │ │ │ │ ├── brightness-7.glif │ │ │ │ ├── brightness-auto.glif │ │ │ │ ├── brightness-percent.glif │ │ │ │ ├── broadcast-off.glif │ │ │ │ ├── broadcast.glif │ │ │ │ ├── broom.glif │ │ │ │ ├── brush-off.glif │ │ │ │ ├── brush-outline.glif │ │ │ │ ├── brush-variant.glif │ │ │ │ ├── brush.glif │ │ │ │ ├── bucket-outline.glif │ │ │ │ ├── bucket.glif │ │ │ │ ├── buffet.glif │ │ │ │ ├── bug-check-outline.glif │ │ │ │ ├── bug-check.glif │ │ │ │ ├── bug-outline.glif │ │ │ │ ├── bug.glif │ │ │ │ ├── bugle.glif │ │ │ │ ├── bulkhead-light.glif │ │ │ │ ├── bulldozer.glif │ │ │ │ ├── bullet.glif │ │ │ │ ├── bulletin-board.glif │ │ │ │ ├── bullhorn-outline.glif │ │ │ │ ├── bullhorn-variant-outline.glif │ │ │ │ ├── bullhorn-variant.glif │ │ │ │ ├── bullhorn.glif │ │ │ │ ├── bullseye-arrow.glif │ │ │ │ ├── bullseye.glif │ │ │ │ ├── bulma.glif │ │ │ │ ├── bunk-bed-outline.glif │ │ │ │ ├── bunk-bed.glif │ │ │ │ ├── bus-alert.glif │ │ │ │ ├── bus-articulated-end.glif │ │ │ │ ├── bus-articulated-front.glif │ │ │ │ ├── bus-clock.glif │ │ │ │ ├── bus-double-decker.glif │ │ │ │ ├── bus-electric.glif │ │ │ │ ├── bus-marker.glif │ │ │ │ ├── bus-multiple.glif │ │ │ │ ├── bus-school.glif │ │ │ │ ├── bus-side.glif │ │ │ │ ├── bus-stop-covered.glif │ │ │ │ ├── bus-stop-uncovered.glif │ │ │ │ ├── bus-stop.glif │ │ │ │ ├── bus.glif │ │ │ │ ├── butterfly-outline.glif │ │ │ │ ├── butterfly.glif │ │ │ │ ├── cabin-a-frame.glif │ │ │ │ ├── cable-data.glif │ │ │ │ ├── cached.glif │ │ │ │ ├── cactus.glif │ │ │ │ ├── cake-layered.glif │ │ │ │ ├── cake-variant-outline.glif │ │ │ │ ├── cake-variant.glif │ │ │ │ ├── cake.glif │ │ │ │ ├── calculator-variant-outline.glif │ │ │ │ ├── calculator-variant.glif │ │ │ │ ├── calculator.glif │ │ │ │ ├── calendar-account-outline.glif │ │ │ │ ├── calendar-account.glif │ │ │ │ ├── calendar-alert.glif │ │ │ │ ├── calendar-arrow-left.glif │ │ │ │ ├── calendar-arrow-right.glif │ │ │ │ ├── calendar-blank-multiple.glif │ │ │ │ ├── calendar-blank-outline.glif │ │ │ │ ├── calendar-blank.glif │ │ │ │ ├── calendar-check-outline.glif │ │ │ │ ├── calendar-check.glif │ │ │ │ ├── calendar-clock-outline.glif │ │ │ │ ├── calendar-clock.glif │ │ │ │ ├── calendar-collapse-horizontal.glif │ │ │ │ ├── calendar-cursor.glif │ │ │ │ ├── calendar-edit.glif │ │ │ │ ├── calendar-end.glif │ │ │ │ ├── calendar-expand-horizontal.glif │ │ │ │ ├── calendar-export.glif │ │ │ │ ├── calendar-heart.glif │ │ │ │ ├── calendar-import.glif │ │ │ │ ├── calendar-lock-outline.glif │ │ │ │ ├── calendar-lock.glif │ │ │ │ ├── calendar-minus.glif │ │ │ │ ├── calendar-month-outline.glif │ │ │ │ ├── calendar-month.glif │ │ │ │ ├── calendar-multiple-check.glif │ │ │ │ ├── calendar-multiple.glif │ │ │ │ ├── calendar-multiselect.glif │ │ │ │ ├── calendar-outline.glif │ │ │ │ ├── calendar-plus.glif │ │ │ │ ├── calendar-question.glif │ │ │ │ ├── calendar-range-outline.glif │ │ │ │ ├── calendar-range.glif │ │ │ │ ├── calendar-refresh-outline.glif │ │ │ │ ├── calendar-refresh.glif │ │ │ │ ├── calendar-remove-outline.glif │ │ │ │ ├── calendar-remove.glif │ │ │ │ ├── calendar-search.glif │ │ │ │ ├── calendar-star.glif │ │ │ │ ├── calendar-start.glif │ │ │ │ ├── calendar-sync-outline.glif │ │ │ │ ├── calendar-sync.glif │ │ │ │ ├── calendar-text-outline.glif │ │ │ │ ├── calendar-text.glif │ │ │ │ ├── calendar-today-outline.glif │ │ │ │ ├── calendar-today.glif │ │ │ │ ├── calendar-week-begin-outline.glif │ │ │ │ ├── calendar-week-begin.glif │ │ │ │ ├── calendar-week-end-outline.glif │ │ │ │ ├── calendar-week-end.glif │ │ │ │ ├── calendar-week-outline.glif │ │ │ │ ├── calendar-week.glif │ │ │ │ ├── calendar-weekend-outline.glif │ │ │ │ ├── calendar-weekend.glif │ │ │ │ ├── calendar.glif │ │ │ │ ├── call-made.glif │ │ │ │ ├── call-merge.glif │ │ │ │ ├── call-missed.glif │ │ │ │ ├── call-received.glif │ │ │ │ ├── call-split.glif │ │ │ │ ├── camcorder-off.glif │ │ │ │ ├── camcorder.glif │ │ │ │ ├── camera-account.glif │ │ │ │ ├── camera-burst.glif │ │ │ │ ├── camera-control.glif │ │ │ │ ├── camera-document-off.glif │ │ │ │ ├── camera-document.glif │ │ │ │ ├── camera-enhance-outline.glif │ │ │ │ ├── camera-enhance.glif │ │ │ │ ├── camera-flip-outline.glif │ │ │ │ ├── camera-flip.glif │ │ │ │ ├── camera-front-variant.glif │ │ │ │ ├── camera-front.glif │ │ │ │ ├── camera-gopro.glif │ │ │ │ ├── camera-image.glif │ │ │ │ ├── camera-iris.glif │ │ │ │ ├── camera-lock-outline.glif │ │ │ │ ├── camera-lock.glif │ │ │ │ ├── camera-marker-outline.glif │ │ │ │ ├── camera-marker.glif │ │ │ │ ├── camera-metering-center.glif │ │ │ │ ├── camera-metering-matrix.glif │ │ │ │ ├── camera-metering-partial.glif │ │ │ │ ├── camera-metering-spot.glif │ │ │ │ ├── camera-off-outline.glif │ │ │ │ ├── camera-off.glif │ │ │ │ ├── camera-outline.glif │ │ │ │ ├── camera-party-mode.glif │ │ │ │ ├── camera-plus-outline.glif │ │ │ │ ├── camera-plus.glif │ │ │ │ ├── camera-rear-variant.glif │ │ │ │ ├── camera-rear.glif │ │ │ │ ├── camera-retake-outline.glif │ │ │ │ ├── camera-retake.glif │ │ │ │ ├── camera-switch-outline.glif │ │ │ │ ├── camera-switch.glif │ │ │ │ ├── camera-timer.glif │ │ │ │ ├── camera-wireless-outline.glif │ │ │ │ ├── camera-wireless.glif │ │ │ │ ├── camera.glif │ │ │ │ ├── campfire.glif │ │ │ │ ├── cancel.glif │ │ │ │ ├── candelabra-fire.glif │ │ │ │ ├── candelabra.glif │ │ │ │ ├── candle.glif │ │ │ │ ├── candy-off-outline.glif │ │ │ │ ├── candy-off.glif │ │ │ │ ├── candy-outline.glif │ │ │ │ ├── candy.glif │ │ │ │ ├── candycane.glif │ │ │ │ ├── cannabis-off.glif │ │ │ │ ├── cannabis.glif │ │ │ │ ├── caps-lock.glif │ │ │ │ ├── car-2-plus.glif │ │ │ │ ├── car-3-plus.glif │ │ │ │ ├── car-arrow-left.glif │ │ │ │ ├── car-arrow-right.glif │ │ │ │ ├── car-back.glif │ │ │ │ ├── car-battery.glif │ │ │ │ ├── car-brake-abs.glif │ │ │ │ ├── car-brake-alert.glif │ │ │ │ ├── car-brake-fluid-level.glif │ │ │ │ ├── car-brake-hold.glif │ │ │ │ ├── car-brake-low-pressure.glif │ │ │ │ ├── car-brake-parking.glif │ │ │ │ ├── car-brake-retarder.glif │ │ │ │ ├── car-brake-temperature.glif │ │ │ │ ├── car-brake-worn-linings.glif │ │ │ │ ├── car-child-seat.glif │ │ │ │ ├── car-clock.glif │ │ │ │ ├── car-clutch.glif │ │ │ │ ├── car-cog.glif │ │ │ │ ├── car-connected.glif │ │ │ │ ├── car-convertible.glif │ │ │ │ ├── car-coolant-level.glif │ │ │ │ ├── car-cruise-control.glif │ │ │ │ ├── car-defrost-front.glif │ │ │ │ ├── car-defrost-rear.glif │ │ │ │ ├── car-door-lock.glif │ │ │ │ ├── car-door.glif │ │ │ │ ├── car-electric-outline.glif │ │ │ │ ├── car-electric.glif │ │ │ │ ├── car-emergency.glif │ │ │ │ ├── car-esp.glif │ │ │ │ ├── car-estate.glif │ │ │ │ ├── car-hatchback.glif │ │ │ │ ├── car-info.glif │ │ │ │ ├── car-key.glif │ │ │ │ ├── car-lifted-pickup.glif │ │ │ │ ├── car-light-alert.glif │ │ │ │ ├── car-light-dimmed.glif │ │ │ │ ├── car-light-fog.glif │ │ │ │ ├── car-light-high.glif │ │ │ │ ├── car-limousine.glif │ │ │ │ ├── car-multiple.glif │ │ │ │ ├── car-off.glif │ │ │ │ ├── car-outline.glif │ │ │ │ ├── car-parking-lights.glif │ │ │ │ ├── car-pickup.glif │ │ │ │ ├── car-seat-cooler.glif │ │ │ │ ├── car-seat-heater.glif │ │ │ │ ├── car-seat.glif │ │ │ │ ├── car-select.glif │ │ │ │ ├── car-settings.glif │ │ │ │ ├── car-shift-pattern.glif │ │ │ │ ├── car-side.glif │ │ │ │ ├── car-speed-limiter.glif │ │ │ │ ├── car-sports.glif │ │ │ │ ├── car-tire-alert.glif │ │ │ │ ├── car-traction-control.glif │ │ │ │ ├── car-turbocharger.glif │ │ │ │ ├── car-wash.glif │ │ │ │ ├── car-windshield-outline.glif │ │ │ │ ├── car-windshield.glif │ │ │ │ ├── car-wireless.glif │ │ │ │ ├── car-wrench.glif │ │ │ │ ├── car.glif │ │ │ │ ├── carabiner.glif │ │ │ │ ├── caravan.glif │ │ │ │ ├── card-account-details-outline.glif │ │ │ │ ├── card-account-details-star-outline.glif │ │ │ │ ├── card-account-details-star.glif │ │ │ │ ├── card-account-details.glif │ │ │ │ ├── card-account-mail-outline.glif │ │ │ │ ├── card-account-mail.glif │ │ │ │ ├── card-account-phone-outline.glif │ │ │ │ ├── card-account-phone.glif │ │ │ │ ├── card-bulleted-off-outline.glif │ │ │ │ ├── card-bulleted-off.glif │ │ │ │ ├── card-bulleted-outline.glif │ │ │ │ ├── card-bulleted-settings-outline.glif │ │ │ │ ├── card-bulleted-settings.glif │ │ │ │ ├── card-bulleted.glif │ │ │ │ ├── card-minus-outline.glif │ │ │ │ ├── card-minus.glif │ │ │ │ ├── card-multiple-outline.glif │ │ │ │ ├── card-multiple.glif │ │ │ │ ├── card-off-outline.glif │ │ │ │ ├── card-off.glif │ │ │ │ ├── card-outline.glif │ │ │ │ ├── card-plus-outline.glif │ │ │ │ ├── card-plus.glif │ │ │ │ ├── card-remove-outline.glif │ │ │ │ ├── card-remove.glif │ │ │ │ ├── card-search-outline.glif │ │ │ │ ├── card-search.glif │ │ │ │ ├── card-text-outline.glif │ │ │ │ ├── card-text.glif │ │ │ │ ├── card.glif │ │ │ │ ├── cards-club-outline.glif │ │ │ │ ├── cards-club.glif │ │ │ │ ├── cards-diamond-outline.glif │ │ │ │ ├── cards-diamond.glif │ │ │ │ ├── cards-outline.glif │ │ │ │ ├── cards-playing-club-multiple-outline.glif │ │ │ │ ├── cards-playing-club-multiple.glif │ │ │ │ ├── cards-playing-club-outline.glif │ │ │ │ ├── cards-playing-club.glif │ │ │ │ ├── cards-playing-diamond-multiple-outline.glif │ │ │ │ ├── cards-playing-diamond-multiple.glif │ │ │ │ ├── cards-playing-diamond-outline.glif │ │ │ │ ├── cards-playing-diamond.glif │ │ │ │ ├── cards-playing-heart-multiple-outline.glif │ │ │ │ ├── cards-playing-heart-multiple.glif │ │ │ │ ├── cards-playing-heart-outline.glif │ │ │ │ ├── cards-playing-heart.glif │ │ │ │ ├── cards-playing-outline.glif │ │ │ │ ├── cards-playing-spade-multiple-outline.glif │ │ │ │ ├── cards-playing-spade-multiple.glif │ │ │ │ ├── cards-playing-spade-outline.glif │ │ │ │ ├── cards-playing-spade.glif │ │ │ │ ├── cards-playing.glif │ │ │ │ ├── cards-spade-outline.glif │ │ │ │ ├── cards-spade.glif │ │ │ │ ├── cards-variant.glif │ │ │ │ ├── cards.glif │ │ │ │ ├── carrot.glif │ │ │ │ ├── cart-arrow-down.glif │ │ │ │ ├── cart-arrow-right.glif │ │ │ │ ├── cart-arrow-up.glif │ │ │ │ ├── cart-check.glif │ │ │ │ ├── cart-heart.glif │ │ │ │ ├── cart-minus.glif │ │ │ │ ├── cart-off.glif │ │ │ │ ├── cart-outline.glif │ │ │ │ ├── cart-plus.glif │ │ │ │ ├── cart-remove.glif │ │ │ │ ├── cart-variant.glif │ │ │ │ ├── cart.glif │ │ │ │ ├── case-sensitive-alt.glif │ │ │ │ ├── cash-100.glif │ │ │ │ ├── cash-check.glif │ │ │ │ ├── cash-clock.glif │ │ │ │ ├── cash-fast.glif │ │ │ │ ├── cash-lock-open.glif │ │ │ │ ├── cash-lock.glif │ │ │ │ ├── cash-marker.glif │ │ │ │ ├── cash-minus.glif │ │ │ │ ├── cash-multiple.glif │ │ │ │ ├── cash-plus.glif │ │ │ │ ├── cash-refund.glif │ │ │ │ ├── cash-register.glif │ │ │ │ ├── cash-remove.glif │ │ │ │ ├── cash-sync.glif │ │ │ │ ├── cash.glif │ │ │ │ ├── cassette.glif │ │ │ │ ├── cast-audio-variant.glif │ │ │ │ ├── cast-audio.glif │ │ │ │ ├── cast-connected.glif │ │ │ │ ├── cast-education.glif │ │ │ │ ├── cast-off.glif │ │ │ │ ├── cast-variant.glif │ │ │ │ ├── cast.glif │ │ │ │ ├── castle.glif │ │ │ │ ├── cat.glif │ │ │ │ ├── cctv-off.glif │ │ │ │ ├── cctv.glif │ │ │ │ ├── ceiling-fan-light.glif │ │ │ │ ├── ceiling-fan.glif │ │ │ │ ├── ceiling-light-multiple-outline.glif │ │ │ │ ├── ceiling-light-multiple.glif │ │ │ │ ├── ceiling-light-outline.glif │ │ │ │ ├── ceiling-light.glif │ │ │ │ ├── cellphone-arrow-down-variant.glif │ │ │ │ ├── cellphone-arrow-down.glif │ │ │ │ ├── cellphone-basic.glif │ │ │ │ ├── cellphone-charging.glif │ │ │ │ ├── cellphone-check.glif │ │ │ │ ├── cellphone-cog.glif │ │ │ │ ├── cellphone-dock.glif │ │ │ │ ├── cellphone-information.glif │ │ │ │ ├── cellphone-key.glif │ │ │ │ ├── cellphone-link-off.glif │ │ │ │ ├── cellphone-link.glif │ │ │ │ ├── cellphone-lock.glif │ │ │ │ ├── cellphone-marker.glif │ │ │ │ ├── cellphone-message-off.glif │ │ │ │ ├── cellphone-message.glif │ │ │ │ ├── cellphone-nfc-off.glif │ │ │ │ ├── cellphone-nfc.glif │ │ │ │ ├── cellphone-off.glif │ │ │ │ ├── cellphone-play.glif │ │ │ │ ├── cellphone-remove.glif │ │ │ │ ├── cellphone-screenshot.glif │ │ │ │ ├── cellphone-settings.glif │ │ │ │ ├── cellphone-sound.glif │ │ │ │ ├── cellphone-text.glif │ │ │ │ ├── cellphone-wireless.glif │ │ │ │ ├── cellphone.glif │ │ │ │ ├── centos.glif │ │ │ │ ├── certificate-outline.glif │ │ │ │ ├── certificate.glif │ │ │ │ ├── chair-rolling.glif │ │ │ │ ├── chair-school.glif │ │ │ │ ├── chandelier.glif │ │ │ │ ├── charity.glif │ │ │ │ ├── chart-arc.glif │ │ │ │ ├── chart-areaspline-variant.glif │ │ │ │ ├── chart-areaspline.glif │ │ │ │ ├── chart-bar-stacked.glif │ │ │ │ ├── chart-bar.glif │ │ │ │ ├── chart-bell-curve-cumulative.glif │ │ │ │ ├── chart-bell-curve.glif │ │ │ │ ├── chart-box-outline.glif │ │ │ │ ├── chart-box-plus-outline.glif │ │ │ │ ├── chart-box.glif │ │ │ │ ├── chart-bubble.glif │ │ │ │ ├── chart-donut-variant.glif │ │ │ │ ├── chart-donut.glif │ │ │ │ ├── chart-gantt.glif │ │ │ │ ├── chart-histogram.glif │ │ │ │ ├── chart-line-stacked.glif │ │ │ │ ├── chart-line-variant.glif │ │ │ │ ├── chart-line.glif │ │ │ │ ├── chart-multiline.glif │ │ │ │ ├── chart-multiple.glif │ │ │ │ ├── chart-pie.glif │ │ │ │ ├── chart-ppf.glif │ │ │ │ ├── chart-sankey-variant.glif │ │ │ │ ├── chart-sankey.glif │ │ │ │ ├── chart-scatter-plot-hexbin.glif │ │ │ │ ├── chart-scatter-plot.glif │ │ │ │ ├── chart-timeline-variant-shimmer.glif │ │ │ │ ├── chart-timeline-variant.glif │ │ │ │ ├── chart-timeline.glif │ │ │ │ ├── chart-tree.glif │ │ │ │ ├── chart-waterfall.glif │ │ │ │ ├── chat-alert-outline.glif │ │ │ │ ├── chat-alert.glif │ │ │ │ ├── chat-minus-outline.glif │ │ │ │ ├── chat-minus.glif │ │ │ │ ├── chat-outline.glif │ │ │ │ ├── chat-plus-outline.glif │ │ │ │ ├── chat-plus.glif │ │ │ │ ├── chat-processing-outline.glif │ │ │ │ ├── chat-processing.glif │ │ │ │ ├── chat-question-outline.glif │ │ │ │ ├── chat-question.glif │ │ │ │ ├── chat-remove-outline.glif │ │ │ │ ├── chat-remove.glif │ │ │ │ ├── chat-sleep-outline.glif │ │ │ │ ├── chat-sleep.glif │ │ │ │ ├── chat.glif │ │ │ │ ├── check-all.glif │ │ │ │ ├── check-bold.glif │ │ │ │ ├── check-circle-outline.glif │ │ │ │ ├── check-circle.glif │ │ │ │ ├── check-decagram-outline.glif │ │ │ │ ├── check-decagram.glif │ │ │ │ ├── check-network-outline.glif │ │ │ │ ├── check-network.glif │ │ │ │ ├── check-outline.glif │ │ │ │ ├── check-underline-circle-outline.glif │ │ │ │ ├── check-underline-circle.glif │ │ │ │ ├── check-underline.glif │ │ │ │ ├── check.glif │ │ │ │ ├── checkbook.glif │ │ │ │ ├── checkbox-blank-badge-outline.glif │ │ │ │ ├── checkbox-blank-badge.glif │ │ │ │ ├── checkbox-blank-circle-outline.glif │ │ │ │ ├── checkbox-blank-circle.glif │ │ │ │ ├── checkbox-blank-off-outline.glif │ │ │ │ ├── checkbox-blank-off.glif │ │ │ │ ├── checkbox-blank-outline.glif │ │ │ │ ├── checkbox-blank.glif │ │ │ │ ├── checkbox-intermediate.glif │ │ │ │ ├── checkbox-marked-circle-outline.glif │ │ │ │ ├── checkbox-marked-circle-plus-outline.glif │ │ │ │ ├── checkbox-marked-circle.glif │ │ │ │ ├── checkbox-marked-outline.glif │ │ │ │ ├── checkbox-marked.glif │ │ │ │ ├── checkbox-multiple-blank-circle-outline.glif │ │ │ │ ├── checkbox-multiple-blank-circle.glif │ │ │ │ ├── checkbox-multiple-blank-outline.glif │ │ │ │ ├── checkbox-multiple-blank.glif │ │ │ │ ├── checkbox-multiple-marked-circle-outline.glif │ │ │ │ ├── checkbox-multiple-marked-circle.glif │ │ │ │ ├── checkbox-multiple-marked-outline.glif │ │ │ │ ├── checkbox-multiple-marked.glif │ │ │ │ ├── checkbox-multiple-outline.glif │ │ │ │ ├── checkbox-outline.glif │ │ │ │ ├── checkerboard-minus.glif │ │ │ │ ├── checkerboard-plus.glif │ │ │ │ ├── checkerboard-remove.glif │ │ │ │ ├── checkerboard.glif │ │ │ │ ├── cheese-off.glif │ │ │ │ ├── cheese.glif │ │ │ │ ├── chef-hat.glif │ │ │ │ ├── chemical-weapon.glif │ │ │ │ ├── chess-bishop.glif │ │ │ │ ├── chess-king.glif │ │ │ │ ├── chess-knight.glif │ │ │ │ ├── chess-pawn.glif │ │ │ │ ├── chess-queen.glif │ │ │ │ ├── chess-rook.glif │ │ │ │ ├── chevron-double-down.glif │ │ │ │ ├── chevron-double-left.glif │ │ │ │ ├── chevron-double-right.glif │ │ │ │ ├── chevron-double-up.glif │ │ │ │ ├── chevron-down-box-outline.glif │ │ │ │ ├── chevron-down-box.glif │ │ │ │ ├── chevron-down-circle-outline.glif │ │ │ │ ├── chevron-down-circle.glif │ │ │ │ ├── chevron-down.glif │ │ │ │ ├── chevron-left-box-outline.glif │ │ │ │ ├── chevron-left-box.glif │ │ │ │ ├── chevron-left-circle-outline.glif │ │ │ │ ├── chevron-left-circle.glif │ │ │ │ ├── chevron-left.glif │ │ │ │ ├── chevron-right-box-outline.glif │ │ │ │ ├── chevron-right-box.glif │ │ │ │ ├── chevron-right-circle-outline.glif │ │ │ │ ├── chevron-right-circle.glif │ │ │ │ ├── chevron-right.glif │ │ │ │ ├── chevron-triple-down.glif │ │ │ │ ├── chevron-triple-left.glif │ │ │ │ ├── chevron-triple-right.glif │ │ │ │ ├── chevron-triple-up.glif │ │ │ │ ├── chevron-up-box-outline.glif │ │ │ │ ├── chevron-up-box.glif │ │ │ │ ├── chevron-up-circle-outline.glif │ │ │ │ ├── chevron-up-circle.glif │ │ │ │ ├── chevron-up.glif │ │ │ │ ├── chili-alert-outline.glif │ │ │ │ ├── chili-alert.glif │ │ │ │ ├── chili-hot-outline.glif │ │ │ │ ├── chili-hot.glif │ │ │ │ ├── chili-medium-outline.glif │ │ │ │ ├── chili-medium.glif │ │ │ │ ├── chili-mild-outline.glif │ │ │ │ ├── chili-mild.glif │ │ │ │ ├── chili-off-outline.glif │ │ │ │ ├── chili-off.glif │ │ │ │ ├── chip.glif │ │ │ │ ├── church.glif │ │ │ │ ├── cigar-off.glif │ │ │ │ ├── cigar.glif │ │ │ │ ├── circle-box-outline.glif │ │ │ │ ├── circle-box.glif │ │ │ │ ├── circle-double.glif │ │ │ │ ├── circle-edit-outline.glif │ │ │ │ ├── circle-expand.glif │ │ │ │ ├── circle-half-full.glif │ │ │ │ ├── circle-half.glif │ │ │ │ ├── circle-medium.glif │ │ │ │ ├── circle-multiple-outline.glif │ │ │ │ ├── circle-multiple.glif │ │ │ │ ├── circle-off-outline.glif │ │ │ │ ├── circle-opacity.glif │ │ │ │ ├── circle-slice-1.glif │ │ │ │ ├── circle-slice-2.glif │ │ │ │ ├── circle-slice-3.glif │ │ │ │ ├── circle-slice-4.glif │ │ │ │ ├── circle-slice-5.glif │ │ │ │ ├── circle-slice-6.glif │ │ │ │ ├── circle-slice-7.glif │ │ │ │ ├── circle-slice-8.glif │ │ │ │ ├── circle-small.glif │ │ │ │ ├── circular-saw.glif │ │ │ │ ├── city-variant-outline.glif │ │ │ │ ├── city-variant.glif │ │ │ │ ├── city.glif │ │ │ │ ├── clipboard-account-outline.glif │ │ │ │ ├── clipboard-account.glif │ │ │ │ ├── clipboard-alert-outline.glif │ │ │ │ ├── clipboard-alert.glif │ │ │ │ ├── clipboard-arrow-down-outline.glif │ │ │ │ ├── clipboard-arrow-down.glif │ │ │ │ ├── clipboard-arrow-left-outline.glif │ │ │ │ ├── clipboard-arrow-left.glif │ │ │ │ ├── clipboard-arrow-right-outline.glif │ │ │ │ ├── clipboard-arrow-right.glif │ │ │ │ ├── clipboard-arrow-up-outline.glif │ │ │ │ ├── clipboard-arrow-up.glif │ │ │ │ ├── clipboard-check-multiple-outline.glif │ │ │ │ ├── clipboard-check-multiple.glif │ │ │ │ ├── clipboard-check-outline.glif │ │ │ │ ├── clipboard-check.glif │ │ │ │ ├── clipboard-clock-outline.glif │ │ │ │ ├── clipboard-clock.glif │ │ │ │ ├── clipboard-edit-outline.glif │ │ │ │ ├── clipboard-edit.glif │ │ │ │ ├── clipboard-file-outline.glif │ │ │ │ ├── clipboard-file.glif │ │ │ │ ├── clipboard-flow-outline.glif │ │ │ │ ├── clipboard-flow.glif │ │ │ │ ├── clipboard-list-outline.glif │ │ │ │ ├── clipboard-list.glif │ │ │ │ ├── clipboard-minus-outline.glif │ │ │ │ ├── clipboard-minus.glif │ │ │ │ ├── clipboard-multiple-outline.glif │ │ │ │ ├── clipboard-multiple.glif │ │ │ │ ├── clipboard-off-outline.glif │ │ │ │ ├── clipboard-off.glif │ │ │ │ ├── clipboard-outline.glif │ │ │ │ ├── clipboard-play-multiple-outline.glif │ │ │ │ ├── clipboard-play-multiple.glif │ │ │ │ ├── clipboard-play-outline.glif │ │ │ │ ├── clipboard-play.glif │ │ │ │ ├── clipboard-plus-outline.glif │ │ │ │ ├── clipboard-plus.glif │ │ │ │ ├── clipboard-pulse-outline.glif │ │ │ │ ├── clipboard-pulse.glif │ │ │ │ ├── clipboard-remove-outline.glif │ │ │ │ ├── clipboard-remove.glif │ │ │ │ ├── clipboard-search-outline.glif │ │ │ │ ├── clipboard-search.glif │ │ │ │ ├── clipboard-text-clock-outline.glif │ │ │ │ ├── clipboard-text-clock.glif │ │ │ │ ├── clipboard-text-multiple-outline.glif │ │ │ │ ├── clipboard-text-multiple.glif │ │ │ │ ├── clipboard-text-off-outline.glif │ │ │ │ ├── clipboard-text-off.glif │ │ │ │ ├── clipboard-text-outline.glif │ │ │ │ ├── clipboard-text-play-outline.glif │ │ │ │ ├── clipboard-text-play.glif │ │ │ │ ├── clipboard-text-search-outline.glif │ │ │ │ ├── clipboard-text-search.glif │ │ │ │ ├── clipboard-text.glif │ │ │ │ ├── clipboard.glif │ │ │ │ ├── clippy.glif │ │ │ │ ├── clock-alert-outline.glif │ │ │ │ ├── clock-alert.glif │ │ │ │ ├── clock-check-outline.glif │ │ │ │ ├── clock-check.glif │ │ │ │ ├── clock-digital.glif │ │ │ │ ├── clock-edit-outline.glif │ │ │ │ ├── clock-edit.glif │ │ │ │ ├── clock-end.glif │ │ │ │ ├── clock-fast.glif │ │ │ │ ├── clock-in.glif │ │ │ │ ├── clock-minus-outline.glif │ │ │ │ ├── clock-minus.glif │ │ │ │ ├── clock-out.glif │ │ │ │ ├── clock-outline.glif │ │ │ │ ├── clock-plus-outline.glif │ │ │ │ ├── clock-plus.glif │ │ │ │ ├── clock-remove-outline.glif │ │ │ │ ├── clock-remove.glif │ │ │ │ ├── clock-start.glif │ │ │ │ ├── clock-time-eight-outline.glif │ │ │ │ ├── clock-time-eight.glif │ │ │ │ ├── clock-time-eleven-outline.glif │ │ │ │ ├── clock-time-eleven.glif │ │ │ │ ├── clock-time-five-outline.glif │ │ │ │ ├── clock-time-five.glif │ │ │ │ ├── clock-time-four-outline.glif │ │ │ │ ├── clock-time-four.glif │ │ │ │ ├── clock-time-nine-outline.glif │ │ │ │ ├── clock-time-nine.glif │ │ │ │ ├── clock-time-one-outline.glif │ │ │ │ ├── clock-time-one.glif │ │ │ │ ├── clock-time-seven-outline.glif │ │ │ │ ├── clock-time-seven.glif │ │ │ │ ├── clock-time-six-outline.glif │ │ │ │ ├── clock-time-six.glif │ │ │ │ ├── clock-time-ten-outline.glif │ │ │ │ ├── clock-time-ten.glif │ │ │ │ ├── clock-time-three-outline.glif │ │ │ │ ├── clock-time-three.glif │ │ │ │ ├── clock-time-twelve-outline.glif │ │ │ │ ├── clock-time-twelve.glif │ │ │ │ ├── clock-time-two-outline.glif │ │ │ │ ├── clock-time-two.glif │ │ │ │ ├── clock.glif │ │ │ │ ├── close-box-multiple-outline.glif │ │ │ │ ├── close-box-multiple.glif │ │ │ │ ├── close-box-outline.glif │ │ │ │ ├── close-box.glif │ │ │ │ ├── close-circle-multiple-outline.glif │ │ │ │ ├── close-circle-multiple.glif │ │ │ │ ├── close-circle-outline.glif │ │ │ │ ├── close-circle.glif │ │ │ │ ├── close-network-outline.glif │ │ │ │ ├── close-network.glif │ │ │ │ ├── close-octagon-outline.glif │ │ │ │ ├── close-octagon.glif │ │ │ │ ├── close-outline.glif │ │ │ │ ├── close-thick.glif │ │ │ │ ├── close.glif │ │ │ │ ├── closed-caption-outline.glif │ │ │ │ ├── closed-caption.glif │ │ │ │ ├── cloud-alert.glif │ │ │ │ ├── cloud-braces.glif │ │ │ │ ├── cloud-check-outline.glif │ │ │ │ ├── cloud-check.glif │ │ │ │ ├── cloud-circle.glif │ │ │ │ ├── cloud-download-outline.glif │ │ │ │ ├── cloud-download.glif │ │ │ │ ├── cloud-lock-outline.glif │ │ │ │ ├── cloud-lock.glif │ │ │ │ ├── cloud-off-outline.glif │ │ │ │ ├── cloud-outline.glif │ │ │ │ ├── cloud-percent-outline.glif │ │ │ │ ├── cloud-percent.glif │ │ │ │ ├── cloud-print-outline.glif │ │ │ │ ├── cloud-print.glif │ │ │ │ ├── cloud-question.glif │ │ │ │ ├── cloud-refresh.glif │ │ │ │ ├── cloud-search-outline.glif │ │ │ │ ├── cloud-search.glif │ │ │ │ ├── cloud-sync-outline.glif │ │ │ │ ├── cloud-sync.glif │ │ │ │ ├── cloud-tags.glif │ │ │ │ ├── cloud-upload-outline.glif │ │ │ │ ├── cloud-upload.glif │ │ │ │ ├── cloud.glif │ │ │ │ ├── clover.glif │ │ │ │ ├── coach-lamp-variant.glif │ │ │ │ ├── coach-lamp.glif │ │ │ │ ├── coat-rack.glif │ │ │ │ ├── code-array.glif │ │ │ │ ├── code-braces-box.glif │ │ │ │ ├── code-braces.glif │ │ │ │ ├── code-brackets.glif │ │ │ │ ├── code-equal.glif │ │ │ │ ├── code-greater-than-or-equal.glif │ │ │ │ ├── code-greater-than.glif │ │ │ │ ├── code-json.glif │ │ │ │ ├── code-less-than-or-equal.glif │ │ │ │ ├── code-less-than.glif │ │ │ │ ├── code-not-equal-variant.glif │ │ │ │ ├── code-not-equal.glif │ │ │ │ ├── code-parentheses-box.glif │ │ │ │ ├── code-parentheses.glif │ │ │ │ ├── code-string.glif │ │ │ │ ├── code-tags-check.glif │ │ │ │ ├── code-tags.glif │ │ │ │ ├── codepen.glif │ │ │ │ ├── coffee-maker-check-outline.glif │ │ │ │ ├── coffee-maker-check.glif │ │ │ │ ├── coffee-maker-outline.glif │ │ │ │ ├── coffee-maker.glif │ │ │ │ ├── coffee-off-outline.glif │ │ │ │ ├── coffee-off.glif │ │ │ │ ├── coffee-outline.glif │ │ │ │ ├── coffee-to-go-outline.glif │ │ │ │ ├── coffee-to-go.glif │ │ │ │ ├── coffee.glif │ │ │ │ ├── coffin.glif │ │ │ │ ├── cog-box.glif │ │ │ │ ├── cog-clockwise.glif │ │ │ │ ├── cog-counterclockwise.glif │ │ │ │ ├── cog-off-outline.glif │ │ │ │ ├── cog-off.glif │ │ │ │ ├── cog-outline.glif │ │ │ │ ├── cog-pause-outline.glif │ │ │ │ ├── cog-pause.glif │ │ │ │ ├── cog-play-outline.glif │ │ │ │ ├── cog-play.glif │ │ │ │ ├── cog-refresh-outline.glif │ │ │ │ ├── cog-refresh.glif │ │ │ │ ├── cog-stop-outline.glif │ │ │ │ ├── cog-stop.glif │ │ │ │ ├── cog-sync-outline.glif │ │ │ │ ├── cog-sync.glif │ │ │ │ ├── cog-transfer-outline.glif │ │ │ │ ├── cog-transfer.glif │ │ │ │ ├── cog.glif │ │ │ │ ├── cogs.glif │ │ │ │ ├── collage.glif │ │ │ │ ├── collapse-all-outline.glif │ │ │ │ ├── collapse-all.glif │ │ │ │ ├── color-helper.glif │ │ │ │ ├── comma-box-outline.glif │ │ │ │ ├── comma-box.glif │ │ │ │ ├── comma-circle-outline.glif │ │ │ │ ├── comma-circle.glif │ │ │ │ ├── comma.glif │ │ │ │ ├── comment-account-outline.glif │ │ │ │ ├── comment-account.glif │ │ │ │ ├── comment-alert-outline.glif │ │ │ │ ├── comment-alert.glif │ │ │ │ ├── comment-arrow-left-outline.glif │ │ │ │ ├── comment-arrow-left.glif │ │ │ │ ├── comment-arrow-right-outline.glif │ │ │ │ ├── comment-arrow-right.glif │ │ │ │ ├── comment-bookmark-outline.glif │ │ │ │ ├── comment-bookmark.glif │ │ │ │ ├── comment-check-outline.glif │ │ │ │ ├── comment-check.glif │ │ │ │ ├── comment-edit-outline.glif │ │ │ │ ├── comment-edit.glif │ │ │ │ ├── comment-eye-outline.glif │ │ │ │ ├── comment-eye.glif │ │ │ │ ├── comment-flash-outline.glif │ │ │ │ ├── comment-flash.glif │ │ │ │ ├── comment-minus-outline.glif │ │ │ │ ├── comment-minus.glif │ │ │ │ ├── comment-multiple-outline.glif │ │ │ │ ├── comment-multiple.glif │ │ │ │ ├── comment-off-outline.glif │ │ │ │ ├── comment-off.glif │ │ │ │ ├── comment-outline.glif │ │ │ │ ├── comment-plus-outline.glif │ │ │ │ ├── comment-plus.glif │ │ │ │ ├── comment-processing-outline.glif │ │ │ │ ├── comment-processing.glif │ │ │ │ ├── comment-question-outline.glif │ │ │ │ ├── comment-question.glif │ │ │ │ ├── comment-quote-outline.glif │ │ │ │ ├── comment-quote.glif │ │ │ │ ├── comment-remove-outline.glif │ │ │ │ ├── comment-remove.glif │ │ │ │ ├── comment-search-outline.glif │ │ │ │ ├── comment-search.glif │ │ │ │ ├── comment-text-multiple-outline.glif │ │ │ │ ├── comment-text-multiple.glif │ │ │ │ ├── comment-text-outline.glif │ │ │ │ ├── comment-text.glif │ │ │ │ ├── comment.glif │ │ │ │ ├── compare-horizontal.glif │ │ │ │ ├── compare-remove.glif │ │ │ │ ├── compare-vertical.glif │ │ │ │ ├── compare.glif │ │ │ │ ├── compass-off-outline.glif │ │ │ │ ├── compass-off.glif │ │ │ │ ├── compass-outline.glif │ │ │ │ ├── compass-rose.glif │ │ │ │ ├── compass.glif │ │ │ │ ├── compost.glif │ │ │ │ ├── cone-off.glif │ │ │ │ ├── cone.glif │ │ │ │ ├── connection.glif │ │ │ │ ├── console-line.glif │ │ │ │ ├── console-network-outline.glif │ │ │ │ ├── console-network.glif │ │ │ │ ├── console.glif │ │ │ │ ├── consolidate.glif │ │ │ │ ├── contactless-payment-circle-outline.glif │ │ │ │ ├── contactless-payment-circle.glif │ │ │ │ ├── contactless-payment.glif │ │ │ │ ├── contacts-outline.glif │ │ │ │ ├── contacts.glif │ │ │ │ ├── contain-end.glif │ │ │ │ ├── contain-start.glif │ │ │ │ ├── contain.glif │ │ │ │ ├── content-copy.glif │ │ │ │ ├── content-cut.glif │ │ │ │ ├── content-duplicate.glif │ │ │ │ ├── content-paste.glif │ │ │ │ ├── content-save-alert-outline.glif │ │ │ │ ├── content-save-alert.glif │ │ │ │ ├── content-save-all-outline.glif │ │ │ │ ├── content-save-all.glif │ │ │ │ ├── content-save-check-outline.glif │ │ │ │ ├── content-save-check.glif │ │ │ │ ├── content-save-cog-outline.glif │ │ │ │ ├── content-save-cog.glif │ │ │ │ ├── content-save-edit-outline.glif │ │ │ │ ├── content-save-edit.glif │ │ │ │ ├── content-save-move-outline.glif │ │ │ │ ├── content-save-move.glif │ │ │ │ ├── content-save-off-outline.glif │ │ │ │ ├── content-save-off.glif │ │ │ │ ├── content-save-outline.glif │ │ │ │ ├── content-save-settings-outline.glif │ │ │ │ ├── content-save-settings.glif │ │ │ │ ├── content-save.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── contrast-box.glif │ │ │ │ ├── contrast-circle.glif │ │ │ │ ├── contrast.glif │ │ │ │ ├── controller-classic-outline.glif │ │ │ │ ├── controller-classic.glif │ │ │ │ ├── cookie-alert-outline.glif │ │ │ │ ├── cookie-alert.glif │ │ │ │ ├── cookie-check-outline.glif │ │ │ │ ├── cookie-check.glif │ │ │ │ ├── cookie-clock-outline.glif │ │ │ │ ├── cookie-clock.glif │ │ │ │ ├── cookie-cog-outline.glif │ │ │ │ ├── cookie-cog.glif │ │ │ │ ├── cookie-edit-outline.glif │ │ │ │ ├── cookie-edit.glif │ │ │ │ ├── cookie-lock-outline.glif │ │ │ │ ├── cookie-lock.glif │ │ │ │ ├── cookie-minus-outline.glif │ │ │ │ ├── cookie-minus.glif │ │ │ │ ├── cookie-off-outline.glif │ │ │ │ ├── cookie-off.glif │ │ │ │ ├── cookie-outline.glif │ │ │ │ ├── cookie-plus-outline.glif │ │ │ │ ├── cookie-plus.glif │ │ │ │ ├── cookie-refresh-outline.glif │ │ │ │ ├── cookie-refresh.glif │ │ │ │ ├── cookie-remove-outline.glif │ │ │ │ ├── cookie-remove.glif │ │ │ │ ├── cookie-settings-outline.glif │ │ │ │ ├── cookie-settings.glif │ │ │ │ ├── cookie.glif │ │ │ │ ├── coolant-temperature.glif │ │ │ │ ├── copyleft.glif │ │ │ │ ├── copyright.glif │ │ │ │ ├── cordova.glif │ │ │ │ ├── corn-off.glif │ │ │ │ ├── corn.glif │ │ │ │ ├── cosine-wave.glif │ │ │ │ ├── counter.glif │ │ │ │ ├── countertop-outline.glif │ │ │ │ ├── countertop.glif │ │ │ │ ├── cow-off.glif │ │ │ │ ├── cow.glif │ │ │ │ ├── cpu-32-bit.glif │ │ │ │ ├── cpu-64-bit.glif │ │ │ │ ├── cradle-outline.glif │ │ │ │ ├── cradle.glif │ │ │ │ ├── crane.glif │ │ │ │ ├── creation.glif │ │ │ │ ├── creative-commons.glif │ │ │ │ ├── credit-card-check-outline.glif │ │ │ │ ├── credit-card-check.glif │ │ │ │ ├── credit-card-chip-outline.glif │ │ │ │ ├── credit-card-chip.glif │ │ │ │ ├── credit-card-clock-outline.glif │ │ │ │ ├── credit-card-clock.glif │ │ │ │ ├── credit-card-edit-outline.glif │ │ │ │ ├── credit-card-edit.glif │ │ │ │ ├── credit-card-fast-outline.glif │ │ │ │ ├── credit-card-fast.glif │ │ │ │ ├── credit-card-lock-outline.glif │ │ │ │ ├── credit-card-lock.glif │ │ │ │ ├── credit-card-marker-outline.glif │ │ │ │ ├── credit-card-marker.glif │ │ │ │ ├── credit-card-minus-outline.glif │ │ │ │ ├── credit-card-minus.glif │ │ │ │ ├── credit-card-multiple-outline.glif │ │ │ │ ├── credit-card-multiple.glif │ │ │ │ ├── credit-card-off-outline.glif │ │ │ │ ├── credit-card-off.glif │ │ │ │ ├── credit-card-outline.glif │ │ │ │ ├── credit-card-plus-outline.glif │ │ │ │ ├── credit-card-plus.glif │ │ │ │ ├── credit-card-refresh-outline.glif │ │ │ │ ├── credit-card-refresh.glif │ │ │ │ ├── credit-card-refund-outline.glif │ │ │ │ ├── credit-card-refund.glif │ │ │ │ ├── credit-card-remove-outline.glif │ │ │ │ ├── credit-card-remove.glif │ │ │ │ ├── credit-card-scan-outline.glif │ │ │ │ ├── credit-card-scan.glif │ │ │ │ ├── credit-card-search-outline.glif │ │ │ │ ├── credit-card-search.glif │ │ │ │ ├── credit-card-settings-outline.glif │ │ │ │ ├── credit-card-settings.glif │ │ │ │ ├── credit-card-sync-outline.glif │ │ │ │ ├── credit-card-sync.glif │ │ │ │ ├── credit-card-wireless-off-outline.glif │ │ │ │ ├── credit-card-wireless-off.glif │ │ │ │ ├── credit-card-wireless-outline.glif │ │ │ │ ├── credit-card-wireless.glif │ │ │ │ ├── credit-card.glif │ │ │ │ ├── cricket.glif │ │ │ │ ├── crop-free.glif │ │ │ │ ├── crop-landscape.glif │ │ │ │ ├── crop-portrait.glif │ │ │ │ ├── crop-rotate.glif │ │ │ │ ├── crop-square.glif │ │ │ │ ├── crop.glif │ │ │ │ ├── cross-bolnisi.glif │ │ │ │ ├── cross-celtic.glif │ │ │ │ ├── cross-outline.glif │ │ │ │ ├── cross.glif │ │ │ │ ├── crosshairs-gps.glif │ │ │ │ ├── crosshairs-off.glif │ │ │ │ ├── crosshairs-question.glif │ │ │ │ ├── crosshairs.glif │ │ │ │ ├── crowd.glif │ │ │ │ ├── crown-circle-outline.glif │ │ │ │ ├── crown-circle.glif │ │ │ │ ├── crown-outline.glif │ │ │ │ ├── crown.glif │ │ │ │ ├── cryengine.glif │ │ │ │ ├── crystal-ball.glif │ │ │ │ ├── cube-off-outline.glif │ │ │ │ ├── cube-off.glif │ │ │ │ ├── cube-outline.glif │ │ │ │ ├── cube-scan.glif │ │ │ │ ├── cube-send.glif │ │ │ │ ├── cube-unfolded.glif │ │ │ │ ├── cube.glif │ │ │ │ ├── cup-off-outline.glif │ │ │ │ ├── cup-off.glif │ │ │ │ ├── cup-outline.glif │ │ │ │ ├── cup-water.glif │ │ │ │ ├── cup.glif │ │ │ │ ├── cupboard-outline.glif │ │ │ │ ├── cupboard.glif │ │ │ │ ├── cupcake.glif │ │ │ │ ├── curling.glif │ │ │ │ ├── currency-bdt.glif │ │ │ │ ├── currency-brl.glif │ │ │ │ ├── currency-btc.glif │ │ │ │ ├── currency-cny.glif │ │ │ │ ├── currency-eth.glif │ │ │ │ ├── currency-eur-off.glif │ │ │ │ ├── currency-eur.glif │ │ │ │ ├── currency-fra.glif │ │ │ │ ├── currency-gbp.glif │ │ │ │ ├── currency-ils.glif │ │ │ │ ├── currency-inr.glif │ │ │ │ ├── currency-jpy.glif │ │ │ │ ├── currency-krw.glif │ │ │ │ ├── currency-kzt.glif │ │ │ │ ├── currency-mnt.glif │ │ │ │ ├── currency-ngn.glif │ │ │ │ ├── currency-php.glif │ │ │ │ ├── currency-rial.glif │ │ │ │ ├── currency-rub.glif │ │ │ │ ├── currency-rupee.glif │ │ │ │ ├── currency-sign.glif │ │ │ │ ├── currency-try.glif │ │ │ │ ├── currency-twd.glif │ │ │ │ ├── currency-usd-off.glif │ │ │ │ ├── currency-usd.glif │ │ │ │ ├── current-ac.glif │ │ │ │ ├── current-dc.glif │ │ │ │ ├── cursor-default-click-outline.glif │ │ │ │ ├── cursor-default-click.glif │ │ │ │ ├── cursor-default-gesture-outline.glif │ │ │ │ ├── cursor-default-gesture.glif │ │ │ │ ├── cursor-default-outline.glif │ │ │ │ ├── cursor-default.glif │ │ │ │ ├── cursor-move.glif │ │ │ │ ├── cursor-pointer.glif │ │ │ │ ├── cursor-text.glif │ │ │ │ ├── curtains-closed.glif │ │ │ │ ├── curtains.glif │ │ │ │ ├── cylinder-off.glif │ │ │ │ ├── cylinder.glif │ │ │ │ ├── dance-ballroom.glif │ │ │ │ ├── dance-pole.glif │ │ │ │ ├── data-matrix-edit.glif │ │ │ │ ├── data-matrix-minus.glif │ │ │ │ ├── data-matrix-plus.glif │ │ │ │ ├── data-matrix-remove.glif │ │ │ │ ├── data-matrix-scan.glif │ │ │ │ ├── data-matrix.glif │ │ │ │ ├── database-alert-outline.glif │ │ │ │ ├── database-alert.glif │ │ │ │ ├── database-arrow-down-outline.glif │ │ │ │ ├── database-arrow-down.glif │ │ │ │ ├── database-arrow-left-outline.glif │ │ │ │ ├── database-arrow-left.glif │ │ │ │ ├── database-arrow-right-outline.glif │ │ │ │ ├── database-arrow-right.glif │ │ │ │ ├── database-arrow-up-outline.glif │ │ │ │ ├── database-arrow-up.glif │ │ │ │ ├── database-check-outline.glif │ │ │ │ ├── database-check.glif │ │ │ │ ├── database-clock-outline.glif │ │ │ │ ├── database-clock.glif │ │ │ │ ├── database-cog-outline.glif │ │ │ │ ├── database-cog.glif │ │ │ │ ├── database-edit-outline.glif │ │ │ │ ├── database-edit.glif │ │ │ │ ├── database-export-outline.glif │ │ │ │ ├── database-export.glif │ │ │ │ ├── database-eye-off-outline.glif │ │ │ │ ├── database-eye-off.glif │ │ │ │ ├── database-eye-outline.glif │ │ │ │ ├── database-eye.glif │ │ │ │ ├── database-import-outline.glif │ │ │ │ ├── database-import.glif │ │ │ │ ├── database-lock-outline.glif │ │ │ │ ├── database-lock.glif │ │ │ │ ├── database-marker-outline.glif │ │ │ │ ├── database-marker.glif │ │ │ │ ├── database-minus-outline.glif │ │ │ │ ├── database-minus.glif │ │ │ │ ├── database-off-outline.glif │ │ │ │ ├── database-off.glif │ │ │ │ ├── database-outline.glif │ │ │ │ ├── database-plus-outline.glif │ │ │ │ ├── database-plus.glif │ │ │ │ ├── database-refresh-outline.glif │ │ │ │ ├── database-refresh.glif │ │ │ │ ├── database-remove-outline.glif │ │ │ │ ├── database-remove.glif │ │ │ │ ├── database-search-outline.glif │ │ │ │ ├── database-search.glif │ │ │ │ ├── database-settings-outline.glif │ │ │ │ ├── database-settings.glif │ │ │ │ ├── database-sync-outline.glif │ │ │ │ ├── database-sync.glif │ │ │ │ ├── database.glif │ │ │ │ ├── death-star-variant.glif │ │ │ │ ├── death-star.glif │ │ │ │ ├── deathly-hallows.glif │ │ │ │ ├── debian.glif │ │ │ │ ├── debug-step-into.glif │ │ │ │ ├── debug-step-out.glif │ │ │ │ ├── debug-step-over.glif │ │ │ │ ├── decagram-outline.glif │ │ │ │ ├── decagram.glif │ │ │ │ ├── decimal-comma-decrease.glif │ │ │ │ ├── decimal-comma-increase.glif │ │ │ │ ├── decimal-comma.glif │ │ │ │ ├── decimal-decrease.glif │ │ │ │ ├── decimal-increase.glif │ │ │ │ ├── decimal.glif │ │ │ │ ├── delete-alert-outline.glif │ │ │ │ ├── delete-alert.glif │ │ │ │ ├── delete-circle-outline.glif │ │ │ │ ├── delete-circle.glif │ │ │ │ ├── delete-clock-outline.glif │ │ │ │ ├── delete-clock.glif │ │ │ │ ├── delete-empty-outline.glif │ │ │ │ ├── delete-empty.glif │ │ │ │ ├── delete-forever-outline.glif │ │ │ │ ├── delete-forever.glif │ │ │ │ ├── delete-off-outline.glif │ │ │ │ ├── delete-off.glif │ │ │ │ ├── delete-outline.glif │ │ │ │ ├── delete-restore.glif │ │ │ │ ├── delete-sweep-outline.glif │ │ │ │ ├── delete-sweep.glif │ │ │ │ ├── delete-variant.glif │ │ │ │ ├── delete.glif │ │ │ │ ├── delta.glif │ │ │ │ ├── desk-lamp.glif │ │ │ │ ├── desk.glif │ │ │ │ ├── deskphone.glif │ │ │ │ ├── desktop-classic.glif │ │ │ │ ├── desktop-mac-dashboard.glif │ │ │ │ ├── desktop-mac.glif │ │ │ │ ├── desktop-tower-monitor.glif │ │ │ │ ├── desktop-tower.glif │ │ │ │ ├── details.glif │ │ │ │ ├── dev-to.glif │ │ │ │ ├── developer-board.glif │ │ │ │ ├── deviantart.glif │ │ │ │ ├── devices.glif │ │ │ │ ├── dharmachakra.glif │ │ │ │ ├── diabetes.glif │ │ │ │ ├── dialpad.glif │ │ │ │ ├── diameter-outline.glif │ │ │ │ ├── diameter-variant.glif │ │ │ │ ├── diameter.glif │ │ │ │ ├── diamond-outline.glif │ │ │ │ ├── diamond-stone.glif │ │ │ │ ├── diamond.glif │ │ │ │ ├── dice-1-outline.glif │ │ │ │ ├── dice-1.glif │ │ │ │ ├── dice-2-outline.glif │ │ │ │ ├── dice-2.glif │ │ │ │ ├── dice-3-outline.glif │ │ │ │ ├── dice-3.glif │ │ │ │ ├── dice-4-outline.glif │ │ │ │ ├── dice-4.glif │ │ │ │ ├── dice-5-outline.glif │ │ │ │ ├── dice-5.glif │ │ │ │ ├── dice-6-outline.glif │ │ │ │ ├── dice-6.glif │ │ │ │ ├── dice-d10-outline.glif │ │ │ │ ├── dice-d10.glif │ │ │ │ ├── dice-d12-outline.glif │ │ │ │ ├── dice-d12.glif │ │ │ │ ├── dice-d20-outline.glif │ │ │ │ ├── dice-d20.glif │ │ │ │ ├── dice-d4-outline.glif │ │ │ │ ├── dice-d4.glif │ │ │ │ ├── dice-d6-outline.glif │ │ │ │ ├── dice-d6.glif │ │ │ │ ├── dice-d8-outline.glif │ │ │ │ ├── dice-d8.glif │ │ │ │ ├── dice-multiple-outline.glif │ │ │ │ ├── dice-multiple.glif │ │ │ │ ├── digital-ocean.glif │ │ │ │ ├── dip-switch.glif │ │ │ │ ├── directions-fork.glif │ │ │ │ ├── directions.glif │ │ │ │ ├── disc-alert.glif │ │ │ │ ├── disc-player.glif │ │ │ │ ├── disc.glif │ │ │ │ ├── discord.glif │ │ │ │ ├── dishwasher-alert.glif │ │ │ │ ├── dishwasher-off.glif │ │ │ │ ├── dishwasher.glif │ │ │ │ ├── disqus.glif │ │ │ │ ├── distribute-horizontal-center.glif │ │ │ │ ├── distribute-horizontal-left.glif │ │ │ │ ├── distribute-horizontal-right.glif │ │ │ │ ├── distribute-vertical-bottom.glif │ │ │ │ ├── distribute-vertical-center.glif │ │ │ │ ├── distribute-vertical-top.glif │ │ │ │ ├── diversify.glif │ │ │ │ ├── diving-flippers.glif │ │ │ │ ├── diving-helmet.glif │ │ │ │ ├── diving-scuba-flag.glif │ │ │ │ ├── diving-scuba-tank-multiple.glif │ │ │ │ ├── diving-scuba-tank.glif │ │ │ │ ├── diving-scuba.glif │ │ │ │ ├── diving-snorkel.glif │ │ │ │ ├── diving.glif │ │ │ │ ├── division-box.glif │ │ │ │ ├── division.glif │ │ │ │ ├── dlna.glif │ │ │ │ ├── dna.glif │ │ │ │ ├── dns-outline.glif │ │ │ │ ├── dns.glif │ │ │ │ ├── dock-bottom.glif │ │ │ │ ├── dock-left.glif │ │ │ │ ├── dock-right.glif │ │ │ │ ├── dock-top.glif │ │ │ │ ├── dock-window.glif │ │ │ │ ├── docker.glif │ │ │ │ ├── doctor.glif │ │ │ │ ├── dog-service.glif │ │ │ │ ├── dog-side-off.glif │ │ │ │ ├── dog-side.glif │ │ │ │ ├── dog.glif │ │ │ │ ├── dolby.glif │ │ │ │ ├── dolly.glif │ │ │ │ ├── dolphin.glif │ │ │ │ ├── domain-off.glif │ │ │ │ ├── domain-plus.glif │ │ │ │ ├── domain-remove.glif │ │ │ │ ├── domain.glif │ │ │ │ ├── dome-light.glif │ │ │ │ ├── domino-mask.glif │ │ │ │ ├── donkey.glif │ │ │ │ ├── door-closed-lock.glif │ │ │ │ ├── door-closed.glif │ │ │ │ ├── door-open.glif │ │ │ │ ├── door-sliding-lock.glif │ │ │ │ ├── door-sliding-open.glif │ │ │ │ ├── door-sliding.glif │ │ │ │ ├── door.glif │ │ │ │ ├── doorbell-video.glif │ │ │ │ ├── doorbell.glif │ │ │ │ ├── dot-net.glif │ │ │ │ ├── dots-circle.glif │ │ │ │ ├── dots-grid.glif │ │ │ │ ├── dots-hexagon.glif │ │ │ │ ├── dots-horizontal-circle-outline.glif │ │ │ │ ├── dots-horizontal-circle.glif │ │ │ │ ├── dots-horizontal.glif │ │ │ │ ├── dots-square.glif │ │ │ │ ├── dots-triangle.glif │ │ │ │ ├── dots-vertical-circle-outline.glif │ │ │ │ ├── dots-vertical-circle.glif │ │ │ │ ├── dots-vertical.glif │ │ │ │ ├── download-box-outline.glif │ │ │ │ ├── download-box.glif │ │ │ │ ├── download-circle-outline.glif │ │ │ │ ├── download-circle.glif │ │ │ │ ├── download-lock-outline.glif │ │ │ │ ├── download-lock.glif │ │ │ │ ├── download-multiple.glif │ │ │ │ ├── download-network-outline.glif │ │ │ │ ├── download-network.glif │ │ │ │ ├── download-off-outline.glif │ │ │ │ ├── download-off.glif │ │ │ │ ├── download-outline.glif │ │ │ │ ├── download.glif │ │ │ │ ├── drag-horizontal-variant.glif │ │ │ │ ├── drag-horizontal.glif │ │ │ │ ├── drag-variant.glif │ │ │ │ ├── drag-vertical-variant.glif │ │ │ │ ├── drag-vertical.glif │ │ │ │ ├── drag.glif │ │ │ │ ├── drama-masks.glif │ │ │ │ ├── draw-pen.glif │ │ │ │ ├── draw.glif │ │ │ │ ├── drawing-box.glif │ │ │ │ ├── drawing.glif │ │ │ │ ├── dresser-outline.glif │ │ │ │ ├── dresser.glif │ │ │ │ ├── drone.glif │ │ │ │ ├── dropbox.glif │ │ │ │ ├── drupal.glif │ │ │ │ ├── duck.glif │ │ │ │ ├── dumbbell.glif │ │ │ │ ├── dump-truck.glif │ │ │ │ ├── ear-hearing-loop.glif │ │ │ │ ├── ear-hearing-off.glif │ │ │ │ ├── ear-hearing.glif │ │ │ │ ├── earbuds-off-outline.glif │ │ │ │ ├── earbuds-off.glif │ │ │ │ ├── earbuds-outline.glif │ │ │ │ ├── earbuds.glif │ │ │ │ ├── earth-arrow-right.glif │ │ │ │ ├── earth-box-minus.glif │ │ │ │ ├── earth-box-off.glif │ │ │ │ ├── earth-box-plus.glif │ │ │ │ ├── earth-box-remove.glif │ │ │ │ ├── earth-box.glif │ │ │ │ ├── earth-minus.glif │ │ │ │ ├── earth-off.glif │ │ │ │ ├── earth-plus.glif │ │ │ │ ├── earth-remove.glif │ │ │ │ ├── earth.glif │ │ │ │ ├── egg-easter.glif │ │ │ │ ├── egg-fried.glif │ │ │ │ ├── egg-off-outline.glif │ │ │ │ ├── egg-off.glif │ │ │ │ ├── egg-outline.glif │ │ │ │ ├── egg.glif │ │ │ │ ├── eiffel-tower.glif │ │ │ │ ├── eight-track.glif │ │ │ │ ├── eject-outline.glif │ │ │ │ ├── eject.glif │ │ │ │ ├── electric-switch-closed.glif │ │ │ │ ├── electric-switch.glif │ │ │ │ ├── electron-framework.glif │ │ │ │ ├── elephant.glif │ │ │ │ ├── elevation-decline.glif │ │ │ │ ├── elevation-rise.glif │ │ │ │ ├── elevator-down.glif │ │ │ │ ├── elevator-passenger-off-outline.glif │ │ │ │ ├── elevator-passenger-off.glif │ │ │ │ ├── elevator-passenger-outline.glif │ │ │ │ ├── elevator-passenger.glif │ │ │ │ ├── elevator-up.glif │ │ │ │ ├── elevator.glif │ │ │ │ ├── ellipse-outline.glif │ │ │ │ ├── ellipse.glif │ │ │ │ ├── email-alert-outline.glif │ │ │ │ ├── email-alert.glif │ │ │ │ ├── email-box.glif │ │ │ │ ├── email-check-outline.glif │ │ │ │ ├── email-check.glif │ │ │ │ ├── email-edit-outline.glif │ │ │ │ ├── email-edit.glif │ │ │ │ ├── email-fast-outline.glif │ │ │ │ ├── email-fast.glif │ │ │ │ ├── email-lock.glif │ │ │ │ ├── email-mark-as-unread.glif │ │ │ │ ├── email-minus-outline.glif │ │ │ │ ├── email-minus.glif │ │ │ │ ├── email-multiple-outline.glif │ │ │ │ ├── email-multiple.glif │ │ │ │ ├── email-newsletter.glif │ │ │ │ ├── email-off-outline.glif │ │ │ │ ├── email-off.glif │ │ │ │ ├── email-open-multiple-outline.glif │ │ │ │ ├── email-open-multiple.glif │ │ │ │ ├── email-open-outline.glif │ │ │ │ ├── email-open.glif │ │ │ │ ├── email-outline.glif │ │ │ │ ├── email-plus-outline.glif │ │ │ │ ├── email-plus.glif │ │ │ │ ├── email-receive-outline.glif │ │ │ │ ├── email-receive.glif │ │ │ │ ├── email-remove-outline.glif │ │ │ │ ├── email-remove.glif │ │ │ │ ├── email-seal-outline.glif │ │ │ │ ├── email-seal.glif │ │ │ │ ├── email-search-outline.glif │ │ │ │ ├── email-search.glif │ │ │ │ ├── email-send-outline.glif │ │ │ │ ├── email-send.glif │ │ │ │ ├── email-sync-outline.glif │ │ │ │ ├── email-sync.glif │ │ │ │ ├── email-variant.glif │ │ │ │ ├── email.glif │ │ │ │ ├── ember.glif │ │ │ │ ├── emby.glif │ │ │ │ ├── emoticon-angry-outline.glif │ │ │ │ ├── emoticon-angry.glif │ │ │ │ ├── emoticon-confused-outline.glif │ │ │ │ ├── emoticon-confused.glif │ │ │ │ ├── emoticon-cool-outline.glif │ │ │ │ ├── emoticon-cool.glif │ │ │ │ ├── emoticon-cry-outline.glif │ │ │ │ ├── emoticon-cry.glif │ │ │ │ ├── emoticon-dead-outline.glif │ │ │ │ ├── emoticon-dead.glif │ │ │ │ ├── emoticon-devil-outline.glif │ │ │ │ ├── emoticon-devil.glif │ │ │ │ ├── emoticon-excited-outline.glif │ │ │ │ ├── emoticon-excited.glif │ │ │ │ ├── emoticon-frown-outline.glif │ │ │ │ ├── emoticon-frown.glif │ │ │ │ ├── emoticon-happy-outline.glif │ │ │ │ ├── emoticon-happy.glif │ │ │ │ ├── emoticon-kiss-outline.glif │ │ │ │ ├── emoticon-kiss.glif │ │ │ │ ├── emoticon-lol-outline.glif │ │ │ │ ├── emoticon-lol.glif │ │ │ │ ├── emoticon-neutral-outline.glif │ │ │ │ ├── emoticon-neutral.glif │ │ │ │ ├── emoticon-outline.glif │ │ │ │ ├── emoticon-poop-outline.glif │ │ │ │ ├── emoticon-poop.glif │ │ │ │ ├── emoticon-sad-outline.glif │ │ │ │ ├── emoticon-sad.glif │ │ │ │ ├── emoticon-sick-outline.glif │ │ │ │ ├── emoticon-sick.glif │ │ │ │ ├── emoticon-tongue-outline.glif │ │ │ │ ├── emoticon-tongue.glif │ │ │ │ ├── emoticon-wink-outline.glif │ │ │ │ ├── emoticon-wink.glif │ │ │ │ ├── emoticon.glif │ │ │ │ ├── engine-off-outline.glif │ │ │ │ ├── engine-off.glif │ │ │ │ ├── engine-outline.glif │ │ │ │ ├── engine.glif │ │ │ │ ├── epsilon.glif │ │ │ │ ├── equal-box.glif │ │ │ │ ├── equal.glif │ │ │ │ ├── equalizer-outline.glif │ │ │ │ ├── equalizer.glif │ │ │ │ ├── eraser-variant.glif │ │ │ │ ├── eraser.glif │ │ │ │ ├── escalator-box.glif │ │ │ │ ├── escalator-down.glif │ │ │ │ ├── escalator-up.glif │ │ │ │ ├── escalator.glif │ │ │ │ ├── eslint.glif │ │ │ │ ├── et.glif │ │ │ │ ├── ethereum.glif │ │ │ │ ├── ethernet-cable-off.glif │ │ │ │ ├── ethernet-cable.glif │ │ │ │ ├── ethernet.glif │ │ │ │ ├── ev-plug-ccs1.glif │ │ │ │ ├── ev-plug-ccs2.glif │ │ │ │ ├── ev-plug-chademo.glif │ │ │ │ ├── ev-plug-tesla.glif │ │ │ │ ├── ev-plug-type1.glif │ │ │ │ ├── ev-plug-type2.glif │ │ │ │ ├── ev-station.glif │ │ │ │ ├── evernote.glif │ │ │ │ ├── excavator.glif │ │ │ │ ├── exclamation-thick.glif │ │ │ │ ├── exclamation.glif │ │ │ │ ├── exit-run.glif │ │ │ │ ├── exit-to-app.glif │ │ │ │ ├── expand-all-outline.glif │ │ │ │ ├── expand-all.glif │ │ │ │ ├── expansion-card-variant.glif │ │ │ │ ├── expansion-card.glif │ │ │ │ ├── exponent-box.glif │ │ │ │ ├── exponent.glif │ │ │ │ ├── export-variant.glif │ │ │ │ ├── export.glif │ │ │ │ ├── eye-arrow-left-outline.glif │ │ │ │ ├── eye-arrow-left.glif │ │ │ │ ├── eye-arrow-right-outline.glif │ │ │ │ ├── eye-arrow-right.glif │ │ │ │ ├── eye-check-outline.glif │ │ │ │ ├── eye-check.glif │ │ │ │ ├── eye-circle-outline.glif │ │ │ │ ├── eye-circle.glif │ │ │ │ ├── eye-minus-outline.glif │ │ │ │ ├── eye-minus.glif │ │ │ │ ├── eye-off-outline.glif │ │ │ │ ├── eye-off.glif │ │ │ │ ├── eye-outline.glif │ │ │ │ ├── eye-plus-outline.glif │ │ │ │ ├── eye-plus.glif │ │ │ │ ├── eye-refresh-outline.glif │ │ │ │ ├── eye-refresh.glif │ │ │ │ ├── eye-remove-outline.glif │ │ │ │ ├── eye-remove.glif │ │ │ │ ├── eye-settings-outline.glif │ │ │ │ ├── eye-settings.glif │ │ │ │ ├── eye.glif │ │ │ │ ├── eyedropper-minus.glif │ │ │ │ ├── eyedropper-off.glif │ │ │ │ ├── eyedropper-plus.glif │ │ │ │ ├── eyedropper-remove.glif │ │ │ │ ├── eyedropper-variant.glif │ │ │ │ ├── eyedropper.glif │ │ │ │ ├── face-agent.glif │ │ │ │ ├── face-man-outline.glif │ │ │ │ ├── face-man-profile.glif │ │ │ │ ├── face-man-shimmer-outline.glif │ │ │ │ ├── face-man-shimmer.glif │ │ │ │ ├── face-man.glif │ │ │ │ ├── face-mask-outline.glif │ │ │ │ ├── face-mask.glif │ │ │ │ ├── face-recognition.glif │ │ │ │ ├── face-woman-outline.glif │ │ │ │ ├── face-woman-profile.glif │ │ │ │ ├── face-woman-shimmer-outline.glif │ │ │ │ ├── face-woman-shimmer.glif │ │ │ │ ├── face-woman.glif │ │ │ │ ├── facebook-gaming.glif │ │ │ │ ├── facebook-messenger.glif │ │ │ │ ├── facebook-workplace.glif │ │ │ │ ├── facebook.glif │ │ │ │ ├── factory.glif │ │ │ │ ├── family-tree.glif │ │ │ │ ├── fan-alert.glif │ │ │ │ ├── fan-auto.glif │ │ │ │ ├── fan-chevron-down.glif │ │ │ │ ├── fan-chevron-up.glif │ │ │ │ ├── fan-clock.glif │ │ │ │ ├── fan-minus.glif │ │ │ │ ├── fan-off.glif │ │ │ │ ├── fan-plus.glif │ │ │ │ ├── fan-remove.glif │ │ │ │ ├── fan-speed-1.glif │ │ │ │ ├── fan-speed-2.glif │ │ │ │ ├── fan-speed-3.glif │ │ │ │ ├── fan.glif │ │ │ │ ├── fast-forward-10.glif │ │ │ │ ├── fast-forward-15.glif │ │ │ │ ├── fast-forward-30.glif │ │ │ │ ├── fast-forward-5.glif │ │ │ │ ├── fast-forward-60.glif │ │ │ │ ├── fast-forward-outline.glif │ │ │ │ ├── fast-forward.glif │ │ │ │ ├── fax.glif │ │ │ │ ├── feather.glif │ │ │ │ ├── feature-search-outline.glif │ │ │ │ ├── feature-search.glif │ │ │ │ ├── fedora.glif │ │ │ │ ├── fence-electric.glif │ │ │ │ ├── fence.glif │ │ │ │ ├── fencing.glif │ │ │ │ ├── ferris-wheel.glif │ │ │ │ ├── ferry.glif │ │ │ │ ├── file-account-outline.glif │ │ │ │ ├── file-account.glif │ │ │ │ ├── file-alert-outline.glif │ │ │ │ ├── file-alert.glif │ │ │ │ ├── file-arrow-left-right-outline.glif │ │ │ │ ├── file-arrow-left-right.glif │ │ │ │ ├── file-arrow-up-down-outline.glif │ │ │ │ ├── file-arrow-up-down.glif │ │ │ │ ├── file-cabinet.glif │ │ │ │ ├── file-cad-box.glif │ │ │ │ ├── file-cad.glif │ │ │ │ ├── file-cancel-outline.glif │ │ │ │ ├── file-cancel.glif │ │ │ │ ├── file-certificate-outline.glif │ │ │ │ ├── file-certificate.glif │ │ │ │ ├── file-chart-check-outline.glif │ │ │ │ ├── file-chart-check.glif │ │ │ │ ├── file-chart-outline.glif │ │ │ │ ├── file-chart.glif │ │ │ │ ├── file-check-outline.glif │ │ │ │ ├── file-check.glif │ │ │ │ ├── file-clock-outline.glif │ │ │ │ ├── file-clock.glif │ │ │ │ ├── file-cloud-outline.glif │ │ │ │ ├── file-cloud.glif │ │ │ │ ├── file-code-outline.glif │ │ │ │ ├── file-code.glif │ │ │ │ ├── file-cog-outline.glif │ │ │ │ ├── file-cog.glif │ │ │ │ ├── file-compare.glif │ │ │ │ ├── file-delimited-outline.glif │ │ │ │ ├── file-delimited.glif │ │ │ │ ├── file-document-alert-outline.glif │ │ │ │ ├── file-document-alert.glif │ │ │ │ ├── file-document-check-outline.glif │ │ │ │ ├── file-document-check.glif │ │ │ │ ├── file-document-edit-outline.glif │ │ │ │ ├── file-document-edit.glif │ │ │ │ ├── file-document-minus-outline.glif │ │ │ │ ├── file-document-minus.glif │ │ │ │ ├── file-document-multiple-outline.glif │ │ │ │ ├── file-document-multiple.glif │ │ │ │ ├── file-document-outline.glif │ │ │ │ ├── file-document-plus-outline.glif │ │ │ │ ├── file-document-plus.glif │ │ │ │ ├── file-document-remove-outline.glif │ │ │ │ ├── file-document-remove.glif │ │ │ │ ├── file-document.glif │ │ │ │ ├── file-download-outline.glif │ │ │ │ ├── file-download.glif │ │ │ │ ├── file-edit-outline.glif │ │ │ │ ├── file-edit.glif │ │ │ │ ├── file-excel-box-outline.glif │ │ │ │ ├── file-excel-box.glif │ │ │ │ ├── file-excel-outline.glif │ │ │ │ ├── file-excel.glif │ │ │ │ ├── file-export-outline.glif │ │ │ │ ├── file-export.glif │ │ │ │ ├── file-eye-outline.glif │ │ │ │ ├── file-eye.glif │ │ │ │ ├── file-find-outline.glif │ │ │ │ ├── file-find.glif │ │ │ │ ├── file-gif-box.glif │ │ │ │ ├── file-hidden.glif │ │ │ │ ├── file-image-marker-outline.glif │ │ │ │ ├── file-image-marker.glif │ │ │ │ ├── file-image-minus-outline.glif │ │ │ │ ├── file-image-minus.glif │ │ │ │ ├── file-image-outline.glif │ │ │ │ ├── file-image-plus-outline.glif │ │ │ │ ├── file-image-plus.glif │ │ │ │ ├── file-image-remove-outline.glif │ │ │ │ ├── file-image-remove.glif │ │ │ │ ├── file-image.glif │ │ │ │ ├── file-import-outline.glif │ │ │ │ ├── file-import.glif │ │ │ │ ├── file-jpg-box.glif │ │ │ │ ├── file-key-outline.glif │ │ │ │ ├── file-key.glif │ │ │ │ ├── file-link-outline.glif │ │ │ │ ├── file-link.glif │ │ │ │ ├── file-lock-open-outline.glif │ │ │ │ ├── file-lock-open.glif │ │ │ │ ├── file-lock-outline.glif │ │ │ │ ├── file-lock.glif │ │ │ │ ├── file-marker-outline.glif │ │ │ │ ├── file-marker.glif │ │ │ │ ├── file-minus-outline.glif │ │ │ │ ├── file-minus.glif │ │ │ │ ├── file-move-outline.glif │ │ │ │ ├── file-move.glif │ │ │ │ ├── file-multiple-outline.glif │ │ │ │ ├── file-multiple.glif │ │ │ │ ├── file-music-outline.glif │ │ │ │ ├── file-music.glif │ │ │ │ ├── file-outline.glif │ │ │ │ ├── file-pdf-box.glif │ │ │ │ ├── file-percent-outline.glif │ │ │ │ ├── file-percent.glif │ │ │ │ ├── file-phone-outline.glif │ │ │ │ ├── file-phone.glif │ │ │ │ ├── file-plus-outline.glif │ │ │ │ ├── file-plus.glif │ │ │ │ ├── file-png-box.glif │ │ │ │ ├── file-powerpoint-box-outline.glif │ │ │ │ ├── file-powerpoint-box.glif │ │ │ │ ├── file-powerpoint-outline.glif │ │ │ │ ├── file-powerpoint.glif │ │ │ │ ├── file-presentation-box.glif │ │ │ │ ├── file-question-outline.glif │ │ │ │ ├── file-question.glif │ │ │ │ ├── file-refresh-outline.glif │ │ │ │ ├── file-refresh.glif │ │ │ │ ├── file-remove-outline.glif │ │ │ │ ├── file-remove.glif │ │ │ │ ├── file-replace-outline.glif │ │ │ │ ├── file-replace.glif │ │ │ │ ├── file-restore-outline.glif │ │ │ │ ├── file-restore.glif │ │ │ │ ├── file-rotate-left-outline.glif │ │ │ │ ├── file-rotate-left.glif │ │ │ │ ├── file-rotate-right-outline.glif │ │ │ │ ├── file-rotate-right.glif │ │ │ │ ├── file-search-outline.glif │ │ │ │ ├── file-search.glif │ │ │ │ ├── file-send-outline.glif │ │ │ │ ├── file-send.glif │ │ │ │ ├── file-settings-outline.glif │ │ │ │ ├── file-settings.glif │ │ │ │ ├── file-sign.glif │ │ │ │ ├── file-star-outline.glif │ │ │ │ ├── file-star.glif │ │ │ │ ├── file-swap-outline.glif │ │ │ │ ├── file-swap.glif │ │ │ │ ├── file-sync-outline.glif │ │ │ │ ├── file-sync.glif │ │ │ │ ├── file-table-box-multiple-outline.glif │ │ │ │ ├── file-table-box-multiple.glif │ │ │ │ ├── file-table-box-outline.glif │ │ │ │ ├── file-table-box.glif │ │ │ │ ├── file-table-outline.glif │ │ │ │ ├── file-table.glif │ │ │ │ ├── file-tree-outline.glif │ │ │ │ ├── file-tree.glif │ │ │ │ ├── file-undo-outline.glif │ │ │ │ ├── file-undo.glif │ │ │ │ ├── file-upload-outline.glif │ │ │ │ ├── file-upload.glif │ │ │ │ ├── file-video-outline.glif │ │ │ │ ├── file-video.glif │ │ │ │ ├── file-word-box-outline.glif │ │ │ │ ├── file-word-box.glif │ │ │ │ ├── file-word-outline.glif │ │ │ │ ├── file-word.glif │ │ │ │ ├── file.glif │ │ │ │ ├── film.glif │ │ │ │ ├── filmstrip-box-multiple.glif │ │ │ │ ├── filmstrip-box.glif │ │ │ │ ├── filmstrip-off.glif │ │ │ │ ├── filmstrip.glif │ │ │ │ ├── filter-check-outline.glif │ │ │ │ ├── filter-check.glif │ │ │ │ ├── filter-cog-outline.glif │ │ │ │ ├── filter-cog.glif │ │ │ │ ├── filter-menu-outline.glif │ │ │ │ ├── filter-menu.glif │ │ │ │ ├── filter-minus-outline.glif │ │ │ │ ├── filter-minus.glif │ │ │ │ ├── filter-multiple-outline.glif │ │ │ │ ├── filter-multiple.glif │ │ │ │ ├── filter-off-outline.glif │ │ │ │ ├── filter-off.glif │ │ │ │ ├── filter-outline.glif │ │ │ │ ├── filter-plus-outline.glif │ │ │ │ ├── filter-plus.glif │ │ │ │ ├── filter-remove-outline.glif │ │ │ │ ├── filter-remove.glif │ │ │ │ ├── filter-settings-outline.glif │ │ │ │ ├── filter-settings.glif │ │ │ │ ├── filter-variant-minus.glif │ │ │ │ ├── filter-variant-plus.glif │ │ │ │ ├── filter-variant-remove.glif │ │ │ │ ├── filter-variant.glif │ │ │ │ ├── filter.glif │ │ │ │ ├── finance.glif │ │ │ │ ├── find-replace.glif │ │ │ │ ├── fingerprint-off.glif │ │ │ │ ├── fingerprint.glif │ │ │ │ ├── fire-alert.glif │ │ │ │ ├── fire-circle.glif │ │ │ │ ├── fire-extinguisher.glif │ │ │ │ ├── fire-hydrant-alert.glif │ │ │ │ ├── fire-hydrant-off.glif │ │ │ │ ├── fire-hydrant.glif │ │ │ │ ├── fire-off.glif │ │ │ │ ├── fire-truck.glif │ │ │ │ ├── fire.glif │ │ │ │ ├── firebase.glif │ │ │ │ ├── firefox.glif │ │ │ │ ├── fireplace-off.glif │ │ │ │ ├── fireplace.glif │ │ │ │ ├── firewire.glif │ │ │ │ ├── firework-off.glif │ │ │ │ ├── firework.glif │ │ │ │ ├── fish-off.glif │ │ │ │ ├── fish.glif │ │ │ │ ├── fishbowl-outline.glif │ │ │ │ ├── fishbowl.glif │ │ │ │ ├── fit-to-page-outline.glif │ │ │ │ ├── fit-to-page.glif │ │ │ │ ├── fit-to-screen-outline.glif │ │ │ │ ├── fit-to-screen.glif │ │ │ │ ├── flag-checkered.glif │ │ │ │ ├── flag-minus-outline.glif │ │ │ │ ├── flag-minus.glif │ │ │ │ ├── flag-off-outline.glif │ │ │ │ ├── flag-off.glif │ │ │ │ ├── flag-outline.glif │ │ │ │ ├── flag-plus-outline.glif │ │ │ │ ├── flag-plus.glif │ │ │ │ ├── flag-remove-outline.glif │ │ │ │ ├── flag-remove.glif │ │ │ │ ├── flag-triangle.glif │ │ │ │ ├── flag-variant-outline.glif │ │ │ │ ├── flag-variant.glif │ │ │ │ ├── flag.glif │ │ │ │ ├── flare.glif │ │ │ │ ├── flash-alert-outline.glif │ │ │ │ ├── flash-alert.glif │ │ │ │ ├── flash-auto.glif │ │ │ │ ├── flash-off.glif │ │ │ │ ├── flash-outline.glif │ │ │ │ ├── flash-red-eye.glif │ │ │ │ ├── flash.glif │ │ │ │ ├── flashlight-off.glif │ │ │ │ ├── flashlight.glif │ │ │ │ ├── flask-empty-minus-outline.glif │ │ │ │ ├── flask-empty-minus.glif │ │ │ │ ├── flask-empty-off-outline.glif │ │ │ │ ├── flask-empty-off.glif │ │ │ │ ├── flask-empty-outline.glif │ │ │ │ ├── flask-empty-plus-outline.glif │ │ │ │ ├── flask-empty-plus.glif │ │ │ │ ├── flask-empty-remove-outline.glif │ │ │ │ ├── flask-empty-remove.glif │ │ │ │ ├── flask-empty.glif │ │ │ │ ├── flask-minus-outline.glif │ │ │ │ ├── flask-minus.glif │ │ │ │ ├── flask-off-outline.glif │ │ │ │ ├── flask-off.glif │ │ │ │ ├── flask-outline.glif │ │ │ │ ├── flask-plus-outline.glif │ │ │ │ ├── flask-plus.glif │ │ │ │ ├── flask-remove-outline.glif │ │ │ │ ├── flask-remove.glif │ │ │ │ ├── flask-round-bottom-empty-outline.glif │ │ │ │ ├── flask-round-bottom-empty.glif │ │ │ │ ├── flask-round-bottom-outline.glif │ │ │ │ ├── flask-round-bottom.glif │ │ │ │ ├── flask.glif │ │ │ │ ├── fleur-de-lis.glif │ │ │ │ ├── flip-horizontal.glif │ │ │ │ ├── flip-to-back.glif │ │ │ │ ├── flip-to-front.glif │ │ │ │ ├── flip-vertical.glif │ │ │ │ ├── floor-lamp-dual-outline.glif │ │ │ │ ├── floor-lamp-dual.glif │ │ │ │ ├── floor-lamp-outline.glif │ │ │ │ ├── floor-lamp-torchiere-outline.glif │ │ │ │ ├── floor-lamp-torchiere-variant-outline.glif │ │ │ │ ├── floor-lamp-torchiere-variant.glif │ │ │ │ ├── floor-lamp-torchiere.glif │ │ │ │ ├── floor-lamp.glif │ │ │ │ ├── floor-plan.glif │ │ │ │ ├── floppy-variant.glif │ │ │ │ ├── floppy.glif │ │ │ │ ├── flower-outline.glif │ │ │ │ ├── flower-pollen-outline.glif │ │ │ │ ├── flower-pollen.glif │ │ │ │ ├── flower-poppy.glif │ │ │ │ ├── flower-tulip-outline.glif │ │ │ │ ├── flower-tulip.glif │ │ │ │ ├── flower.glif │ │ │ │ ├── focus-auto.glif │ │ │ │ ├── focus-field-horizontal.glif │ │ │ │ ├── focus-field-vertical.glif │ │ │ │ ├── focus-field.glif │ │ │ │ ├── folder-account-outline.glif │ │ │ │ ├── folder-account.glif │ │ │ │ ├── folder-alert-outline.glif │ │ │ │ ├── folder-alert.glif │ │ │ │ ├── folder-arrow-down-outline.glif │ │ │ │ ├── folder-arrow-down.glif │ │ │ │ ├── folder-arrow-left-outline.glif │ │ │ │ ├── folder-arrow-left-right-outline.glif │ │ │ │ ├── folder-arrow-left-right.glif │ │ │ │ ├── folder-arrow-left.glif │ │ │ │ ├── folder-arrow-right-outline.glif │ │ │ │ ├── folder-arrow-right.glif │ │ │ │ ├── folder-arrow-up-down-outline.glif │ │ │ │ ├── folder-arrow-up-down.glif │ │ │ │ ├── folder-arrow-up-outline.glif │ │ │ │ ├── folder-arrow-up.glif │ │ │ │ ├── folder-cancel-outline.glif │ │ │ │ ├── folder-cancel.glif │ │ │ │ ├── folder-check-outline.glif │ │ │ │ ├── folder-check.glif │ │ │ │ ├── folder-clock-outline.glif │ │ │ │ ├── folder-clock.glif │ │ │ │ ├── folder-cog-outline.glif │ │ │ │ ├── folder-cog.glif │ │ │ │ ├── folder-download-outline.glif │ │ │ │ ├── folder-download.glif │ │ │ │ ├── folder-edit-outline.glif │ │ │ │ ├── folder-edit.glif │ │ │ │ ├── folder-eye-outline.glif │ │ │ │ ├── folder-eye.glif │ │ │ │ ├── folder-file-outline.glif │ │ │ │ ├── folder-file.glif │ │ │ │ ├── folder-google-drive.glif │ │ │ │ ├── folder-heart-outline.glif │ │ │ │ ├── folder-heart.glif │ │ │ │ ├── folder-hidden.glif │ │ │ │ ├── folder-home-outline.glif │ │ │ │ ├── folder-home.glif │ │ │ │ ├── folder-image.glif │ │ │ │ ├── folder-information-outline.glif │ │ │ │ ├── folder-information.glif │ │ │ │ ├── folder-key-network-outline.glif │ │ │ │ ├── folder-key-network.glif │ │ │ │ ├── folder-key-outline.glif │ │ │ │ ├── folder-key.glif │ │ │ │ ├── folder-lock-open-outline.glif │ │ │ │ ├── folder-lock-open.glif │ │ │ │ ├── folder-lock-outline.glif │ │ │ │ ├── folder-lock.glif │ │ │ │ ├── folder-marker-outline.glif │ │ │ │ ├── folder-marker.glif │ │ │ │ ├── folder-move-outline.glif │ │ │ │ ├── folder-move.glif │ │ │ │ ├── folder-multiple-image.glif │ │ │ │ ├── folder-multiple-outline.glif │ │ │ │ ├── folder-multiple-plus-outline.glif │ │ │ │ ├── folder-multiple-plus.glif │ │ │ │ ├── folder-multiple.glif │ │ │ │ ├── folder-music-outline.glif │ │ │ │ ├── folder-music.glif │ │ │ │ ├── folder-network-outline.glif │ │ │ │ ├── folder-network.glif │ │ │ │ ├── folder-off-outline.glif │ │ │ │ ├── folder-off.glif │ │ │ │ ├── folder-open-outline.glif │ │ │ │ ├── folder-open.glif │ │ │ │ ├── folder-outline.glif │ │ │ │ ├── folder-play-outline.glif │ │ │ │ ├── folder-play.glif │ │ │ │ ├── folder-plus-outline.glif │ │ │ │ ├── folder-plus.glif │ │ │ │ ├── folder-pound-outline.glif │ │ │ │ ├── folder-pound.glif │ │ │ │ ├── folder-question-outline.glif │ │ │ │ ├── folder-question.glif │ │ │ │ ├── folder-refresh-outline.glif │ │ │ │ ├── folder-refresh.glif │ │ │ │ ├── folder-remove-outline.glif │ │ │ │ ├── folder-remove.glif │ │ │ │ ├── folder-search-outline.glif │ │ │ │ ├── folder-search.glif │ │ │ │ ├── folder-settings-outline.glif │ │ │ │ ├── folder-settings.glif │ │ │ │ ├── folder-star-multiple-outline.glif │ │ │ │ ├── folder-star-multiple.glif │ │ │ │ ├── folder-star-outline.glif │ │ │ │ ├── folder-star.glif │ │ │ │ ├── folder-swap-outline.glif │ │ │ │ ├── folder-swap.glif │ │ │ │ ├── folder-sync-outline.glif │ │ │ │ ├── folder-sync.glif │ │ │ │ ├── folder-table-outline.glif │ │ │ │ ├── folder-table.glif │ │ │ │ ├── folder-text-outline.glif │ │ │ │ ├── folder-text.glif │ │ │ │ ├── folder-upload-outline.glif │ │ │ │ ├── folder-upload.glif │ │ │ │ ├── folder-wrench-outline.glif │ │ │ │ ├── folder-wrench.glif │ │ │ │ ├── folder-zip-outline.glif │ │ │ │ ├── folder-zip.glif │ │ │ │ ├── folder.glif │ │ │ │ ├── font-awesome.glif │ │ │ │ ├── food-apple-outline.glif │ │ │ │ ├── food-apple.glif │ │ │ │ ├── food-croissant.glif │ │ │ │ ├── food-drumstick-off-outline.glif │ │ │ │ ├── food-drumstick-off.glif │ │ │ │ ├── food-drumstick-outline.glif │ │ │ │ ├── food-drumstick.glif │ │ │ │ ├── food-fork-drink.glif │ │ │ │ ├── food-halal.glif │ │ │ │ ├── food-hot-dog.glif │ │ │ │ ├── food-kosher.glif │ │ │ │ ├── food-off-outline.glif │ │ │ │ ├── food-off.glif │ │ │ │ ├── food-outline.glif │ │ │ │ ├── food-steak-off.glif │ │ │ │ ├── food-steak.glif │ │ │ │ ├── food-takeout-box-outline.glif │ │ │ │ ├── food-takeout-box.glif │ │ │ │ ├── food-turkey.glif │ │ │ │ ├── food-variant-off.glif │ │ │ │ ├── food-variant.glif │ │ │ │ ├── food.glif │ │ │ │ ├── foot-print.glif │ │ │ │ ├── football-australian.glif │ │ │ │ ├── football-helmet.glif │ │ │ │ ├── football.glif │ │ │ │ ├── forest.glif │ │ │ │ ├── forklift.glif │ │ │ │ ├── form-dropdown.glif │ │ │ │ ├── form-select.glif │ │ │ │ ├── form-textarea.glif │ │ │ │ ├── form-textbox-lock.glif │ │ │ │ ├── form-textbox-password.glif │ │ │ │ ├── form-textbox.glif │ │ │ │ ├── format-align-bottom.glif │ │ │ │ ├── format-align-center.glif │ │ │ │ ├── format-align-justify.glif │ │ │ │ ├── format-align-left.glif │ │ │ │ ├── format-align-middle.glif │ │ │ │ ├── format-align-right.glif │ │ │ │ ├── format-align-top.glif │ │ │ │ ├── format-annotation-minus.glif │ │ │ │ ├── format-annotation-plus.glif │ │ │ │ ├── format-bold.glif │ │ │ │ ├── format-clear.glif │ │ │ │ ├── format-color-fill.glif │ │ │ │ ├── format-color-highlight.glif │ │ │ │ ├── format-color-marker-cancel.glif │ │ │ │ ├── format-color-text.glif │ │ │ │ ├── format-columns.glif │ │ │ │ ├── format-float-center.glif │ │ │ │ ├── format-float-left.glif │ │ │ │ ├── format-float-none.glif │ │ │ │ ├── format-float-right.glif │ │ │ │ ├── format-font-size-decrease.glif │ │ │ │ ├── format-font-size-increase.glif │ │ │ │ ├── format-font.glif │ │ │ │ ├── format-header-1.glif │ │ │ │ ├── format-header-2.glif │ │ │ │ ├── format-header-3.glif │ │ │ │ ├── format-header-4.glif │ │ │ │ ├── format-header-5.glif │ │ │ │ ├── format-header-6.glif │ │ │ │ ├── format-header-decrease.glif │ │ │ │ ├── format-header-equal.glif │ │ │ │ ├── format-header-increase.glif │ │ │ │ ├── format-header-pound.glif │ │ │ │ ├── format-horizontal-align-center.glif │ │ │ │ ├── format-horizontal-align-left.glif │ │ │ │ ├── format-horizontal-align-right.glif │ │ │ │ ├── format-indent-decrease.glif │ │ │ │ ├── format-indent-increase.glif │ │ │ │ ├── format-italic.glif │ │ │ │ ├── format-letter-case-lower.glif │ │ │ │ ├── format-letter-case-upper.glif │ │ │ │ ├── format-letter-case.glif │ │ │ │ ├── format-letter-ends-with.glif │ │ │ │ ├── format-letter-matches.glif │ │ │ │ ├── format-letter-spacing.glif │ │ │ │ ├── format-letter-starts-with.glif │ │ │ │ ├── format-line-spacing.glif │ │ │ │ ├── format-line-style.glif │ │ │ │ ├── format-line-weight.glif │ │ │ │ ├── format-list-bulleted-square.glif │ │ │ │ ├── format-list-bulleted-triangle.glif │ │ │ │ ├── format-list-bulleted-type.glif │ │ │ │ ├── format-list-bulleted.glif │ │ │ │ ├── format-list-checkbox.glif │ │ │ │ ├── format-list-checks.glif │ │ │ │ ├── format-list-group.glif │ │ │ │ ├── format-list-numbered-rtl.glif │ │ │ │ ├── format-list-numbered.glif │ │ │ │ ├── format-list-text.glif │ │ │ │ ├── format-overline.glif │ │ │ │ ├── format-page-break.glif │ │ │ │ ├── format-page-split.glif │ │ │ │ ├── format-paint.glif │ │ │ │ ├── format-paragraph.glif │ │ │ │ ├── format-pilcrow.glif │ │ │ │ ├── format-quote-close-outline.glif │ │ │ │ ├── format-quote-close.glif │ │ │ │ ├── format-quote-open-outline.glif │ │ │ │ ├── format-quote-open.glif │ │ │ │ ├── format-rotate-90.glif │ │ │ │ ├── format-section.glif │ │ │ │ ├── format-size.glif │ │ │ │ ├── format-strikethrough-variant.glif │ │ │ │ ├── format-strikethrough.glif │ │ │ │ ├── format-subscript.glif │ │ │ │ ├── format-superscript.glif │ │ │ │ ├── format-text-rotation-angle-down.glif │ │ │ │ ├── format-text-rotation-angle-up.glif │ │ │ │ ├── format-text-rotation-down-vertical.glif │ │ │ │ ├── format-text-rotation-down.glif │ │ │ │ ├── format-text-rotation-none.glif │ │ │ │ ├── format-text-rotation-up.glif │ │ │ │ ├── format-text-rotation-vertical.glif │ │ │ │ ├── format-text-variant-outline.glif │ │ │ │ ├── format-text-variant.glif │ │ │ │ ├── format-text-wrapping-clip.glif │ │ │ │ ├── format-text-wrapping-overflow.glif │ │ │ │ ├── format-text-wrapping-wrap.glif │ │ │ │ ├── format-text.glif │ │ │ │ ├── format-textbox.glif │ │ │ │ ├── format-textdirection-l-to-r.glif │ │ │ │ ├── format-textdirection-r-to-l.glif │ │ │ │ ├── format-title.glif │ │ │ │ ├── format-underline-wavy.glif │ │ │ │ ├── format-underline.glif │ │ │ │ ├── format-vertical-align-bottom.glif │ │ │ │ ├── format-vertical-align-center.glif │ │ │ │ ├── format-vertical-align-top.glif │ │ │ │ ├── format-wrap-inline.glif │ │ │ │ ├── format-wrap-square.glif │ │ │ │ ├── format-wrap-tight.glif │ │ │ │ ├── format-wrap-top-bottom.glif │ │ │ │ ├── forum-minus-outline.glif │ │ │ │ ├── forum-minus.glif │ │ │ │ ├── forum-outline.glif │ │ │ │ ├── forum-plus-outline.glif │ │ │ │ ├── forum-plus.glif │ │ │ │ ├── forum-remove-outline.glif │ │ │ │ ├── forum-remove.glif │ │ │ │ ├── forum.glif │ │ │ │ ├── forward.glif │ │ │ │ ├── forwardburger.glif │ │ │ │ ├── fountain-pen-tip.glif │ │ │ │ ├── fountain-pen.glif │ │ │ │ ├── fountain.glif │ │ │ │ ├── fraction-one-half.glif │ │ │ │ ├── freebsd.glif │ │ │ │ ├── french-fries.glif │ │ │ │ ├── frequently-asked-questions.glif │ │ │ │ ├── fridge-alert-outline.glif │ │ │ │ ├── fridge-alert.glif │ │ │ │ ├── fridge-bottom.glif │ │ │ │ ├── fridge-industrial-alert-outline.glif │ │ │ │ ├── fridge-industrial-alert.glif │ │ │ │ ├── fridge-industrial-off-outline.glif │ │ │ │ ├── fridge-industrial-off.glif │ │ │ │ ├── fridge-industrial-outline.glif │ │ │ │ ├── fridge-industrial.glif │ │ │ │ ├── fridge-off-outline.glif │ │ │ │ ├── fridge-off.glif │ │ │ │ ├── fridge-outline.glif │ │ │ │ ├── fridge-top.glif │ │ │ │ ├── fridge-variant-alert-outline.glif │ │ │ │ ├── fridge-variant-alert.glif │ │ │ │ ├── fridge-variant-off-outline.glif │ │ │ │ ├── fridge-variant-off.glif │ │ │ │ ├── fridge-variant-outline.glif │ │ │ │ ├── fridge-variant.glif │ │ │ │ ├── fridge.glif │ │ │ │ ├── fruit-cherries-off.glif │ │ │ │ ├── fruit-cherries.glif │ │ │ │ ├── fruit-citrus-off.glif │ │ │ │ ├── fruit-citrus.glif │ │ │ │ ├── fruit-grapes-outline.glif │ │ │ │ ├── fruit-grapes.glif │ │ │ │ ├── fruit-pear.glif │ │ │ │ ├── fruit-pineapple.glif │ │ │ │ ├── fruit-watermelon.glif │ │ │ │ ├── fuel-cell.glif │ │ │ │ ├── fuel.glif │ │ │ │ ├── fullscreen-exit.glif │ │ │ │ ├── fullscreen.glif │ │ │ │ ├── function-variant.glif │ │ │ │ ├── function.glif │ │ │ │ ├── furigana-horizontal.glif │ │ │ │ ├── furigana-vertical.glif │ │ │ │ ├── fuse-alert.glif │ │ │ │ ├── fuse-blade.glif │ │ │ │ ├── fuse-off.glif │ │ │ │ ├── fuse.glif │ │ │ │ ├── gamepad-circle-down.glif │ │ │ │ ├── gamepad-circle-left.glif │ │ │ │ ├── gamepad-circle-outline.glif │ │ │ │ ├── gamepad-circle-right.glif │ │ │ │ ├── gamepad-circle-up.glif │ │ │ │ ├── gamepad-circle.glif │ │ │ │ ├── gamepad-down.glif │ │ │ │ ├── gamepad-left.glif │ │ │ │ ├── gamepad-outline.glif │ │ │ │ ├── gamepad-right.glif │ │ │ │ ├── gamepad-round-down.glif │ │ │ │ ├── gamepad-round-left.glif │ │ │ │ ├── gamepad-round-outline.glif │ │ │ │ ├── gamepad-round-right.glif │ │ │ │ ├── gamepad-round-up.glif │ │ │ │ ├── gamepad-round.glif │ │ │ │ ├── gamepad-square-outline.glif │ │ │ │ ├── gamepad-square.glif │ │ │ │ ├── gamepad-up.glif │ │ │ │ ├── gamepad-variant-outline.glif │ │ │ │ ├── gamepad-variant.glif │ │ │ │ ├── gamepad.glif │ │ │ │ ├── gamma.glif │ │ │ │ ├── gantry-crane.glif │ │ │ │ ├── garage-alert-variant.glif │ │ │ │ ├── garage-alert.glif │ │ │ │ ├── garage-lock.glif │ │ │ │ ├── garage-open-variant.glif │ │ │ │ ├── garage-open.glif │ │ │ │ ├── garage-variant-lock.glif │ │ │ │ ├── garage-variant.glif │ │ │ │ ├── garage.glif │ │ │ │ ├── gas-burner.glif │ │ │ │ ├── gas-cylinder.glif │ │ │ │ ├── gas-station-off-outline.glif │ │ │ │ ├── gas-station-off.glif │ │ │ │ ├── gas-station-outline.glif │ │ │ │ ├── gas-station.glif │ │ │ │ ├── gate-alert.glif │ │ │ │ ├── gate-and.glif │ │ │ │ ├── gate-arrow-left.glif │ │ │ │ ├── gate-arrow-right.glif │ │ │ │ ├── gate-nand.glif │ │ │ │ ├── gate-nor.glif │ │ │ │ ├── gate-not.glif │ │ │ │ ├── gate-open.glif │ │ │ │ ├── gate-or.glif │ │ │ │ ├── gate-xnor.glif │ │ │ │ ├── gate-xor.glif │ │ │ │ ├── gate.glif │ │ │ │ ├── gatsby.glif │ │ │ │ ├── gauge-empty.glif │ │ │ │ ├── gauge-full.glif │ │ │ │ ├── gauge-low.glif │ │ │ │ ├── gauge.glif │ │ │ │ ├── gavel.glif │ │ │ │ ├── gender-female.glif │ │ │ │ ├── gender-male-female-variant.glif │ │ │ │ ├── gender-male-female.glif │ │ │ │ ├── gender-male.glif │ │ │ │ ├── gender-non-binary.glif │ │ │ │ ├── gender-transgender.glif │ │ │ │ ├── gentoo.glif │ │ │ │ ├── gesture-double-tap.glif │ │ │ │ ├── gesture-pinch.glif │ │ │ │ ├── gesture-spread.glif │ │ │ │ ├── gesture-swipe-down.glif │ │ │ │ ├── gesture-swipe-horizontal.glif │ │ │ │ ├── gesture-swipe-left.glif │ │ │ │ ├── gesture-swipe-right.glif │ │ │ │ ├── gesture-swipe-up.glif │ │ │ │ ├── gesture-swipe-vertical.glif │ │ │ │ ├── gesture-swipe.glif │ │ │ │ ├── gesture-tap-box.glif │ │ │ │ ├── gesture-tap-button.glif │ │ │ │ ├── gesture-tap-hold.glif │ │ │ │ ├── gesture-tap.glif │ │ │ │ ├── gesture-two-double-tap.glif │ │ │ │ ├── gesture-two-tap.glif │ │ │ │ ├── gesture.glif │ │ │ │ ├── ghost-off-outline.glif │ │ │ │ ├── ghost-off.glif │ │ │ │ ├── ghost-outline.glif │ │ │ │ ├── ghost.glif │ │ │ │ ├── gift-off-outline.glif │ │ │ │ ├── gift-off.glif │ │ │ │ ├── gift-open-outline.glif │ │ │ │ ├── gift-open.glif │ │ │ │ ├── gift-outline.glif │ │ │ │ ├── gift.glif │ │ │ │ ├── git.glif │ │ │ │ ├── github.glif │ │ │ │ ├── gitlab.glif │ │ │ │ ├── glass-cocktail-off.glif │ │ │ │ ├── glass-cocktail.glif │ │ │ │ ├── glass-flute.glif │ │ │ │ ├── glass-fragile.glif │ │ │ │ ├── glass-mug-off.glif │ │ │ │ ├── glass-mug-variant-off.glif │ │ │ │ ├── glass-mug-variant.glif │ │ │ │ ├── glass-mug.glif │ │ │ │ ├── glass-pint-outline.glif │ │ │ │ ├── glass-stange.glif │ │ │ │ ├── glass-tulip.glif │ │ │ │ ├── glass-wine.glif │ │ │ │ ├── glasses.glif │ │ │ │ ├── globe-light.glif │ │ │ │ ├── globe-model.glif │ │ │ │ ├── gmail.glif │ │ │ │ ├── gnome.glif │ │ │ │ ├── go-kart-track.glif │ │ │ │ ├── go-kart.glif │ │ │ │ ├── gog.glif │ │ │ │ ├── gold.glif │ │ │ │ ├── golf-cart.glif │ │ │ │ ├── golf-tee.glif │ │ │ │ ├── golf.glif │ │ │ │ ├── gondola.glif │ │ │ │ ├── goodreads.glif │ │ │ │ ├── google-ads.glif │ │ │ │ ├── google-analytics.glif │ │ │ │ ├── google-assistant.glif │ │ │ │ ├── google-cardboard.glif │ │ │ │ ├── google-chrome.glif │ │ │ │ ├── google-circles-communities.glif │ │ │ │ ├── google-circles-extended.glif │ │ │ │ ├── google-circles-group.glif │ │ │ │ ├── google-circles.glif │ │ │ │ ├── google-classroom.glif │ │ │ │ ├── google-cloud.glif │ │ │ │ ├── google-controller-off.glif │ │ │ │ ├── google-controller.glif │ │ │ │ ├── google-downasaur.glif │ │ │ │ ├── google-drive.glif │ │ │ │ ├── google-earth.glif │ │ │ │ ├── google-fit.glif │ │ │ │ ├── google-glass.glif │ │ │ │ ├── google-hangouts.glif │ │ │ │ ├── google-home.glif │ │ │ │ ├── google-keep.glif │ │ │ │ ├── google-lens.glif │ │ │ │ ├── google-maps.glif │ │ │ │ ├── google-my-business.glif │ │ │ │ ├── google-nearby.glif │ │ │ │ ├── google-play.glif │ │ │ │ ├── google-plus.glif │ │ │ │ ├── google-podcast.glif │ │ │ │ ├── google-spreadsheet.glif │ │ │ │ ├── google-street-view.glif │ │ │ │ ├── google-translate.glif │ │ │ │ ├── google.glif │ │ │ │ ├── gradient-horizontal.glif │ │ │ │ ├── gradient-vertical.glif │ │ │ │ ├── grain.glif │ │ │ │ ├── graph-outline.glif │ │ │ │ ├── graph.glif │ │ │ │ ├── graphql.glif │ │ │ │ ├── grass.glif │ │ │ │ ├── grave-stone.glif │ │ │ │ ├── grease-pencil.glif │ │ │ │ ├── greater-than-or-equal.glif │ │ │ │ ├── greater-than.glif │ │ │ │ ├── greenhouse.glif │ │ │ │ ├── grid-large.glif │ │ │ │ ├── grid-off.glif │ │ │ │ ├── grid.glif │ │ │ │ ├── grill-outline.glif │ │ │ │ ├── grill.glif │ │ │ │ ├── group.glif │ │ │ │ ├── guitar-acoustic.glif │ │ │ │ ├── guitar-electric.glif │ │ │ │ ├── guitar-pick-outline.glif │ │ │ │ ├── guitar-pick.glif │ │ │ │ ├── guy-fawkes-mask.glif │ │ │ │ ├── gymnastics.glif │ │ │ │ ├── hail.glif │ │ │ │ ├── hair-dryer-outline.glif │ │ │ │ ├── hair-dryer.glif │ │ │ │ ├── halloween.glif │ │ │ │ ├── hamburger-check.glif │ │ │ │ ├── hamburger-minus.glif │ │ │ │ ├── hamburger-off.glif │ │ │ │ ├── hamburger-plus.glif │ │ │ │ ├── hamburger-remove.glif │ │ │ │ ├── hamburger.glif │ │ │ │ ├── hammer-screwdriver.glif │ │ │ │ ├── hammer-sickle.glif │ │ │ │ ├── hammer-wrench.glif │ │ │ │ ├── hammer.glif │ │ │ │ ├── hand-back-left-off-outline.glif │ │ │ │ ├── hand-back-left-off.glif │ │ │ │ ├── hand-back-left-outline.glif │ │ │ │ ├── hand-back-left.glif │ │ │ │ ├── hand-back-right-off-outline.glif │ │ │ │ ├── hand-back-right-off.glif │ │ │ │ ├── hand-back-right-outline.glif │ │ │ │ ├── hand-back-right.glif │ │ │ │ ├── hand-clap-off.glif │ │ │ │ ├── hand-clap.glif │ │ │ │ ├── hand-coin-outline.glif │ │ │ │ ├── hand-coin.glif │ │ │ │ ├── hand-extended-outline.glif │ │ │ │ ├── hand-extended.glif │ │ │ │ ├── hand-front-left-outline.glif │ │ │ │ ├── hand-front-left.glif │ │ │ │ ├── hand-front-right-outline.glif │ │ │ │ ├── hand-front-right.glif │ │ │ │ ├── hand-heart-outline.glif │ │ │ │ ├── hand-heart.glif │ │ │ │ ├── hand-okay.glif │ │ │ │ ├── hand-peace-variant.glif │ │ │ │ ├── hand-peace.glif │ │ │ │ ├── hand-pointing-down.glif │ │ │ │ ├── hand-pointing-left.glif │ │ │ │ ├── hand-pointing-right.glif │ │ │ │ ├── hand-pointing-up.glif │ │ │ │ ├── hand-saw.glif │ │ │ │ ├── hand-wash-outline.glif │ │ │ │ ├── hand-wash.glif │ │ │ │ ├── hand-water.glif │ │ │ │ ├── hand-wave-outline.glif │ │ │ │ ├── hand-wave.glif │ │ │ │ ├── handball.glif │ │ │ │ ├── handcuffs.glif │ │ │ │ ├── hands-pray.glif │ │ │ │ ├── handshake-outline.glif │ │ │ │ ├── handshake.glif │ │ │ │ ├── hanger.glif │ │ │ │ ├── hard-hat.glif │ │ │ │ ├── harddisk-plus.glif │ │ │ │ ├── harddisk-remove.glif │ │ │ │ ├── harddisk.glif │ │ │ │ ├── hat-fedora.glif │ │ │ │ ├── hazard-lights.glif │ │ │ │ ├── hdr-off.glif │ │ │ │ ├── hdr.glif │ │ │ │ ├── head-alert-outline.glif │ │ │ │ ├── head-alert.glif │ │ │ │ ├── head-check-outline.glif │ │ │ │ ├── head-check.glif │ │ │ │ ├── head-cog-outline.glif │ │ │ │ ├── head-cog.glif │ │ │ │ ├── head-dots-horizontal-outline.glif │ │ │ │ ├── head-dots-horizontal.glif │ │ │ │ ├── head-flash-outline.glif │ │ │ │ ├── head-flash.glif │ │ │ │ ├── head-heart-outline.glif │ │ │ │ ├── head-heart.glif │ │ │ │ ├── head-lightbulb-outline.glif │ │ │ │ ├── head-lightbulb.glif │ │ │ │ ├── head-minus-outline.glif │ │ │ │ ├── head-minus.glif │ │ │ │ ├── head-outline.glif │ │ │ │ ├── head-plus-outline.glif │ │ │ │ ├── head-plus.glif │ │ │ │ ├── head-question-outline.glif │ │ │ │ ├── head-question.glif │ │ │ │ ├── head-remove-outline.glif │ │ │ │ ├── head-remove.glif │ │ │ │ ├── head-snowflake-outline.glif │ │ │ │ ├── head-snowflake.glif │ │ │ │ ├── head-sync-outline.glif │ │ │ │ ├── head-sync.glif │ │ │ │ ├── head.glif │ │ │ │ ├── headphones-bluetooth.glif │ │ │ │ ├── headphones-box.glif │ │ │ │ ├── headphones-off.glif │ │ │ │ ├── headphones-settings.glif │ │ │ │ ├── headphones.glif │ │ │ │ ├── headset-dock.glif │ │ │ │ ├── headset-off.glif │ │ │ │ ├── headset.glif │ │ │ │ ├── heart-box-outline.glif │ │ │ │ ├── heart-box.glif │ │ │ │ ├── heart-broken-outline.glif │ │ │ │ ├── heart-broken.glif │ │ │ │ ├── heart-circle-outline.glif │ │ │ │ ├── heart-circle.glif │ │ │ │ ├── heart-cog-outline.glif │ │ │ │ ├── heart-cog.glif │ │ │ │ ├── heart-flash.glif │ │ │ │ ├── heart-half-full.glif │ │ │ │ ├── heart-half-outline.glif │ │ │ │ ├── heart-half.glif │ │ │ │ ├── heart-minus-outline.glif │ │ │ │ ├── heart-minus.glif │ │ │ │ ├── heart-multiple-outline.glif │ │ │ │ ├── heart-multiple.glif │ │ │ │ ├── heart-off-outline.glif │ │ │ │ ├── heart-off.glif │ │ │ │ ├── heart-outline.glif │ │ │ │ ├── heart-plus-outline.glif │ │ │ │ ├── heart-plus.glif │ │ │ │ ├── heart-pulse.glif │ │ │ │ ├── heart-remove-outline.glif │ │ │ │ ├── heart-remove.glif │ │ │ │ ├── heart-settings-outline.glif │ │ │ │ ├── heart-settings.glif │ │ │ │ ├── heart.glif │ │ │ │ ├── heat-pump-outline.glif │ │ │ │ ├── heat-pump.glif │ │ │ │ ├── heat-wave.glif │ │ │ │ ├── heating-coil.glif │ │ │ │ ├── helicopter.glif │ │ │ │ ├── help-box.glif │ │ │ │ ├── help-circle-outline.glif │ │ │ │ ├── help-circle.glif │ │ │ │ ├── help-network-outline.glif │ │ │ │ ├── help-network.glif │ │ │ │ ├── help-rhombus-outline.glif │ │ │ │ ├── help-rhombus.glif │ │ │ │ ├── help.glif │ │ │ │ ├── hexadecimal.glif │ │ │ │ ├── hexagon-multiple-outline.glif │ │ │ │ ├── hexagon-multiple.glif │ │ │ │ ├── hexagon-outline.glif │ │ │ │ ├── hexagon-slice-1.glif │ │ │ │ ├── hexagon-slice-2.glif │ │ │ │ ├── hexagon-slice-3.glif │ │ │ │ ├── hexagon-slice-4.glif │ │ │ │ ├── hexagon-slice-5.glif │ │ │ │ ├── hexagon-slice-6.glif │ │ │ │ ├── hexagon.glif │ │ │ │ ├── hexagram-outline.glif │ │ │ │ ├── hexagram.glif │ │ │ │ ├── high-definition-box.glif │ │ │ │ ├── high-definition.glif │ │ │ │ ├── highway.glif │ │ │ │ ├── hiking.glif │ │ │ │ ├── history.glif │ │ │ │ ├── hockey-puck.glif │ │ │ │ ├── hockey-sticks.glif │ │ │ │ ├── hololens.glif │ │ │ │ ├── home-account.glif │ │ │ │ ├── home-alert-outline.glif │ │ │ │ ├── home-alert.glif │ │ │ │ ├── home-analytics.glif │ │ │ │ ├── home-assistant.glif │ │ │ │ ├── home-automation.glif │ │ │ │ ├── home-battery-outline.glif │ │ │ │ ├── home-battery.glif │ │ │ │ ├── home-circle-outline.glif │ │ │ │ ├── home-circle.glif │ │ │ │ ├── home-city-outline.glif │ │ │ │ ├── home-city.glif │ │ │ │ ├── home-clock-outline.glif │ │ │ │ ├── home-clock.glif │ │ │ │ ├── home-edit-outline.glif │ │ │ │ ├── home-edit.glif │ │ │ │ ├── home-export-outline.glif │ │ │ │ ├── home-flood.glif │ │ │ │ ├── home-floor-0.glif │ │ │ │ ├── home-floor-1.glif │ │ │ │ ├── home-floor-2.glif │ │ │ │ ├── home-floor-3.glif │ │ │ │ ├── home-floor-a.glif │ │ │ │ ├── home-floor-b.glif │ │ │ │ ├── home-floor-g.glif │ │ │ │ ├── home-floor-l.glif │ │ │ │ ├── home-floor-negative-1.glif │ │ │ │ ├── home-group-minus.glif │ │ │ │ ├── home-group-plus.glif │ │ │ │ ├── home-group-remove.glif │ │ │ │ ├── home-group.glif │ │ │ │ ├── home-heart.glif │ │ │ │ ├── home-import-outline.glif │ │ │ │ ├── home-lightbulb-outline.glif │ │ │ │ ├── home-lightbulb.glif │ │ │ │ ├── home-lightning-bolt-outline.glif │ │ │ │ ├── home-lightning-bolt.glif │ │ │ │ ├── home-lock-open.glif │ │ │ │ ├── home-lock.glif │ │ │ │ ├── home-map-marker.glif │ │ │ │ ├── home-minus-outline.glif │ │ │ │ ├── home-minus.glif │ │ │ │ ├── home-modern.glif │ │ │ │ ├── home-off-outline.glif │ │ │ │ ├── home-off.glif │ │ │ │ ├── home-outline.glif │ │ │ │ ├── home-plus-outline.glif │ │ │ │ ├── home-plus.glif │ │ │ │ ├── home-remove-outline.glif │ │ │ │ ├── home-remove.glif │ │ │ │ ├── home-roof.glif │ │ │ │ ├── home-search-outline.glif │ │ │ │ ├── home-search.glif │ │ │ │ ├── home-switch-outline.glif │ │ │ │ ├── home-switch.glif │ │ │ │ ├── home-thermometer-outline.glif │ │ │ │ ├── home-thermometer.glif │ │ │ │ ├── home-variant-outline.glif │ │ │ │ ├── home-variant.glif │ │ │ │ ├── home.glif │ │ │ │ ├── hook-off.glif │ │ │ │ ├── hook.glif │ │ │ │ ├── hoop-house.glif │ │ │ │ ├── hops.glif │ │ │ │ ├── horizontal-rotate-clockwise.glif │ │ │ │ ├── horizontal-rotate-counterclockwise.glif │ │ │ │ ├── horse-human.glif │ │ │ │ ├── horse-variant-fast.glif │ │ │ │ ├── horse-variant.glif │ │ │ │ ├── horse.glif │ │ │ │ ├── horseshoe.glif │ │ │ │ ├── hospital-box-outline.glif │ │ │ │ ├── hospital-box.glif │ │ │ │ ├── hospital-building.glif │ │ │ │ ├── hospital-marker.glif │ │ │ │ ├── hospital.glif │ │ │ │ ├── hot-tub.glif │ │ │ │ ├── hours-24.glif │ │ │ │ ├── hubspot.glif │ │ │ │ ├── hulu.glif │ │ │ │ ├── human-baby-changing-table.glif │ │ │ │ ├── human-cane.glif │ │ │ │ ├── human-capacity-decrease.glif │ │ │ │ ├── human-capacity-increase.glif │ │ │ │ ├── human-child.glif │ │ │ │ ├── human-dolly.glif │ │ │ │ ├── human-edit.glif │ │ │ │ ├── human-female-boy.glif │ │ │ │ ├── human-female-dance.glif │ │ │ │ ├── human-female-female.glif │ │ │ │ ├── human-female-girl.glif │ │ │ │ ├── human-female.glif │ │ │ │ ├── human-greeting-proximity.glif │ │ │ │ ├── human-greeting-variant.glif │ │ │ │ ├── human-greeting.glif │ │ │ │ ├── human-handsdown.glif │ │ │ │ ├── human-handsup.glif │ │ │ │ ├── human-male-board-poll.glif │ │ │ │ ├── human-male-board.glif │ │ │ │ ├── human-male-boy.glif │ │ │ │ ├── human-male-child.glif │ │ │ │ ├── human-male-female-child.glif │ │ │ │ ├── human-male-female.glif │ │ │ │ ├── human-male-girl.glif │ │ │ │ ├── human-male-height-variant.glif │ │ │ │ ├── human-male-height.glif │ │ │ │ ├── human-male-male.glif │ │ │ │ ├── human-male.glif │ │ │ │ ├── human-non-binary.glif │ │ │ │ ├── human-pregnant.glif │ │ │ │ ├── human-queue.glif │ │ │ │ ├── human-scooter.glif │ │ │ │ ├── human-wheelchair.glif │ │ │ │ ├── human-white-cane.glif │ │ │ │ ├── human.glif │ │ │ │ ├── humble-bundle.glif │ │ │ │ ├── hvac-off.glif │ │ │ │ ├── hvac.glif │ │ │ │ ├── hydraulic-oil-level.glif │ │ │ │ ├── hydraulic-oil-temperature.glif │ │ │ │ ├── hydro-power.glif │ │ │ │ ├── hydrogen-station.glif │ │ │ │ ├── ice-cream-off.glif │ │ │ │ ├── ice-cream.glif │ │ │ │ ├── ice-pop.glif │ │ │ │ ├── id-card.glif │ │ │ │ ├── identifier.glif │ │ │ │ ├── ideogram-cjk-variant.glif │ │ │ │ ├── ideogram-cjk.glif │ │ │ │ ├── image-album.glif │ │ │ │ ├── image-area-close.glif │ │ │ │ ├── image-area.glif │ │ │ │ ├── image-auto-adjust.glif │ │ │ │ ├── image-broken-variant.glif │ │ │ │ ├── image-broken.glif │ │ │ │ ├── image-edit-outline.glif │ │ │ │ ├── image-edit.glif │ │ │ │ ├── image-filter-black-white.glif │ │ │ │ ├── image-filter-center-focus-strong-outline.glif │ │ │ │ ├── image-filter-center-focus-strong.glif │ │ │ │ ├── image-filter-center-focus-weak.glif │ │ │ │ ├── image-filter-center-focus.glif │ │ │ │ ├── image-filter-drama.glif │ │ │ │ ├── image-filter-frames.glif │ │ │ │ ├── image-filter-hdr.glif │ │ │ │ ├── image-filter-none.glif │ │ │ │ ├── image-filter-tilt-shift.glif │ │ │ │ ├── image-filter-vintage.glif │ │ │ │ ├── image-frame.glif │ │ │ │ ├── image-lock-outline.glif │ │ │ │ ├── image-lock.glif │ │ │ │ ├── image-marker-outline.glif │ │ │ │ ├── image-marker.glif │ │ │ │ ├── image-minus.glif │ │ │ │ ├── image-move.glif │ │ │ │ ├── image-multiple-outline.glif │ │ │ │ ├── image-multiple.glif │ │ │ │ ├── image-off-outline.glif │ │ │ │ ├── image-off.glif │ │ │ │ ├── image-outline.glif │ │ │ │ ├── image-plus.glif │ │ │ │ ├── image-refresh-outline.glif │ │ │ │ ├── image-refresh.glif │ │ │ │ ├── image-remove.glif │ │ │ │ ├── image-search-outline.glif │ │ │ │ ├── image-search.glif │ │ │ │ ├── image-size-select-actual.glif │ │ │ │ ├── image-size-select-large.glif │ │ │ │ ├── image-size-select-small.glif │ │ │ │ ├── image-sync-outline.glif │ │ │ │ ├── image-sync.glif │ │ │ │ ├── image-text.glif │ │ │ │ ├── image.glif │ │ │ │ ├── import.glif │ │ │ │ ├── inbox-arrow-down-outline.glif │ │ │ │ ├── inbox-arrow-down.glif │ │ │ │ ├── inbox-arrow-up-outline.glif │ │ │ │ ├── inbox-arrow-up.glif │ │ │ │ ├── inbox-full-outline.glif │ │ │ │ ├── inbox-full.glif │ │ │ │ ├── inbox-multiple-outline.glif │ │ │ │ ├── inbox-multiple.glif │ │ │ │ ├── inbox-outline.glif │ │ │ │ ├── inbox-remove-outline.glif │ │ │ │ ├── inbox-remove.glif │ │ │ │ ├── inbox.glif │ │ │ │ ├── incognito-circle-off.glif │ │ │ │ ├── incognito-circle.glif │ │ │ │ ├── incognito-off.glif │ │ │ │ ├── incognito.glif │ │ │ │ ├── induction.glif │ │ │ │ ├── infinity.glif │ │ │ │ ├── information-off-outline.glif │ │ │ │ ├── information-off.glif │ │ │ │ ├── information-outline.glif │ │ │ │ ├── information-variant.glif │ │ │ │ ├── information.glif │ │ │ │ ├── instagram.glif │ │ │ │ ├── instrument-triangle.glif │ │ │ │ ├── integrated-circuit-chip.glif │ │ │ │ ├── invert-colors-off.glif │ │ │ │ ├── invert-colors.glif │ │ │ │ ├── iobroker.glif │ │ │ │ ├── ip-network-outline.glif │ │ │ │ ├── ip-network.glif │ │ │ │ ├── ip-outline.glif │ │ │ │ ├── ip.glif │ │ │ │ ├── ipod.glif │ │ │ │ ├── iron-board.glif │ │ │ │ ├── iron-outline.glif │ │ │ │ ├── iron.glif │ │ │ │ ├── island.glif │ │ │ │ ├── iv-bag.glif │ │ │ │ ├── jabber.glif │ │ │ │ ├── jeepney.glif │ │ │ │ ├── jellyfish-outline.glif │ │ │ │ ├── jellyfish.glif │ │ │ │ ├── jira.glif │ │ │ │ ├── jquery.glif │ │ │ │ ├── jsfiddle.glif │ │ │ │ ├── jump-rope.glif │ │ │ │ ├── kabaddi.glif │ │ │ │ ├── kangaroo.glif │ │ │ │ ├── karate.glif │ │ │ │ ├── kayaking.glif │ │ │ │ ├── keg.glif │ │ │ │ ├── kettle-alert-outline.glif │ │ │ │ ├── kettle-alert.glif │ │ │ │ ├── kettle-off-outline.glif │ │ │ │ ├── kettle-off.glif │ │ │ │ ├── kettle-outline.glif │ │ │ │ ├── kettle-pour-over.glif │ │ │ │ ├── kettle-steam-outline.glif │ │ │ │ ├── kettle-steam.glif │ │ │ │ ├── kettle.glif │ │ │ │ ├── kettlebell.glif │ │ │ │ ├── key-alert-outline.glif │ │ │ │ ├── key-alert.glif │ │ │ │ ├── key-arrow-right.glif │ │ │ │ ├── key-chain-variant.glif │ │ │ │ ├── key-chain.glif │ │ │ │ ├── key-change.glif │ │ │ │ ├── key-link.glif │ │ │ │ ├── key-minus.glif │ │ │ │ ├── key-outline.glif │ │ │ │ ├── key-plus.glif │ │ │ │ ├── key-remove.glif │ │ │ │ ├── key-star.glif │ │ │ │ ├── key-variant.glif │ │ │ │ ├── key-wireless.glif │ │ │ │ ├── key.glif │ │ │ │ ├── keyboard-backspace.glif │ │ │ │ ├── keyboard-caps.glif │ │ │ │ ├── keyboard-close.glif │ │ │ │ ├── keyboard-esc.glif │ │ │ │ ├── keyboard-f1.glif │ │ │ │ ├── keyboard-f10.glif │ │ │ │ ├── keyboard-f11.glif │ │ │ │ ├── keyboard-f12.glif │ │ │ │ ├── keyboard-f2.glif │ │ │ │ ├── keyboard-f3.glif │ │ │ │ ├── keyboard-f4.glif │ │ │ │ ├── keyboard-f5.glif │ │ │ │ ├── keyboard-f6.glif │ │ │ │ ├── keyboard-f7.glif │ │ │ │ ├── keyboard-f8.glif │ │ │ │ ├── keyboard-f9.glif │ │ │ │ ├── keyboard-off-outline.glif │ │ │ │ ├── keyboard-off.glif │ │ │ │ ├── keyboard-outline.glif │ │ │ │ ├── keyboard-return.glif │ │ │ │ ├── keyboard-settings-outline.glif │ │ │ │ ├── keyboard-settings.glif │ │ │ │ ├── keyboard-space.glif │ │ │ │ ├── keyboard-tab-reverse.glif │ │ │ │ ├── keyboard-tab.glif │ │ │ │ ├── keyboard-variant.glif │ │ │ │ ├── keyboard.glif │ │ │ │ ├── khanda.glif │ │ │ │ ├── kickstarter.glif │ │ │ │ ├── kite-outline.glif │ │ │ │ ├── kite.glif │ │ │ │ ├── kitesurfing.glif │ │ │ │ ├── klingon.glif │ │ │ │ ├── knife-military.glif │ │ │ │ ├── knife.glif │ │ │ │ ├── koala.glif │ │ │ │ ├── kodi.glif │ │ │ │ ├── kubernetes.glif │ │ │ │ ├── label-multiple-outline.glif │ │ │ │ ├── label-multiple.glif │ │ │ │ ├── label-off-outline.glif │ │ │ │ ├── label-off.glif │ │ │ │ ├── label-outline.glif │ │ │ │ ├── label-percent-outline.glif │ │ │ │ ├── label-percent.glif │ │ │ │ ├── label-variant-outline.glif │ │ │ │ ├── label-variant.glif │ │ │ │ ├── label.glif │ │ │ │ ├── ladder.glif │ │ │ │ ├── ladybug.glif │ │ │ │ ├── lambda.glif │ │ │ │ ├── lamp-outline.glif │ │ │ │ ├── lamp.glif │ │ │ │ ├── lamps-outline.glif │ │ │ │ ├── lamps.glif │ │ │ │ ├── lan-check.glif │ │ │ │ ├── lan-connect.glif │ │ │ │ ├── lan-disconnect.glif │ │ │ │ ├── lan-pending.glif │ │ │ │ ├── lan.glif │ │ │ │ ├── land-fields.glif │ │ │ │ ├── land-plots-circle-variant.glif │ │ │ │ ├── land-plots-circle.glif │ │ │ │ ├── land-plots.glif │ │ │ │ ├── land-rows-horizontal.glif │ │ │ │ ├── land-rows-vertical.glif │ │ │ │ ├── landslide-outline.glif │ │ │ │ ├── landslide.glif │ │ │ │ ├── language-c.glif │ │ │ │ ├── language-cpp.glif │ │ │ │ ├── language-csharp.glif │ │ │ │ ├── language-css3.glif │ │ │ │ ├── language-fortran.glif │ │ │ │ ├── language-go.glif │ │ │ │ ├── language-haskell.glif │ │ │ │ ├── language-html5.glif │ │ │ │ ├── language-java.glif │ │ │ │ ├── language-javascript.glif │ │ │ │ ├── language-kotlin.glif │ │ │ │ ├── language-lua.glif │ │ │ │ ├── language-markdown-outline.glif │ │ │ │ ├── language-markdown.glif │ │ │ │ ├── language-php.glif │ │ │ │ ├── language-python.glif │ │ │ │ ├── language-r.glif │ │ │ │ ├── language-ruby-on-rails.glif │ │ │ │ ├── language-ruby.glif │ │ │ │ ├── language-rust.glif │ │ │ │ ├── language-swift.glif │ │ │ │ ├── language-typescript.glif │ │ │ │ ├── language-xaml.glif │ │ │ │ ├── laptop-account.glif │ │ │ │ ├── laptop-off.glif │ │ │ │ ├── laptop.glif │ │ │ │ ├── laravel.glif │ │ │ │ ├── laser-pointer.glif │ │ │ │ ├── lasso.glif │ │ │ │ ├── lastpass.glif │ │ │ │ ├── latitude.glif │ │ │ │ ├── launch.glif │ │ │ │ ├── lava-lamp.glif │ │ │ │ ├── layers-edit.glif │ │ │ │ ├── layers-minus.glif │ │ │ │ ├── layers-off-outline.glif │ │ │ │ ├── layers-off.glif │ │ │ │ ├── layers-outline.glif │ │ │ │ ├── layers-plus.glif │ │ │ │ ├── layers-remove.glif │ │ │ │ ├── layers-search-outline.glif │ │ │ │ ├── layers-search.glif │ │ │ │ ├── layers-triple-outline.glif │ │ │ │ ├── layers-triple.glif │ │ │ │ ├── layers.glif │ │ │ │ ├── lead-pencil.glif │ │ │ │ ├── leaf-circle-outline.glif │ │ │ │ ├── leaf-circle.glif │ │ │ │ ├── leaf-maple-off.glif │ │ │ │ ├── leaf-maple.glif │ │ │ │ ├── leaf-off.glif │ │ │ │ ├── leaf.glif │ │ │ │ ├── leak-off.glif │ │ │ │ ├── leak.glif │ │ │ │ ├── lecturn.glif │ │ │ │ ├── led-off.glif │ │ │ │ ├── led-on.glif │ │ │ │ ├── led-outline.glif │ │ │ │ ├── led-strip-variant-off.glif │ │ │ │ ├── led-strip-variant.glif │ │ │ │ ├── led-strip.glif │ │ │ │ ├── led-variant-off.glif │ │ │ │ ├── led-variant-on.glif │ │ │ │ ├── led-variant-outline.glif │ │ │ │ ├── leek.glif │ │ │ │ ├── less-than-or-equal.glif │ │ │ │ ├── less-than.glif │ │ │ │ ├── library-outline.glif │ │ │ │ ├── library-shelves.glif │ │ │ │ ├── library.glif │ │ │ │ ├── license.glif │ │ │ │ ├── lifebuoy.glif │ │ │ │ ├── light-flood-down.glif │ │ │ │ ├── light-flood-up.glif │ │ │ │ ├── light-recessed.glif │ │ │ │ ├── light-switch-off.glif │ │ │ │ ├── light-switch.glif │ │ │ │ ├── lightbulb-alert-outline.glif │ │ │ │ ├── lightbulb-alert.glif │ │ │ │ ├── lightbulb-auto-outline.glif │ │ │ │ ├── lightbulb-auto.glif │ │ │ │ ├── lightbulb-cfl-off.glif │ │ │ │ ├── lightbulb-cfl-spiral-off.glif │ │ │ │ ├── lightbulb-cfl-spiral.glif │ │ │ │ ├── lightbulb-cfl.glif │ │ │ │ ├── lightbulb-fluorescent-tube-outline.glif │ │ │ │ ├── lightbulb-fluorescent-tube.glif │ │ │ │ ├── lightbulb-group-off-outline.glif │ │ │ │ ├── lightbulb-group-off.glif │ │ │ │ ├── lightbulb-group-outline.glif │ │ │ │ ├── lightbulb-group.glif │ │ │ │ ├── lightbulb-multiple-off-outline.glif │ │ │ │ ├── lightbulb-multiple-off.glif │ │ │ │ ├── lightbulb-multiple-outline.glif │ │ │ │ ├── lightbulb-multiple.glif │ │ │ │ ├── lightbulb-night-outline.glif │ │ │ │ ├── lightbulb-night.glif │ │ │ │ ├── lightbulb-off-outline.glif │ │ │ │ ├── lightbulb-off.glif │ │ │ │ ├── lightbulb-on-10.glif │ │ │ │ ├── lightbulb-on-20.glif │ │ │ │ ├── lightbulb-on-30.glif │ │ │ │ ├── lightbulb-on-40.glif │ │ │ │ ├── lightbulb-on-50.glif │ │ │ │ ├── lightbulb-on-60.glif │ │ │ │ ├── lightbulb-on-70.glif │ │ │ │ ├── lightbulb-on-80.glif │ │ │ │ ├── lightbulb-on-90.glif │ │ │ │ ├── lightbulb-on-outline.glif │ │ │ │ ├── lightbulb-on.glif │ │ │ │ ├── lightbulb-outline.glif │ │ │ │ ├── lightbulb-question-outline.glif │ │ │ │ ├── lightbulb-question.glif │ │ │ │ ├── lightbulb-spot-off.glif │ │ │ │ ├── lightbulb-spot.glif │ │ │ │ ├── lightbulb-variant-outline.glif │ │ │ │ ├── lightbulb-variant.glif │ │ │ │ ├── lightbulb.glif │ │ │ │ ├── lighthouse-on.glif │ │ │ │ ├── lighthouse.glif │ │ │ │ ├── lightning-bolt-circle.glif │ │ │ │ ├── lightning-bolt-outline.glif │ │ │ │ ├── lightning-bolt.glif │ │ │ │ ├── line-scan.glif │ │ │ │ ├── lingerie.glif │ │ │ │ ├── link-box-outline.glif │ │ │ │ ├── link-box-variant-outline.glif │ │ │ │ ├── link-box-variant.glif │ │ │ │ ├── link-box.glif │ │ │ │ ├── link-lock.glif │ │ │ │ ├── link-off.glif │ │ │ │ ├── link-plus.glif │ │ │ │ ├── link-variant-minus.glif │ │ │ │ ├── link-variant-off.glif │ │ │ │ ├── link-variant-plus.glif │ │ │ │ ├── link-variant-remove.glif │ │ │ │ ├── link-variant.glif │ │ │ │ ├── link.glif │ │ │ │ ├── linkedin.glif │ │ │ │ ├── linux-mint.glif │ │ │ │ ├── linux.glif │ │ │ │ ├── lipstick.glif │ │ │ │ ├── liquid-spot.glif │ │ │ │ ├── liquor.glif │ │ │ │ ├── list-status.glif │ │ │ │ ├── litecoin.glif │ │ │ │ ├── loading.glif │ │ │ │ ├── location-enter.glif │ │ │ │ ├── location-exit.glif │ │ │ │ ├── lock-alert-outline.glif │ │ │ │ ├── lock-alert.glif │ │ │ │ ├── lock-check-outline.glif │ │ │ │ ├── lock-check.glif │ │ │ │ ├── lock-clock.glif │ │ │ │ ├── lock-minus-outline.glif │ │ │ │ ├── lock-minus.glif │ │ │ │ ├── lock-off-outline.glif │ │ │ │ ├── lock-off.glif │ │ │ │ ├── lock-open-alert-outline.glif │ │ │ │ ├── lock-open-alert.glif │ │ │ │ ├── lock-open-check-outline.glif │ │ │ │ ├── lock-open-check.glif │ │ │ │ ├── lock-open-minus-outline.glif │ │ │ │ ├── lock-open-minus.glif │ │ │ │ ├── lock-open-outline.glif │ │ │ │ ├── lock-open-plus-outline.glif │ │ │ │ ├── lock-open-plus.glif │ │ │ │ ├── lock-open-remove-outline.glif │ │ │ │ ├── lock-open-remove.glif │ │ │ │ ├── lock-open-variant-outline.glif │ │ │ │ ├── lock-open-variant.glif │ │ │ │ ├── lock-open.glif │ │ │ │ ├── lock-outline.glif │ │ │ │ ├── lock-pattern.glif │ │ │ │ ├── lock-plus-outline.glif │ │ │ │ ├── lock-plus.glif │ │ │ │ ├── lock-question.glif │ │ │ │ ├── lock-remove-outline.glif │ │ │ │ ├── lock-remove.glif │ │ │ │ ├── lock-reset.glif │ │ │ │ ├── lock-smart.glif │ │ │ │ ├── lock.glif │ │ │ │ ├── locker-multiple.glif │ │ │ │ ├── locker.glif │ │ │ │ ├── login.glif │ │ │ │ ├── logout-variant.glif │ │ │ │ ├── logout.glif │ │ │ │ ├── longitude.glif │ │ │ │ ├── looks.glif │ │ │ │ ├── lotion-outline.glif │ │ │ │ ├── lotion-plus-outline.glif │ │ │ │ ├── lotion-plus.glif │ │ │ │ ├── lotion.glif │ │ │ │ ├── loupe.glif │ │ │ │ ├── lumx.glif │ │ │ │ ├── lungs.glif │ │ │ │ ├── mace.glif │ │ │ │ ├── magazine-pistol.glif │ │ │ │ ├── magazine-rifle.glif │ │ │ │ ├── magic-staff.glif │ │ │ │ ├── magnet-on.glif │ │ │ │ ├── magnet.glif │ │ │ │ ├── magnify-close.glif │ │ │ │ ├── magnify-expand.glif │ │ │ │ ├── magnify-minus-cursor.glif │ │ │ │ ├── magnify-minus-outline.glif │ │ │ │ ├── magnify-minus.glif │ │ │ │ ├── magnify-plus-cursor.glif │ │ │ │ ├── magnify-plus-outline.glif │ │ │ │ ├── magnify-plus.glif │ │ │ │ ├── magnify-remove-cursor.glif │ │ │ │ ├── magnify-remove-outline.glif │ │ │ │ ├── magnify-scan.glif │ │ │ │ ├── magnify.glif │ │ │ │ ├── mail.glif │ │ │ │ ├── mailbox-open-outline.glif │ │ │ │ ├── mailbox-open-up-outline.glif │ │ │ │ ├── mailbox-open-up.glif │ │ │ │ ├── mailbox-open.glif │ │ │ │ ├── mailbox-outline.glif │ │ │ │ ├── mailbox-up-outline.glif │ │ │ │ ├── mailbox-up.glif │ │ │ │ ├── mailbox.glif │ │ │ │ ├── manjaro.glif │ │ │ │ ├── map-check-outline.glif │ │ │ │ ├── map-check.glif │ │ │ │ ├── map-clock-outline.glif │ │ │ │ ├── map-clock.glif │ │ │ │ ├── map-legend.glif │ │ │ │ ├── map-marker-account-outline.glif │ │ │ │ ├── map-marker-account.glif │ │ │ │ ├── map-marker-alert-outline.glif │ │ │ │ ├── map-marker-alert.glif │ │ │ │ ├── map-marker-check-outline.glif │ │ │ │ ├── map-marker-check.glif │ │ │ │ ├── map-marker-circle.glif │ │ │ │ ├── map-marker-distance.glif │ │ │ │ ├── map-marker-down.glif │ │ │ │ ├── map-marker-left-outline.glif │ │ │ │ ├── map-marker-left.glif │ │ │ │ ├── map-marker-minus-outline.glif │ │ │ │ ├── map-marker-minus.glif │ │ │ │ ├── map-marker-multiple-outline.glif │ │ │ │ ├── map-marker-multiple.glif │ │ │ │ ├── map-marker-off-outline.glif │ │ │ │ ├── map-marker-off.glif │ │ │ │ ├── map-marker-outline.glif │ │ │ │ ├── map-marker-path.glif │ │ │ │ ├── map-marker-plus-outline.glif │ │ │ │ ├── map-marker-plus.glif │ │ │ │ ├── map-marker-question-outline.glif │ │ │ │ ├── map-marker-question.glif │ │ │ │ ├── map-marker-radius-outline.glif │ │ │ │ ├── map-marker-radius.glif │ │ │ │ ├── map-marker-remove-outline.glif │ │ │ │ ├── map-marker-remove-variant.glif │ │ │ │ ├── map-marker-remove.glif │ │ │ │ ├── map-marker-right-outline.glif │ │ │ │ ├── map-marker-right.glif │ │ │ │ ├── map-marker-star-outline.glif │ │ │ │ ├── map-marker-star.glif │ │ │ │ ├── map-marker-up.glif │ │ │ │ ├── map-marker.glif │ │ │ │ ├── map-minus.glif │ │ │ │ ├── map-outline.glif │ │ │ │ ├── map-plus.glif │ │ │ │ ├── map-search-outline.glif │ │ │ │ ├── map-search.glif │ │ │ │ ├── map.glif │ │ │ │ ├── mapbox.glif │ │ │ │ ├── margin.glif │ │ │ │ ├── marker-cancel.glif │ │ │ │ ├── marker-check.glif │ │ │ │ ├── marker.glif │ │ │ │ ├── mastodon.glif │ │ │ │ ├── material-design.glif │ │ │ │ ├── material-ui.glif │ │ │ │ ├── math-compass.glif │ │ │ │ ├── math-cos.glif │ │ │ │ ├── math-integral-box.glif │ │ │ │ ├── math-integral.glif │ │ │ │ ├── math-log.glif │ │ │ │ ├── math-norm-box.glif │ │ │ │ ├── math-norm.glif │ │ │ │ ├── math-sin.glif │ │ │ │ ├── math-tan.glif │ │ │ │ ├── matrix.glif │ │ │ │ ├── medal-outline.glif │ │ │ │ ├── medal.glif │ │ │ │ ├── medical-bag.glif │ │ │ │ ├── medical-cotton-swab.glif │ │ │ │ ├── meditation.glif │ │ │ │ ├── memory.glif │ │ │ │ ├── menorah-fire.glif │ │ │ │ ├── menorah.glif │ │ │ │ ├── menu-down-outline.glif │ │ │ │ ├── menu-down.glif │ │ │ │ ├── menu-left-outline.glif │ │ │ │ ├── menu-left.glif │ │ │ │ ├── menu-open.glif │ │ │ │ ├── menu-right-outline.glif │ │ │ │ ├── menu-right.glif │ │ │ │ ├── menu-swap-outline.glif │ │ │ │ ├── menu-swap.glif │ │ │ │ ├── menu-up-outline.glif │ │ │ │ ├── menu-up.glif │ │ │ │ ├── menu.glif │ │ │ │ ├── merge.glif │ │ │ │ ├── message-alert-outline.glif │ │ │ │ ├── message-alert.glif │ │ │ │ ├── message-arrow-left-outline.glif │ │ │ │ ├── message-arrow-left.glif │ │ │ │ ├── message-arrow-right-outline.glif │ │ │ │ ├── message-arrow-right.glif │ │ │ │ ├── message-badge-outline.glif │ │ │ │ ├── message-badge.glif │ │ │ │ ├── message-bookmark-outline.glif │ │ │ │ ├── message-bookmark.glif │ │ │ │ ├── message-bulleted-off.glif │ │ │ │ ├── message-bulleted.glif │ │ │ │ ├── message-cog-outline.glif │ │ │ │ ├── message-cog.glif │ │ │ │ ├── message-draw.glif │ │ │ │ ├── message-fast-outline.glif │ │ │ │ ├── message-fast.glif │ │ │ │ ├── message-flash-outline.glif │ │ │ │ ├── message-flash.glif │ │ │ │ ├── message-image-outline.glif │ │ │ │ ├── message-image.glif │ │ │ │ ├── message-lock-outline.glif │ │ │ │ ├── message-lock.glif │ │ │ │ ├── message-minus-outline.glif │ │ │ │ ├── message-minus.glif │ │ │ │ ├── message-off-outline.glif │ │ │ │ ├── message-off.glif │ │ │ │ ├── message-outline.glif │ │ │ │ ├── message-plus-outline.glif │ │ │ │ ├── message-plus.glif │ │ │ │ ├── message-processing-outline.glif │ │ │ │ ├── message-processing.glif │ │ │ │ ├── message-question-outline.glif │ │ │ │ ├── message-question.glif │ │ │ │ ├── message-reply-outline.glif │ │ │ │ ├── message-reply-text-outline.glif │ │ │ │ ├── message-reply-text.glif │ │ │ │ ├── message-reply.glif │ │ │ │ ├── message-settings-outline.glif │ │ │ │ ├── message-settings.glif │ │ │ │ ├── message-star-outline.glif │ │ │ │ ├── message-star.glif │ │ │ │ ├── message-text-clock-outline.glif │ │ │ │ ├── message-text-clock.glif │ │ │ │ ├── message-text-fast-outline.glif │ │ │ │ ├── message-text-fast.glif │ │ │ │ ├── message-text-lock-outline.glif │ │ │ │ ├── message-text-lock.glif │ │ │ │ ├── message-text-outline.glif │ │ │ │ ├── message-text.glif │ │ │ │ ├── message-video.glif │ │ │ │ ├── message.glif │ │ │ │ ├── meteor.glif │ │ │ │ ├── meter-electric-outline.glif │ │ │ │ ├── meter-electric.glif │ │ │ │ ├── meter-gas-outline.glif │ │ │ │ ├── meter-gas.glif │ │ │ │ ├── metronome-tick.glif │ │ │ │ ├── metronome.glif │ │ │ │ ├── micro-sd.glif │ │ │ │ ├── microphone-minus.glif │ │ │ │ ├── microphone-off.glif │ │ │ │ ├── microphone-outline.glif │ │ │ │ ├── microphone-plus.glif │ │ │ │ ├── microphone-question-outline.glif │ │ │ │ ├── microphone-question.glif │ │ │ │ ├── microphone-settings.glif │ │ │ │ ├── microphone-variant-off.glif │ │ │ │ ├── microphone-variant.glif │ │ │ │ ├── microphone.glif │ │ │ │ ├── microscope.glif │ │ │ │ ├── microsoft-access.glif │ │ │ │ ├── microsoft-azure-devops.glif │ │ │ │ ├── microsoft-azure.glif │ │ │ │ ├── microsoft-bing.glif │ │ │ │ ├── microsoft-dynamics-365.glif │ │ │ │ ├── microsoft-edge.glif │ │ │ │ ├── microsoft-excel.glif │ │ │ │ ├── microsoft-internet-explorer.glif │ │ │ │ ├── microsoft-office.glif │ │ │ │ ├── microsoft-onedrive.glif │ │ │ │ ├── microsoft-onenote.glif │ │ │ │ ├── microsoft-outlook.glif │ │ │ │ ├── microsoft-powerpoint.glif │ │ │ │ ├── microsoft-sharepoint.glif │ │ │ │ ├── microsoft-teams.glif │ │ │ │ ├── microsoft-visual-studio-code.glif │ │ │ │ ├── microsoft-visual-studio.glif │ │ │ │ ├── microsoft-windows-classic.glif │ │ │ │ ├── microsoft-windows.glif │ │ │ │ ├── microsoft-word.glif │ │ │ │ ├── microsoft-xbox-controller-battery-alert.glif │ │ │ │ ├── microsoft-xbox-controller-battery-charging.glif │ │ │ │ ├── microsoft-xbox-controller-battery-empty.glif │ │ │ │ ├── microsoft-xbox-controller-battery-full.glif │ │ │ │ ├── microsoft-xbox-controller-battery-low.glif │ │ │ │ ├── microsoft-xbox-controller-battery-medium.glif │ │ │ │ ├── microsoft-xbox-controller-battery-unknown.glif │ │ │ │ ├── microsoft-xbox-controller-menu.glif │ │ │ │ ├── microsoft-xbox-controller-off.glif │ │ │ │ ├── microsoft-xbox-controller-view.glif │ │ │ │ ├── microsoft-xbox-controller.glif │ │ │ │ ├── microsoft-xbox.glif │ │ │ │ ├── microsoft.glif │ │ │ │ ├── microwave-off.glif │ │ │ │ ├── microwave.glif │ │ │ │ ├── middleware-outline.glif │ │ │ │ ├── middleware.glif │ │ │ │ ├── midi-port.glif │ │ │ │ ├── midi.glif │ │ │ │ ├── mine.glif │ │ │ │ ├── minecraft.glif │ │ │ │ ├── mini-sd.glif │ │ │ │ ├── minidisc.glif │ │ │ │ ├── minus-box-multiple-outline.glif │ │ │ │ ├── minus-box-multiple.glif │ │ │ │ ├── minus-box-outline.glif │ │ │ │ ├── minus-box.glif │ │ │ │ ├── minus-circle-multiple-outline.glif │ │ │ │ ├── minus-circle-multiple.glif │ │ │ │ ├── minus-circle-off-outline.glif │ │ │ │ ├── minus-circle-off.glif │ │ │ │ ├── minus-circle-outline.glif │ │ │ │ ├── minus-circle.glif │ │ │ │ ├── minus-network-outline.glif │ │ │ │ ├── minus-network.glif │ │ │ │ ├── minus-thick.glif │ │ │ │ ├── minus.glif │ │ │ │ ├── mirror-rectangle.glif │ │ │ │ ├── mirror-variant.glif │ │ │ │ ├── mirror.glif │ │ │ │ ├── mixed-martial-arts.glif │ │ │ │ ├── mixed-reality.glif │ │ │ │ ├── molecule-co.glif │ │ │ │ ├── molecule-co2.glif │ │ │ │ ├── molecule.glif │ │ │ │ ├── monitor-account.glif │ │ │ │ ├── monitor-arrow-down-variant.glif │ │ │ │ ├── monitor-arrow-down.glif │ │ │ │ ├── monitor-cellphone-star.glif │ │ │ │ ├── monitor-cellphone.glif │ │ │ │ ├── monitor-dashboard.glif │ │ │ │ ├── monitor-edit.glif │ │ │ │ ├── monitor-eye.glif │ │ │ │ ├── monitor-lock.glif │ │ │ │ ├── monitor-multiple.glif │ │ │ │ ├── monitor-off.glif │ │ │ │ ├── monitor-screenshot.glif │ │ │ │ ├── monitor-share.glif │ │ │ │ ├── monitor-shimmer.glif │ │ │ │ ├── monitor-small.glif │ │ │ │ ├── monitor-speaker-off.glif │ │ │ │ ├── monitor-speaker.glif │ │ │ │ ├── monitor-star.glif │ │ │ │ ├── monitor.glif │ │ │ │ ├── moon-first-quarter.glif │ │ │ │ ├── moon-full.glif │ │ │ │ ├── moon-last-quarter.glif │ │ │ │ ├── moon-new.glif │ │ │ │ ├── moon-waning-crescent.glif │ │ │ │ ├── moon-waning-gibbous.glif │ │ │ │ ├── moon-waxing-crescent.glif │ │ │ │ ├── moon-waxing-gibbous.glif │ │ │ │ ├── moped-electric-outline.glif │ │ │ │ ├── moped-electric.glif │ │ │ │ ├── moped-outline.glif │ │ │ │ ├── moped.glif │ │ │ │ ├── more.glif │ │ │ │ ├── mortar-pestle-plus.glif │ │ │ │ ├── mortar-pestle.glif │ │ │ │ ├── mosque.glif │ │ │ │ ├── mother-heart.glif │ │ │ │ ├── mother-nurse.glif │ │ │ │ ├── motion-outline.glif │ │ │ │ ├── motion-pause-outline.glif │ │ │ │ ├── motion-pause.glif │ │ │ │ ├── motion-play-outline.glif │ │ │ │ ├── motion-play.glif │ │ │ │ ├── motion-sensor-off.glif │ │ │ │ ├── motion-sensor.glif │ │ │ │ ├── motion.glif │ │ │ │ ├── motorbike-electric.glif │ │ │ │ ├── motorbike.glif │ │ │ │ ├── mouse-bluetooth.glif │ │ │ │ ├── mouse-move-down.glif │ │ │ │ ├── mouse-move-up.glif │ │ │ │ ├── mouse-move-vertical.glif │ │ │ │ ├── mouse-off.glif │ │ │ │ ├── mouse-variant-off.glif │ │ │ │ ├── mouse-variant.glif │ │ │ │ ├── mouse.glif │ │ │ │ ├── move-resize-variant.glif │ │ │ │ ├── move-resize.glif │ │ │ │ ├── movie-check-outline.glif │ │ │ │ ├── movie-check.glif │ │ │ │ ├── movie-cog-outline.glif │ │ │ │ ├── movie-cog.glif │ │ │ │ ├── movie-edit-outline.glif │ │ │ │ ├── movie-edit.glif │ │ │ │ ├── movie-filter-outline.glif │ │ │ │ ├── movie-filter.glif │ │ │ │ ├── movie-minus-outline.glif │ │ │ │ ├── movie-minus.glif │ │ │ │ ├── movie-off-outline.glif │ │ │ │ ├── movie-off.glif │ │ │ │ ├── movie-open-check-outline.glif │ │ │ │ ├── movie-open-check.glif │ │ │ │ ├── movie-open-cog-outline.glif │ │ │ │ ├── movie-open-cog.glif │ │ │ │ ├── movie-open-edit-outline.glif │ │ │ │ ├── movie-open-edit.glif │ │ │ │ ├── movie-open-minus-outline.glif │ │ │ │ ├── movie-open-minus.glif │ │ │ │ ├── movie-open-off-outline.glif │ │ │ │ ├── movie-open-off.glif │ │ │ │ ├── movie-open-outline.glif │ │ │ │ ├── movie-open-play-outline.glif │ │ │ │ ├── movie-open-play.glif │ │ │ │ ├── movie-open-plus-outline.glif │ │ │ │ ├── movie-open-plus.glif │ │ │ │ ├── movie-open-remove-outline.glif │ │ │ │ ├── movie-open-remove.glif │ │ │ │ ├── movie-open-settings-outline.glif │ │ │ │ ├── movie-open-settings.glif │ │ │ │ ├── movie-open-star-outline.glif │ │ │ │ ├── movie-open-star.glif │ │ │ │ ├── movie-open.glif │ │ │ │ ├── movie-outline.glif │ │ │ │ ├── movie-play-outline.glif │ │ │ │ ├── movie-play.glif │ │ │ │ ├── movie-plus-outline.glif │ │ │ │ ├── movie-plus.glif │ │ │ │ ├── movie-remove-outline.glif │ │ │ │ ├── movie-remove.glif │ │ │ │ ├── movie-roll.glif │ │ │ │ ├── movie-search-outline.glif │ │ │ │ ├── movie-search.glif │ │ │ │ ├── movie-settings-outline.glif │ │ │ │ ├── movie-settings.glif │ │ │ │ ├── movie-star-outline.glif │ │ │ │ ├── movie-star.glif │ │ │ │ ├── movie.glif │ │ │ │ ├── mower-bag.glif │ │ │ │ ├── mower.glif │ │ │ │ ├── muffin.glif │ │ │ │ ├── multicast.glif │ │ │ │ ├── multiplication-box.glif │ │ │ │ ├── multiplication.glif │ │ │ │ ├── mushroom-off-outline.glif │ │ │ │ ├── mushroom-off.glif │ │ │ │ ├── mushroom-outline.glif │ │ │ │ ├── mushroom.glif │ │ │ │ ├── music-accidental-double-flat.glif │ │ │ │ ├── music-accidental-double-sharp.glif │ │ │ │ ├── music-accidental-flat.glif │ │ │ │ ├── music-accidental-natural.glif │ │ │ │ ├── music-accidental-sharp.glif │ │ │ │ ├── music-box-multiple-outline.glif │ │ │ │ ├── music-box-multiple.glif │ │ │ │ ├── music-box-outline.glif │ │ │ │ ├── music-box.glif │ │ │ │ ├── music-circle-outline.glif │ │ │ │ ├── music-circle.glif │ │ │ │ ├── music-clef-alto.glif │ │ │ │ ├── music-clef-bass.glif │ │ │ │ ├── music-clef-treble.glif │ │ │ │ ├── music-note-bluetooth-off.glif │ │ │ │ ├── music-note-bluetooth.glif │ │ │ │ ├── music-note-eighth-dotted.glif │ │ │ │ ├── music-note-half-dotted.glif │ │ │ │ ├── music-note-half.glif │ │ │ │ ├── music-note-off-outline.glif │ │ │ │ ├── music-note-off.glif │ │ │ │ ├── music-note-outline.glif │ │ │ │ ├── music-note-plus.glif │ │ │ │ ├── music-note-quarter-dotted.glif │ │ │ │ ├── music-note-quarter.glif │ │ │ │ ├── music-note-sixteenth-dotted.glif │ │ │ │ ├── music-note-sixteenth.glif │ │ │ │ ├── music-note-whole-dotted.glif │ │ │ │ ├── music-note-whole.glif │ │ │ │ ├── music-note.glif │ │ │ │ ├── music-off.glif │ │ │ │ ├── music-rest-eighth.glif │ │ │ │ ├── music-rest-half.glif │ │ │ │ ├── music-rest-quarter.glif │ │ │ │ ├── music-rest-sixteenth.glif │ │ │ │ ├── music-rest-whole.glif │ │ │ │ ├── music.glif │ │ │ │ ├── mustache.glif │ │ │ │ ├── nail.glif │ │ │ │ ├── nas.glif │ │ │ │ ├── nativescript.glif │ │ │ │ ├── nature-people.glif │ │ │ │ ├── nature.glif │ │ │ │ ├── navigation-outline.glif │ │ │ │ ├── navigation-variant-outline.glif │ │ │ │ ├── navigation.glif │ │ │ │ ├── near-me.glif │ │ │ │ ├── necklace.glif │ │ │ │ ├── needle-off.glif │ │ │ │ ├── needle.glif │ │ │ │ ├── netflix.glif │ │ │ │ ├── network-off-outline.glif │ │ │ │ ├── network-off.glif │ │ │ │ ├── network-outline.glif │ │ │ │ ├── network-pos.glif │ │ │ │ ├── network-strength-1-alert.glif │ │ │ │ ├── network-strength-1.glif │ │ │ │ ├── network-strength-2-alert.glif │ │ │ │ ├── network-strength-2.glif │ │ │ │ ├── network-strength-3-alert.glif │ │ │ │ ├── network-strength-3.glif │ │ │ │ ├── network-strength-4-alert.glif │ │ │ │ ├── network-strength-4-cog.glif │ │ │ │ ├── network-strength-4.glif │ │ │ │ ├── network-strength-off-outline.glif │ │ │ │ ├── network-strength-off.glif │ │ │ │ ├── network-strength-outline.glif │ │ │ │ ├── network.glif │ │ │ │ ├── new-box.glif │ │ │ │ ├── newspaper-check.glif │ │ │ │ ├── newspaper-minus.glif │ │ │ │ ├── newspaper-plus.glif │ │ │ │ ├── newspaper-remove.glif │ │ │ │ ├── newspaper-variant-multiple-outline.glif │ │ │ │ ├── newspaper-variant-multiple.glif │ │ │ │ ├── newspaper-variant-outline.glif │ │ │ │ ├── newspaper-variant.glif │ │ │ │ ├── newspaper.glif │ │ │ │ ├── nfc-search-variant.glif │ │ │ │ ├── nfc-tap.glif │ │ │ │ ├── nfc-variant-off.glif │ │ │ │ ├── nfc-variant.glif │ │ │ │ ├── nfc.glif │ │ │ │ ├── ninja.glif │ │ │ │ ├── nintendo-game-boy.glif │ │ │ │ ├── nintendo-switch.glif │ │ │ │ ├── nintendo-wii.glif │ │ │ │ ├── nintendo-wiiu.glif │ │ │ │ ├── nix.glif │ │ │ │ ├── nodejs.glif │ │ │ │ ├── noodles.glif │ │ │ │ ├── not-equal-variant.glif │ │ │ │ ├── not-equal.glif │ │ │ │ ├── note-alert-outline.glif │ │ │ │ ├── note-alert.glif │ │ │ │ ├── note-check-outline.glif │ │ │ │ ├── note-check.glif │ │ │ │ ├── note-edit-outline.glif │ │ │ │ ├── note-edit.glif │ │ │ │ ├── note-minus-outline.glif │ │ │ │ ├── note-minus.glif │ │ │ │ ├── note-multiple-outline.glif │ │ │ │ ├── note-multiple.glif │ │ │ │ ├── note-off-outline.glif │ │ │ │ ├── note-off.glif │ │ │ │ ├── note-outline.glif │ │ │ │ ├── note-plus-outline.glif │ │ │ │ ├── note-plus.glif │ │ │ │ ├── note-remove-outline.glif │ │ │ │ ├── note-remove.glif │ │ │ │ ├── note-search-outline.glif │ │ │ │ ├── note-search.glif │ │ │ │ ├── note-text-outline.glif │ │ │ │ ├── note-text.glif │ │ │ │ ├── note.glif │ │ │ │ ├── notebook-check-outline.glif │ │ │ │ ├── notebook-check.glif │ │ │ │ ├── notebook-edit-outline.glif │ │ │ │ ├── notebook-edit.glif │ │ │ │ ├── notebook-heart-outline.glif │ │ │ │ ├── notebook-heart.glif │ │ │ │ ├── notebook-minus-outline.glif │ │ │ │ ├── notebook-minus.glif │ │ │ │ ├── notebook-multiple.glif │ │ │ │ ├── notebook-outline.glif │ │ │ │ ├── notebook-plus-outline.glif │ │ │ │ ├── notebook-plus.glif │ │ │ │ ├── notebook-remove-outline.glif │ │ │ │ ├── notebook-remove.glif │ │ │ │ ├── notebook.glif │ │ │ │ ├── notification-clear-all.glif │ │ │ │ ├── npm.glif │ │ │ │ ├── nuke.glif │ │ │ │ ├── null.glif │ │ │ │ ├── numeric-0-box-multiple-outline.glif │ │ │ │ ├── numeric-0-box-multiple.glif │ │ │ │ ├── numeric-0-box-outline.glif │ │ │ │ ├── numeric-0-box.glif │ │ │ │ ├── numeric-1-box-multiple-outline.glif │ │ │ │ ├── numeric-1-box-multiple.glif │ │ │ │ ├── numeric-1-box-outline.glif │ │ │ │ ├── numeric-1-box.glif │ │ │ │ ├── numeric-1-circle-outline.glif │ │ │ │ ├── numeric-1-circle.glif │ │ │ │ ├── numeric-1.glif │ │ │ │ ├── numeric-10-box-multiple-outline.glif │ │ │ │ ├── numeric-10-box-multiple.glif │ │ │ │ ├── numeric-10-box-outline.glif │ │ │ │ ├── numeric-10-box.glif │ │ │ │ ├── numeric-10-circle-outline.glif │ │ │ │ ├── numeric-10-circle.glif │ │ │ │ ├── numeric-10.glif │ │ │ │ ├── numeric-2-box-multiple-outline.glif │ │ │ │ ├── numeric-2-box-multiple.glif │ │ │ │ ├── numeric-2-box-outline.glif │ │ │ │ ├── numeric-2-box.glif │ │ │ │ ├── numeric-2-circle-outline.glif │ │ │ │ ├── numeric-2-circle.glif │ │ │ │ ├── numeric-2.glif │ │ │ │ ├── numeric-3-box-multiple-outline.glif │ │ │ │ ├── numeric-3-box-multiple.glif │ │ │ │ ├── numeric-3-box-outline.glif │ │ │ │ ├── numeric-3-box.glif │ │ │ │ ├── numeric-3-circle-outline.glif │ │ │ │ ├── numeric-3-circle.glif │ │ │ │ ├── numeric-3.glif │ │ │ │ ├── numeric-4-box-multiple-outline.glif │ │ │ │ ├── numeric-4-box-multiple.glif │ │ │ │ ├── numeric-4-box-outline.glif │ │ │ │ ├── numeric-4-box.glif │ │ │ │ ├── numeric-4-circle-outline.glif │ │ │ │ ├── numeric-4-circle.glif │ │ │ │ ├── numeric-4.glif │ │ │ │ ├── numeric-5-box-multiple-outline.glif │ │ │ │ ├── numeric-5-box-multiple.glif │ │ │ │ ├── numeric-5-box-outline.glif │ │ │ │ ├── numeric-5-box.glif │ │ │ │ ├── numeric-5-circle-outline.glif │ │ │ │ ├── numeric-5-circle.glif │ │ │ │ ├── numeric-5.glif │ │ │ │ ├── numeric-6-box-multiple-outline.glif │ │ │ │ ├── numeric-6-box-multiple.glif │ │ │ │ ├── numeric-6-box-outline.glif │ │ │ │ ├── numeric-6-box.glif │ │ │ │ ├── numeric-6-circle-outline.glif │ │ │ │ ├── numeric-6-circle.glif │ │ │ │ ├── numeric-6.glif │ │ │ │ ├── numeric-7-box-multiple-outline.glif │ │ │ │ ├── numeric-7-box-multiple.glif │ │ │ │ ├── numeric-7-box-outline.glif │ │ │ │ ├── numeric-7-box.glif │ │ │ │ ├── numeric-7-circle-outline.glif │ │ │ │ ├── numeric-7-circle.glif │ │ │ │ ├── numeric-7.glif │ │ │ │ ├── numeric-8-box-multiple-outline.glif │ │ │ │ ├── numeric-8-box-multiple.glif │ │ │ │ ├── numeric-8-box-outline.glif │ │ │ │ ├── numeric-8-box.glif │ │ │ │ ├── numeric-8-circle-outline.glif │ │ │ │ ├── numeric-8-circle.glif │ │ │ │ ├── numeric-8.glif │ │ │ │ ├── numeric-9-box-multiple-outline.glif │ │ │ │ ├── numeric-9-box-multiple.glif │ │ │ │ ├── numeric-9-box-outline.glif │ │ │ │ ├── numeric-9-box.glif │ │ │ │ ├── numeric-9-circle-outline.glif │ │ │ │ ├── numeric-9-circle.glif │ │ │ │ ├── numeric-9-plus-box-multiple-outline.glif │ │ │ │ ├── numeric-9-plus-box-multiple.glif │ │ │ │ ├── numeric-9-plus-box-outline.glif │ │ │ │ ├── numeric-9-plus-box.glif │ │ │ │ ├── numeric-9-plus-circle-outline.glif │ │ │ │ ├── numeric-9-plus-circle.glif │ │ │ │ ├── numeric-9-plus.glif │ │ │ │ ├── numeric-9.glif │ │ │ │ ├── numeric-negative-1.glif │ │ │ │ ├── numeric-off.glif │ │ │ │ ├── numeric-positive-1.glif │ │ │ │ ├── numeric.glif │ │ │ │ ├── nut.glif │ │ │ │ ├── nutrition.glif │ │ │ │ ├── nuxt.glif │ │ │ │ ├── oar.glif │ │ │ │ ├── ocarina.glif │ │ │ │ ├── oci.glif │ │ │ │ ├── ocr.glif │ │ │ │ ├── octagon-outline.glif │ │ │ │ ├── octagon.glif │ │ │ │ ├── octagram-outline.glif │ │ │ │ ├── octagram.glif │ │ │ │ ├── octahedron-off.glif │ │ │ │ ├── octahedron.glif │ │ │ │ ├── odnoklassniki.glif │ │ │ │ ├── offer.glif │ │ │ │ ├── office-building-cog-outline.glif │ │ │ │ ├── office-building-cog.glif │ │ │ │ ├── office-building-marker-outline.glif │ │ │ │ ├── office-building-marker.glif │ │ │ │ ├── office-building-outline.glif │ │ │ │ ├── office-building.glif │ │ │ │ ├── oil-lamp.glif │ │ │ │ ├── oil-level.glif │ │ │ │ ├── oil-temperature.glif │ │ │ │ ├── oil.glif │ │ │ │ ├── om.glif │ │ │ │ ├── omega.glif │ │ │ │ ├── one-up.glif │ │ │ │ ├── onepassword.glif │ │ │ │ ├── opacity.glif │ │ │ │ ├── open-in-app.glif │ │ │ │ ├── open-in-new.glif │ │ │ │ ├── open-source-initiative.glif │ │ │ │ ├── openid.glif │ │ │ │ ├── opera.glif │ │ │ │ ├── orbit-variant.glif │ │ │ │ ├── orbit.glif │ │ │ │ ├── order-alphabetical-ascending.glif │ │ │ │ ├── order-alphabetical-descending.glif │ │ │ │ ├── order-bool-ascending-variant.glif │ │ │ │ ├── order-bool-ascending.glif │ │ │ │ ├── order-bool-descending-variant.glif │ │ │ │ ├── order-bool-descending.glif │ │ │ │ ├── order-numeric-ascending.glif │ │ │ │ ├── order-numeric-descending.glif │ │ │ │ ├── origin.glif │ │ │ │ ├── ornament-variant.glif │ │ │ │ ├── ornament.glif │ │ │ │ ├── outdoor-lamp.glif │ │ │ │ ├── overscan.glif │ │ │ │ ├── owl.glif │ │ │ │ ├── pac-man.glif │ │ │ │ ├── package-down.glif │ │ │ │ ├── package-up.glif │ │ │ │ ├── package-variant-closed-minus.glif │ │ │ │ ├── package-variant-closed-plus.glif │ │ │ │ ├── package-variant-closed-remove.glif │ │ │ │ ├── package-variant-closed.glif │ │ │ │ ├── package-variant-minus.glif │ │ │ │ ├── package-variant-plus.glif │ │ │ │ ├── package-variant-remove.glif │ │ │ │ ├── package-variant.glif │ │ │ │ ├── package.glif │ │ │ │ ├── page-first.glif │ │ │ │ ├── page-last.glif │ │ │ │ ├── page-layout-body.glif │ │ │ │ ├── page-layout-footer.glif │ │ │ │ ├── page-layout-header-footer.glif │ │ │ │ ├── page-layout-header.glif │ │ │ │ ├── page-layout-sidebar-left.glif │ │ │ │ ├── page-layout-sidebar-right.glif │ │ │ │ ├── page-next-outline.glif │ │ │ │ ├── page-next.glif │ │ │ │ ├── page-previous-outline.glif │ │ │ │ ├── page-previous.glif │ │ │ │ ├── pail-minus-outline.glif │ │ │ │ ├── pail-minus.glif │ │ │ │ ├── pail-off-outline.glif │ │ │ │ ├── pail-off.glif │ │ │ │ ├── pail-outline.glif │ │ │ │ ├── pail-plus-outline.glif │ │ │ │ ├── pail-plus.glif │ │ │ │ ├── pail-remove-outline.glif │ │ │ │ ├── pail-remove.glif │ │ │ │ ├── pail.glif │ │ │ │ ├── palette-advanced.glif │ │ │ │ ├── palette-outline.glif │ │ │ │ ├── palette-swatch-outline.glif │ │ │ │ ├── palette-swatch-variant.glif │ │ │ │ ├── palette-swatch.glif │ │ │ │ ├── palette.glif │ │ │ │ ├── palm-tree.glif │ │ │ │ ├── pan-bottom-left.glif │ │ │ │ ├── pan-bottom-right.glif │ │ │ │ ├── pan-down.glif │ │ │ │ ├── pan-horizontal.glif │ │ │ │ ├── pan-left.glif │ │ │ │ ├── pan-right.glif │ │ │ │ ├── pan-top-left.glif │ │ │ │ ├── pan-top-right.glif │ │ │ │ ├── pan-up.glif │ │ │ │ ├── pan-vertical.glif │ │ │ │ ├── pan.glif │ │ │ │ ├── panda.glif │ │ │ │ ├── pandora.glif │ │ │ │ ├── panorama-fisheye.glif │ │ │ │ ├── panorama-horizontal-outline.glif │ │ │ │ ├── panorama-horizontal.glif │ │ │ │ ├── panorama-outline.glif │ │ │ │ ├── panorama-sphere-outline.glif │ │ │ │ ├── panorama-sphere.glif │ │ │ │ ├── panorama-variant-outline.glif │ │ │ │ ├── panorama-variant.glif │ │ │ │ ├── panorama-vertical-outline.glif │ │ │ │ ├── panorama-vertical.glif │ │ │ │ ├── panorama-wide-angle-outline.glif │ │ │ │ ├── panorama-wide-angle.glif │ │ │ │ ├── panorama.glif │ │ │ │ ├── paper-cut-vertical.glif │ │ │ │ ├── paper-roll-outline.glif │ │ │ │ ├── paper-roll.glif │ │ │ │ ├── paperclip-check.glif │ │ │ │ ├── paperclip-lock.glif │ │ │ │ ├── paperclip-minus.glif │ │ │ │ ├── paperclip-off.glif │ │ │ │ ├── paperclip-plus.glif │ │ │ │ ├── paperclip-remove.glif │ │ │ │ ├── paperclip.glif │ │ │ │ ├── parachute-outline.glif │ │ │ │ ├── parachute.glif │ │ │ │ ├── paragliding.glif │ │ │ │ ├── parking.glif │ │ │ │ ├── party-popper.glif │ │ │ │ ├── passport-biometric.glif │ │ │ │ ├── passport.glif │ │ │ │ ├── pasta.glif │ │ │ │ ├── patio-heater.glif │ │ │ │ ├── patreon.glif │ │ │ │ ├── pause-circle-outline.glif │ │ │ │ ├── pause-circle.glif │ │ │ │ ├── pause-octagon-outline.glif │ │ │ │ ├── pause-octagon.glif │ │ │ │ ├── pause.glif │ │ │ │ ├── paw-off-outline.glif │ │ │ │ ├── paw-off.glif │ │ │ │ ├── paw-outline.glif │ │ │ │ ├── paw.glif │ │ │ │ ├── peace.glif │ │ │ │ ├── peanut-off-outline.glif │ │ │ │ ├── peanut-off.glif │ │ │ │ ├── peanut-outline.glif │ │ │ │ ├── peanut.glif │ │ │ │ ├── pen-lock.glif │ │ │ │ ├── pen-minus.glif │ │ │ │ ├── pen-off.glif │ │ │ │ ├── pen-plus.glif │ │ │ │ ├── pen-remove.glif │ │ │ │ ├── pen.glif │ │ │ │ ├── pencil-box-multiple-outline.glif │ │ │ │ ├── pencil-box-multiple.glif │ │ │ │ ├── pencil-box-outline.glif │ │ │ │ ├── pencil-box.glif │ │ │ │ ├── pencil-circle-outline.glif │ │ │ │ ├── pencil-circle.glif │ │ │ │ ├── pencil-lock-outline.glif │ │ │ │ ├── pencil-lock.glif │ │ │ │ ├── pencil-minus-outline.glif │ │ │ │ ├── pencil-minus.glif │ │ │ │ ├── pencil-off-outline.glif │ │ │ │ ├── pencil-off.glif │ │ │ │ ├── pencil-outline.glif │ │ │ │ ├── pencil-plus-outline.glif │ │ │ │ ├── pencil-plus.glif │ │ │ │ ├── pencil-remove-outline.glif │ │ │ │ ├── pencil-remove.glif │ │ │ │ ├── pencil-ruler.glif │ │ │ │ ├── pencil.glif │ │ │ │ ├── penguin.glif │ │ │ │ ├── pentagon-outline.glif │ │ │ │ ├── pentagon.glif │ │ │ │ ├── pentagram.glif │ │ │ │ ├── percent-box-outline.glif │ │ │ │ ├── percent-box.glif │ │ │ │ ├── percent-circle-outline.glif │ │ │ │ ├── percent-circle.glif │ │ │ │ ├── percent-outline.glif │ │ │ │ ├── percent.glif │ │ │ │ ├── periodic-table.glif │ │ │ │ ├── perspective-less.glif │ │ │ │ ├── perspective-more.glif │ │ │ │ ├── ph.glif │ │ │ │ ├── phone-alert-outline.glif │ │ │ │ ├── phone-alert.glif │ │ │ │ ├── phone-bluetooth-outline.glif │ │ │ │ ├── phone-bluetooth.glif │ │ │ │ ├── phone-cancel-outline.glif │ │ │ │ ├── phone-cancel.glif │ │ │ │ ├── phone-check-outline.glif │ │ │ │ ├── phone-check.glif │ │ │ │ ├── phone-classic-off.glif │ │ │ │ ├── phone-classic.glif │ │ │ │ ├── phone-clock.glif │ │ │ │ ├── phone-dial-outline.glif │ │ │ │ ├── phone-dial.glif │ │ │ │ ├── phone-forward-outline.glif │ │ │ │ ├── phone-forward.glif │ │ │ │ ├── phone-hangup-outline.glif │ │ │ │ ├── phone-hangup.glif │ │ │ │ ├── phone-in-talk-outline.glif │ │ │ │ ├── phone-in-talk.glif │ │ │ │ ├── phone-incoming-outline.glif │ │ │ │ ├── phone-incoming.glif │ │ │ │ ├── phone-lock-outline.glif │ │ │ │ ├── phone-lock.glif │ │ │ │ ├── phone-log-outline.glif │ │ │ │ ├── phone-log.glif │ │ │ │ ├── phone-message-outline.glif │ │ │ │ ├── phone-message.glif │ │ │ │ ├── phone-minus-outline.glif │ │ │ │ ├── phone-minus.glif │ │ │ │ ├── phone-missed-outline.glif │ │ │ │ ├── phone-missed.glif │ │ │ │ ├── phone-off-outline.glif │ │ │ │ ├── phone-off.glif │ │ │ │ ├── phone-outgoing-outline.glif │ │ │ │ ├── phone-outgoing.glif │ │ │ │ ├── phone-outline.glif │ │ │ │ ├── phone-paused-outline.glif │ │ │ │ ├── phone-paused.glif │ │ │ │ ├── phone-plus-outline.glif │ │ │ │ ├── phone-plus.glif │ │ │ │ ├── phone-refresh-outline.glif │ │ │ │ ├── phone-refresh.glif │ │ │ │ ├── phone-remove-outline.glif │ │ │ │ ├── phone-remove.glif │ │ │ │ ├── phone-return-outline.glif │ │ │ │ ├── phone-return.glif │ │ │ │ ├── phone-ring-outline.glif │ │ │ │ ├── phone-ring.glif │ │ │ │ ├── phone-rotate-landscape.glif │ │ │ │ ├── phone-rotate-portrait.glif │ │ │ │ ├── phone-settings-outline.glif │ │ │ │ ├── phone-settings.glif │ │ │ │ ├── phone-sync-outline.glif │ │ │ │ ├── phone-sync.glif │ │ │ │ ├── phone-voip.glif │ │ │ │ ├── phone.glif │ │ │ │ ├── pi-box.glif │ │ │ │ ├── pi-hole.glif │ │ │ │ ├── pi.glif │ │ │ │ ├── piano-off.glif │ │ │ │ ├── piano.glif │ │ │ │ ├── pickaxe.glif │ │ │ │ ├── picture-in-picture-bottom-right-outline.glif │ │ │ │ ├── picture-in-picture-bottom-right.glif │ │ │ │ ├── picture-in-picture-top-right-outline.glif │ │ │ │ ├── picture-in-picture-top-right.glif │ │ │ │ ├── pier-crane.glif │ │ │ │ ├── pier.glif │ │ │ │ ├── pig-variant-outline.glif │ │ │ │ ├── pig-variant.glif │ │ │ │ ├── pig.glif │ │ │ │ ├── piggy-bank-outline.glif │ │ │ │ ├── piggy-bank.glif │ │ │ │ ├── pill-off.glif │ │ │ │ ├── pill.glif │ │ │ │ ├── pillar.glif │ │ │ │ ├── pin-off-outline.glif │ │ │ │ ├── pin-off.glif │ │ │ │ ├── pin-outline.glif │ │ │ │ ├── pin.glif │ │ │ │ ├── pine-tree-box.glif │ │ │ │ ├── pine-tree-fire.glif │ │ │ │ ├── pine-tree.glif │ │ │ │ ├── pinterest.glif │ │ │ │ ├── pinwheel-outline.glif │ │ │ │ ├── pinwheel.glif │ │ │ │ ├── pipe-disconnected.glif │ │ │ │ ├── pipe-leak.glif │ │ │ │ ├── pipe-valve.glif │ │ │ │ ├── pipe-wrench.glif │ │ │ │ ├── pipe.glif │ │ │ │ ├── pirate.glif │ │ │ │ ├── pistol.glif │ │ │ │ ├── piston.glif │ │ │ │ ├── pitchfork.glif │ │ │ │ ├── pizza.glif │ │ │ │ ├── play-box-lock-open-outline.glif │ │ │ │ ├── play-box-lock-open.glif │ │ │ │ ├── play-box-lock-outline.glif │ │ │ │ ├── play-box-lock.glif │ │ │ │ ├── play-box-multiple-outline.glif │ │ │ │ ├── play-box-multiple.glif │ │ │ │ ├── play-box-outline.glif │ │ │ │ ├── play-box.glif │ │ │ │ ├── play-circle-outline.glif │ │ │ │ ├── play-circle.glif │ │ │ │ ├── play-network-outline.glif │ │ │ │ ├── play-network.glif │ │ │ │ ├── play-outline.glif │ │ │ │ ├── play-pause.glif │ │ │ │ ├── play-protected-content.glif │ │ │ │ ├── play-speed.glif │ │ │ │ ├── play.glif │ │ │ │ ├── playlist-check.glif │ │ │ │ ├── playlist-edit.glif │ │ │ │ ├── playlist-minus.glif │ │ │ │ ├── playlist-music-outline.glif │ │ │ │ ├── playlist-music.glif │ │ │ │ ├── playlist-play.glif │ │ │ │ ├── playlist-plus.glif │ │ │ │ ├── playlist-remove.glif │ │ │ │ ├── playlist-star.glif │ │ │ │ ├── plex.glif │ │ │ │ ├── pliers.glif │ │ │ │ ├── plus-box-multiple-outline.glif │ │ │ │ ├── plus-box-multiple.glif │ │ │ │ ├── plus-box-outline.glif │ │ │ │ ├── plus-box.glif │ │ │ │ ├── plus-circle-multiple-outline.glif │ │ │ │ ├── plus-circle-multiple.glif │ │ │ │ ├── plus-circle-outline.glif │ │ │ │ ├── plus-circle.glif │ │ │ │ ├── plus-lock-open.glif │ │ │ │ ├── plus-lock.glif │ │ │ │ ├── plus-minus-box.glif │ │ │ │ ├── plus-minus-variant.glif │ │ │ │ ├── plus-minus.glif │ │ │ │ ├── plus-network-outline.glif │ │ │ │ ├── plus-network.glif │ │ │ │ ├── plus-outline.glif │ │ │ │ ├── plus-thick.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── podcast.glif │ │ │ │ ├── podium-bronze.glif │ │ │ │ ├── podium-gold.glif │ │ │ │ ├── podium-silver.glif │ │ │ │ ├── podium.glif │ │ │ │ ├── point-of-sale.glif │ │ │ │ ├── pokeball.glif │ │ │ │ ├── pokemon-go.glif │ │ │ │ ├── poker-chip.glif │ │ │ │ ├── polaroid.glif │ │ │ │ ├── police-badge-outline.glif │ │ │ │ ├── police-badge.glif │ │ │ │ ├── police-station.glif │ │ │ │ ├── poll.glif │ │ │ │ ├── polo.glif │ │ │ │ ├── polymer.glif │ │ │ │ ├── pool-thermometer.glif │ │ │ │ ├── pool.glif │ │ │ │ ├── popcorn.glif │ │ │ │ ├── post-lamp.glif │ │ │ │ ├── post-outline.glif │ │ │ │ ├── post.glif │ │ │ │ ├── postage-stamp.glif │ │ │ │ ├── pot-mix-outline.glif │ │ │ │ ├── pot-mix.glif │ │ │ │ ├── pot-outline.glif │ │ │ │ ├── pot-steam-outline.glif │ │ │ │ ├── pot-steam.glif │ │ │ │ ├── pot.glif │ │ │ │ ├── pound-box-outline.glif │ │ │ │ ├── pound-box.glif │ │ │ │ ├── pound.glif │ │ │ │ ├── power-cycle.glif │ │ │ │ ├── power-off.glif │ │ │ │ ├── power-on.glif │ │ │ │ ├── power-plug-off-outline.glif │ │ │ │ ├── power-plug-off.glif │ │ │ │ ├── power-plug-outline.glif │ │ │ │ ├── power-plug.glif │ │ │ │ ├── power-settings.glif │ │ │ │ ├── power-sleep.glif │ │ │ │ ├── power-socket-au.glif │ │ │ │ ├── power-socket-ch.glif │ │ │ │ ├── power-socket-de.glif │ │ │ │ ├── power-socket-eu.glif │ │ │ │ ├── power-socket-fr.glif │ │ │ │ ├── power-socket-it.glif │ │ │ │ ├── power-socket-jp.glif │ │ │ │ ├── power-socket-uk.glif │ │ │ │ ├── power-socket-us.glif │ │ │ │ ├── power-socket.glif │ │ │ │ ├── power-standby.glif │ │ │ │ ├── power.glif │ │ │ │ ├── powershell.glif │ │ │ │ ├── prescription.glif │ │ │ │ ├── presentation-play.glif │ │ │ │ ├── presentation.glif │ │ │ │ ├── pretzel.glif │ │ │ │ ├── printer-3d-nozzle-alert-outline.glif │ │ │ │ ├── printer-3d-nozzle-alert.glif │ │ │ │ ├── printer-3d-nozzle-heat-outline.glif │ │ │ │ ├── printer-3d-nozzle-heat.glif │ │ │ │ ├── printer-3d-nozzle-outline.glif │ │ │ │ ├── printer-3d-nozzle.glif │ │ │ │ ├── printer-3d.glif │ │ │ │ ├── printer-alert.glif │ │ │ │ ├── printer-check.glif │ │ │ │ ├── printer-eye.glif │ │ │ │ ├── printer-off-outline.glif │ │ │ │ ├── printer-off.glif │ │ │ │ ├── printer-outline.glif │ │ │ │ ├── printer-pos.glif │ │ │ │ ├── printer-search.glif │ │ │ │ ├── printer-settings.glif │ │ │ │ ├── printer-wireless.glif │ │ │ │ ├── printer.glif │ │ │ │ ├── priority-high.glif │ │ │ │ ├── priority-low.glif │ │ │ │ ├── professional-hexagon.glif │ │ │ │ ├── progress-alert.glif │ │ │ │ ├── progress-check.glif │ │ │ │ ├── progress-clock.glif │ │ │ │ ├── progress-close.glif │ │ │ │ ├── progress-download.glif │ │ │ │ ├── progress-pencil.glif │ │ │ │ ├── progress-question.glif │ │ │ │ ├── progress-star.glif │ │ │ │ ├── progress-upload.glif │ │ │ │ ├── progress-wrench.glif │ │ │ │ ├── projector-off.glif │ │ │ │ ├── projector-screen-off-outline.glif │ │ │ │ ├── projector-screen-off.glif │ │ │ │ ├── projector-screen-outline.glif │ │ │ │ ├── projector-screen-variant-off-outline.glif │ │ │ │ ├── projector-screen-variant-off.glif │ │ │ │ ├── projector-screen-variant-outline.glif │ │ │ │ ├── projector-screen-variant.glif │ │ │ │ ├── projector-screen.glif │ │ │ │ ├── projector.glif │ │ │ │ ├── propane-tank-outline.glif │ │ │ │ ├── propane-tank.glif │ │ │ │ ├── protocol.glif │ │ │ │ ├── publish-off.glif │ │ │ │ ├── publish.glif │ │ │ │ ├── pulse.glif │ │ │ │ ├── pump.glif │ │ │ │ ├── pumpkin.glif │ │ │ │ ├── purse-outline.glif │ │ │ │ ├── purse.glif │ │ │ │ ├── puzzle-check-outline.glif │ │ │ │ ├── puzzle-check.glif │ │ │ │ ├── puzzle-edit-outline.glif │ │ │ │ ├── puzzle-edit.glif │ │ │ │ ├── puzzle-heart-outline.glif │ │ │ │ ├── puzzle-heart.glif │ │ │ │ ├── puzzle-minus-outline.glif │ │ │ │ ├── puzzle-minus.glif │ │ │ │ ├── puzzle-outline.glif │ │ │ │ ├── puzzle-plus-outline.glif │ │ │ │ ├── puzzle-plus.glif │ │ │ │ ├── puzzle-remove-outline.glif │ │ │ │ ├── puzzle-remove.glif │ │ │ │ ├── puzzle-star-outline.glif │ │ │ │ ├── puzzle-star.glif │ │ │ │ ├── puzzle.glif │ │ │ │ ├── pyramid-off.glif │ │ │ │ ├── pyramid.glif │ │ │ │ ├── qi.glif │ │ │ │ ├── qqchat.glif │ │ │ │ ├── qrcode-edit.glif │ │ │ │ ├── qrcode-minus.glif │ │ │ │ ├── qrcode-plus.glif │ │ │ │ ├── qrcode-remove.glif │ │ │ │ ├── qrcode-scan.glif │ │ │ │ ├── qrcode.glif │ │ │ │ ├── quadcopter.glif │ │ │ │ ├── quality-high.glif │ │ │ │ ├── quality-low.glif │ │ │ │ ├── quality-medium.glif │ │ │ │ ├── quora.glif │ │ │ │ ├── rabbit-variant-outline.glif │ │ │ │ ├── rabbit-variant.glif │ │ │ │ ├── rabbit.glif │ │ │ │ ├── racing-helmet.glif │ │ │ │ ├── racquetball.glif │ │ │ │ ├── radar.glif │ │ │ │ ├── radiator-disabled.glif │ │ │ │ ├── radiator-off.glif │ │ │ │ ├── radiator.glif │ │ │ │ ├── radio-am.glif │ │ │ │ ├── radio-fm.glif │ │ │ │ ├── radio-handheld.glif │ │ │ │ ├── radio-off.glif │ │ │ │ ├── radio-tower.glif │ │ │ │ ├── radio.glif │ │ │ │ ├── radioactive-circle-outline.glif │ │ │ │ ├── radioactive-circle.glif │ │ │ │ ├── radioactive-off.glif │ │ │ │ ├── radioactive.glif │ │ │ │ ├── radiobox-marked.glif │ │ │ │ ├── radiology-box-outline.glif │ │ │ │ ├── radiology-box.glif │ │ │ │ ├── radius-outline.glif │ │ │ │ ├── radius.glif │ │ │ │ ├── railroad-light.glif │ │ │ │ ├── rake.glif │ │ │ │ ├── raspberry-pi.glif │ │ │ │ ├── raw-off.glif │ │ │ │ ├── raw.glif │ │ │ │ ├── ray-end-arrow.glif │ │ │ │ ├── ray-end.glif │ │ │ │ ├── ray-start-arrow.glif │ │ │ │ ├── ray-start-end.glif │ │ │ │ ├── ray-start-vertex-end.glif │ │ │ │ ├── ray-start.glif │ │ │ │ ├── ray-vertex.glif │ │ │ │ ├── razor-double-edge.glif │ │ │ │ ├── razor-single-edge.glif │ │ │ │ ├── react.glif │ │ │ │ ├── read.glif │ │ │ │ ├── receipt-outline.glif │ │ │ │ ├── receipt-text-check-outline.glif │ │ │ │ ├── receipt-text-check.glif │ │ │ │ ├── receipt-text-minus-outline.glif │ │ │ │ ├── receipt-text-minus.glif │ │ │ │ ├── receipt-text-plus-outline.glif │ │ │ │ ├── receipt-text-plus.glif │ │ │ │ ├── receipt-text-remove-outline.glif │ │ │ │ ├── receipt-text-remove.glif │ │ │ │ ├── receipt.glif │ │ │ │ ├── record-circle-outline.glif │ │ │ │ ├── record-circle.glif │ │ │ │ ├── record-player.glif │ │ │ │ ├── record-rec.glif │ │ │ │ ├── record.glif │ │ │ │ ├── rectangle-outline.glif │ │ │ │ ├── rectangle.glif │ │ │ │ ├── recycle-variant.glif │ │ │ │ ├── recycle.glif │ │ │ │ ├── reddit.glif │ │ │ │ ├── redhat.glif │ │ │ │ ├── redo-variant.glif │ │ │ │ ├── redo.glif │ │ │ │ ├── reflect-horizontal.glif │ │ │ │ ├── reflect-vertical.glif │ │ │ │ ├── refresh-auto.glif │ │ │ │ ├── refresh-circle.glif │ │ │ │ ├── refresh.glif │ │ │ │ ├── regex.glif │ │ │ │ ├── registered-trademark.glif │ │ │ │ ├── reiterate.glif │ │ │ │ ├── relation-many-to-many.glif │ │ │ │ ├── relation-many-to-one-or-many.glif │ │ │ │ ├── relation-many-to-one.glif │ │ │ │ ├── relation-many-to-only-one.glif │ │ │ │ ├── relation-many-to-zero-or-many.glif │ │ │ │ ├── relation-many-to-zero-or-one.glif │ │ │ │ ├── relation-one-or-many-to-many.glif │ │ │ │ ├── relation-one-or-many-to-one-or-many.glif │ │ │ │ ├── relation-one-or-many-to-one.glif │ │ │ │ ├── relation-one-or-many-to-only-one.glif │ │ │ │ ├── relation-one-or-many-to-zero-or-many.glif │ │ │ │ ├── relation-one-or-many-to-zero-or-one.glif │ │ │ │ ├── relation-one-to-many.glif │ │ │ │ ├── relation-one-to-one-or-many.glif │ │ │ │ ├── relation-one-to-one.glif │ │ │ │ ├── relation-one-to-only-one.glif │ │ │ │ ├── relation-one-to-zero-or-many.glif │ │ │ │ ├── relation-one-to-zero-or-one.glif │ │ │ │ ├── relation-only-one-to-many.glif │ │ │ │ ├── relation-only-one-to-one-or-many.glif │ │ │ │ ├── relation-only-one-to-one.glif │ │ │ │ ├── relation-only-one-to-only-one.glif │ │ │ │ ├── relation-only-one-to-zero-or-many.glif │ │ │ │ ├── relation-only-one-to-zero-or-one.glif │ │ │ │ ├── relation-zero-or-many-to-many.glif │ │ │ │ ├── relation-zero-or-many-to-one-or-many.glif │ │ │ │ ├── relation-zero-or-many-to-one.glif │ │ │ │ ├── relation-zero-or-many-to-only-one.glif │ │ │ │ ├── relation-zero-or-many-to-zero-or-many.glif │ │ │ │ ├── relation-zero-or-many-to-zero-or-one.glif │ │ │ │ ├── relation-zero-or-one-to-many.glif │ │ │ │ ├── relation-zero-or-one-to-one-or-many.glif │ │ │ │ ├── relation-zero-or-one-to-one.glif │ │ │ │ ├── relation-zero-or-one-to-only-one.glif │ │ │ │ ├── relation-zero-or-one-to-zero-or-many.glif │ │ │ │ ├── relation-zero-or-one-to-zero-or-one.glif │ │ │ │ ├── relative-scale.glif │ │ │ │ ├── reload-alert.glif │ │ │ │ ├── reload.glif │ │ │ │ ├── reminder.glif │ │ │ │ ├── remote-desktop.glif │ │ │ │ ├── remote-off.glif │ │ │ │ ├── remote-tv-off.glif │ │ │ │ ├── remote-tv.glif │ │ │ │ ├── remote.glif │ │ │ │ ├── rename-box.glif │ │ │ │ ├── reorder-horizontal.glif │ │ │ │ ├── reorder-vertical.glif │ │ │ │ ├── repeat-off.glif │ │ │ │ ├── repeat-once.glif │ │ │ │ ├── repeat-variant.glif │ │ │ │ ├── repeat.glif │ │ │ │ ├── replay.glif │ │ │ │ ├── reply-all-outline.glif │ │ │ │ ├── reply-all.glif │ │ │ │ ├── reply-circle.glif │ │ │ │ ├── reply-outline.glif │ │ │ │ ├── reply.glif │ │ │ │ ├── reproduction.glif │ │ │ │ ├── resistor-nodes.glif │ │ │ │ ├── resistor.glif │ │ │ │ ├── resize-bottom-right.glif │ │ │ │ ├── resize.glif │ │ │ │ ├── responsive.glif │ │ │ │ ├── restart-alert.glif │ │ │ │ ├── restart-off.glif │ │ │ │ ├── restart.glif │ │ │ │ ├── restore-alert.glif │ │ │ │ ├── restore.glif │ │ │ │ ├── rewind-10.glif │ │ │ │ ├── rewind-15.glif │ │ │ │ ├── rewind-30.glif │ │ │ │ ├── rewind-5.glif │ │ │ │ ├── rewind-60.glif │ │ │ │ ├── rewind-outline.glif │ │ │ │ ├── rewind.glif │ │ │ │ ├── rhombus-medium-outline.glif │ │ │ │ ├── rhombus-medium.glif │ │ │ │ ├── rhombus-outline.glif │ │ │ │ ├── rhombus-split-outline.glif │ │ │ │ ├── rhombus-split.glif │ │ │ │ ├── rhombus.glif │ │ │ │ ├── ribbon.glif │ │ │ │ ├── rice.glif │ │ │ │ ├── rickshaw-electric.glif │ │ │ │ ├── rickshaw.glif │ │ │ │ ├── ring.glif │ │ │ │ ├── rivet.glif │ │ │ │ ├── road-variant.glif │ │ │ │ ├── road.glif │ │ │ │ ├── robber.glif │ │ │ │ ├── robot-angry-outline.glif │ │ │ │ ├── robot-angry.glif │ │ │ │ ├── robot-confused-outline.glif │ │ │ │ ├── robot-confused.glif │ │ │ │ ├── robot-dead-outline.glif │ │ │ │ ├── robot-dead.glif │ │ │ │ ├── robot-excited-outline.glif │ │ │ │ ├── robot-excited.glif │ │ │ │ ├── robot-happy-outline.glif │ │ │ │ ├── robot-happy.glif │ │ │ │ ├── robot-industrial-outline.glif │ │ │ │ ├── robot-industrial.glif │ │ │ │ ├── robot-love-outline.glif │ │ │ │ ├── robot-love.glif │ │ │ │ ├── robot-mower-outline.glif │ │ │ │ ├── robot-mower.glif │ │ │ │ ├── robot-off-outline.glif │ │ │ │ ├── robot-off.glif │ │ │ │ ├── robot-outline.glif │ │ │ │ ├── robot-vacuum-variant.glif │ │ │ │ ├── robot-vacuum.glif │ │ │ │ ├── robot.glif │ │ │ │ ├── rocket-launch-outline.glif │ │ │ │ ├── rocket-launch.glif │ │ │ │ ├── rocket-outline.glif │ │ │ │ ├── rocket.glif │ │ │ │ ├── rodent.glif │ │ │ │ ├── roller-shade-closed.glif │ │ │ │ ├── roller-shade.glif │ │ │ │ ├── roller-skate-off.glif │ │ │ │ ├── roller-skate.glif │ │ │ │ ├── rollerblade-off.glif │ │ │ │ ├── rollerblade.glif │ │ │ │ ├── rollupjs.glif │ │ │ │ ├── rolodex-outline.glif │ │ │ │ ├── rolodex.glif │ │ │ │ ├── roman-numeral-2.glif │ │ │ │ ├── roman-numeral-3.glif │ │ │ │ ├── roman-numeral-4.glif │ │ │ │ ├── roman-numeral-6.glif │ │ │ │ ├── roman-numeral-7.glif │ │ │ │ ├── roman-numeral-8.glif │ │ │ │ ├── roman-numeral-9.glif │ │ │ │ ├── room-service-outline.glif │ │ │ │ ├── room-service.glif │ │ │ │ ├── rotate-360.glif │ │ │ │ ├── rotate-3d-variant.glif │ │ │ │ ├── rotate-3d.glif │ │ │ │ ├── rotate-left-variant.glif │ │ │ │ ├── rotate-left.glif │ │ │ │ ├── rotate-orbit.glif │ │ │ │ ├── rotate-right-variant.glif │ │ │ │ ├── rotate-right.glif │ │ │ │ ├── rounded-corner.glif │ │ │ │ ├── router-network.glif │ │ │ │ ├── router-wireless-off.glif │ │ │ │ ├── router-wireless-settings.glif │ │ │ │ ├── router-wireless.glif │ │ │ │ ├── router.glif │ │ │ │ ├── routes-clock.glif │ │ │ │ ├── routes.glif │ │ │ │ ├── rowing.glif │ │ │ │ ├── rss-box.glif │ │ │ │ ├── rss-off.glif │ │ │ │ ├── rss.glif │ │ │ │ ├── rug.glif │ │ │ │ ├── rugby.glif │ │ │ │ ├── ruler-square-compass.glif │ │ │ │ ├── ruler-square.glif │ │ │ │ ├── ruler.glif │ │ │ │ ├── run-fast.glif │ │ │ │ ├── run.glif │ │ │ │ ├── rv-truck.glif │ │ │ │ ├── sack-percent.glif │ │ │ │ ├── sack.glif │ │ │ │ ├── safe-square-outline.glif │ │ │ │ ├── safe-square.glif │ │ │ │ ├── safe.glif │ │ │ │ ├── safety-goggles.glif │ │ │ │ ├── sail-boat-sink.glif │ │ │ │ ├── sail-boat.glif │ │ │ │ ├── sale-outline.glif │ │ │ │ ├── sale.glif │ │ │ │ ├── salesforce.glif │ │ │ │ ├── sass.glif │ │ │ │ ├── satellite-uplink.glif │ │ │ │ ├── satellite-variant.glif │ │ │ │ ├── satellite.glif │ │ │ │ ├── sausage-off.glif │ │ │ │ ├── sausage.glif │ │ │ │ ├── saw-blade.glif │ │ │ │ ├── sawtooth-wave.glif │ │ │ │ ├── saxophone.glif │ │ │ │ ├── scale-balance.glif │ │ │ │ ├── scale-bathroom.glif │ │ │ │ ├── scale-off.glif │ │ │ │ ├── scale-unbalanced.glif │ │ │ │ ├── scale.glif │ │ │ │ ├── scan-helper.glif │ │ │ │ ├── scanner-off.glif │ │ │ │ ├── scanner.glif │ │ │ │ ├── scatter-plot-outline.glif │ │ │ │ ├── scatter-plot.glif │ │ │ │ ├── scent-off.glif │ │ │ │ ├── scent.glif │ │ │ │ ├── school-outline.glif │ │ │ │ ├── school.glif │ │ │ │ ├── scissors-cutting.glif │ │ │ │ ├── scooter-electric.glif │ │ │ │ ├── scooter.glif │ │ │ │ ├── scoreboard-outline.glif │ │ │ │ ├── scoreboard.glif │ │ │ │ ├── screen-rotation-lock.glif │ │ │ │ ├── screen-rotation.glif │ │ │ │ ├── screw-flat-top.glif │ │ │ │ ├── screw-lag.glif │ │ │ │ ├── screw-machine-flat-top.glif │ │ │ │ ├── screw-machine-round-top.glif │ │ │ │ ├── screw-round-top.glif │ │ │ │ ├── screwdriver.glif │ │ │ │ ├── script-outline.glif │ │ │ │ ├── script-text-key-outline.glif │ │ │ │ ├── script-text-key.glif │ │ │ │ ├── script-text-outline.glif │ │ │ │ ├── script-text-play-outline.glif │ │ │ │ ├── script-text-play.glif │ │ │ │ ├── script-text.glif │ │ │ │ ├── script.glif │ │ │ │ ├── sd.glif │ │ │ │ ├── seal-variant.glif │ │ │ │ ├── seal.glif │ │ │ │ ├── search-web.glif │ │ │ │ ├── seat-flat-angled.glif │ │ │ │ ├── seat-flat.glif │ │ │ │ ├── seat-individual-suite.glif │ │ │ │ ├── seat-legroom-extra.glif │ │ │ │ ├── seat-legroom-normal.glif │ │ │ │ ├── seat-legroom-reduced.glif │ │ │ │ ├── seat-outline.glif │ │ │ │ ├── seat-passenger.glif │ │ │ │ ├── seat-recline-extra.glif │ │ │ │ ├── seat-recline-normal.glif │ │ │ │ ├── seat.glif │ │ │ │ ├── seatbelt.glif │ │ │ │ ├── security-network.glif │ │ │ │ ├── security.glif │ │ │ │ ├── seed-off-outline.glif │ │ │ │ ├── seed-off.glif │ │ │ │ ├── seed-outline.glif │ │ │ │ ├── seed-plus-outline.glif │ │ │ │ ├── seed-plus.glif │ │ │ │ ├── seed.glif │ │ │ │ ├── seesaw.glif │ │ │ │ ├── segment.glif │ │ │ │ ├── select-all.glif │ │ │ │ ├── select-color.glif │ │ │ │ ├── select-compare.glif │ │ │ │ ├── select-drag.glif │ │ │ │ ├── select-group.glif │ │ │ │ ├── select-inverse.glif │ │ │ │ ├── select-marker.glif │ │ │ │ ├── select-multiple-marker.glif │ │ │ │ ├── select-multiple.glif │ │ │ │ ├── select-off.glif │ │ │ │ ├── select-place.glif │ │ │ │ ├── select-remove.glif │ │ │ │ ├── select-search.glif │ │ │ │ ├── select.glif │ │ │ │ ├── selection-drag.glif │ │ │ │ ├── selection-ellipse-arrow-inside.glif │ │ │ │ ├── selection-ellipse-remove.glif │ │ │ │ ├── selection-ellipse.glif │ │ │ │ ├── selection-marker.glif │ │ │ │ ├── selection-multiple-marker.glif │ │ │ │ ├── selection-multiple.glif │ │ │ │ ├── selection-off.glif │ │ │ │ ├── selection-remove.glif │ │ │ │ ├── selection-search.glif │ │ │ │ ├── selection.glif │ │ │ │ ├── semantic-web.glif │ │ │ │ ├── send-check-outline.glif │ │ │ │ ├── send-check.glif │ │ │ │ ├── send-circle-outline.glif │ │ │ │ ├── send-circle.glif │ │ │ │ ├── send-clock-outline.glif │ │ │ │ ├── send-clock.glif │ │ │ │ ├── send-lock-outline.glif │ │ │ │ ├── send-lock.glif │ │ │ │ ├── send-outline.glif │ │ │ │ ├── send.glif │ │ │ │ ├── serial-port.glif │ │ │ │ ├── server-minus.glif │ │ │ │ ├── server-network-off.glif │ │ │ │ ├── server-network.glif │ │ │ │ ├── server-off.glif │ │ │ │ ├── server-plus.glif │ │ │ │ ├── server-remove.glif │ │ │ │ ├── server-security.glif │ │ │ │ ├── server.glif │ │ │ │ ├── set-all.glif │ │ │ │ ├── set-center-right.glif │ │ │ │ ├── set-center.glif │ │ │ │ ├── set-left-center.glif │ │ │ │ ├── set-left-right.glif │ │ │ │ ├── set-left.glif │ │ │ │ ├── set-merge.glif │ │ │ │ ├── set-none.glif │ │ │ │ ├── set-right.glif │ │ │ │ ├── set-split.glif │ │ │ │ ├── set-square.glif │ │ │ │ ├── set-top-box.glif │ │ │ │ ├── settings-helper.glif │ │ │ │ ├── shaker-outline.glif │ │ │ │ ├── shaker.glif │ │ │ │ ├── shape-circle-plus.glif │ │ │ │ ├── shape-outline.glif │ │ │ │ ├── shape-oval-plus.glif │ │ │ │ ├── shape-plus.glif │ │ │ │ ├── shape-polygon-plus.glif │ │ │ │ ├── shape-rectangle-plus.glif │ │ │ │ ├── shape-square-plus.glif │ │ │ │ ├── shape-square-rounded-plus.glif │ │ │ │ ├── shape.glif │ │ │ │ ├── share-all-outline.glif │ │ │ │ ├── share-all.glif │ │ │ │ ├── share-circle.glif │ │ │ │ ├── share-off-outline.glif │ │ │ │ ├── share-off.glif │ │ │ │ ├── share-outline.glif │ │ │ │ ├── share-variant-outline.glif │ │ │ │ ├── share-variant.glif │ │ │ │ ├── share.glif │ │ │ │ ├── shark-fin-outline.glif │ │ │ │ ├── shark-fin.glif │ │ │ │ ├── shark-off.glif │ │ │ │ ├── shark.glif │ │ │ │ ├── sheep.glif │ │ │ │ ├── shield-account-outline.glif │ │ │ │ ├── shield-account-variant-outline.glif │ │ │ │ ├── shield-account-variant.glif │ │ │ │ ├── shield-account.glif │ │ │ │ ├── shield-airplane-outline.glif │ │ │ │ ├── shield-airplane.glif │ │ │ │ ├── shield-alert-outline.glif │ │ │ │ ├── shield-alert.glif │ │ │ │ ├── shield-bug-outline.glif │ │ │ │ ├── shield-bug.glif │ │ │ │ ├── shield-car.glif │ │ │ │ ├── shield-check-outline.glif │ │ │ │ ├── shield-check.glif │ │ │ │ ├── shield-cross-outline.glif │ │ │ │ ├── shield-cross.glif │ │ │ │ ├── shield-crown-outline.glif │ │ │ │ ├── shield-crown.glif │ │ │ │ ├── shield-edit-outline.glif │ │ │ │ ├── shield-edit.glif │ │ │ │ ├── shield-half-full.glif │ │ │ │ ├── shield-half.glif │ │ │ │ ├── shield-home-outline.glif │ │ │ │ ├── shield-home.glif │ │ │ │ ├── shield-key-outline.glif │ │ │ │ ├── shield-key.glif │ │ │ │ ├── shield-link-variant-outline.glif │ │ │ │ ├── shield-link-variant.glif │ │ │ │ ├── shield-lock-open-outline.glif │ │ │ │ ├── shield-lock-open.glif │ │ │ │ ├── shield-lock-outline.glif │ │ │ │ ├── shield-lock.glif │ │ │ │ ├── shield-moon-outline.glif │ │ │ │ ├── shield-moon.glif │ │ │ │ ├── shield-off-outline.glif │ │ │ │ ├── shield-off.glif │ │ │ │ ├── shield-outline.glif │ │ │ │ ├── shield-plus-outline.glif │ │ │ │ ├── shield-plus.glif │ │ │ │ ├── shield-refresh-outline.glif │ │ │ │ ├── shield-refresh.glif │ │ │ │ ├── shield-remove-outline.glif │ │ │ │ ├── shield-remove.glif │ │ │ │ ├── shield-search.glif │ │ │ │ ├── shield-star-outline.glif │ │ │ │ ├── shield-star.glif │ │ │ │ ├── shield-sun-outline.glif │ │ │ │ ├── shield-sun.glif │ │ │ │ ├── shield-sword-outline.glif │ │ │ │ ├── shield-sword.glif │ │ │ │ ├── shield-sync-outline.glif │ │ │ │ ├── shield-sync.glif │ │ │ │ ├── shield.glif │ │ │ │ ├── shimmer.glif │ │ │ │ ├── ship-wheel.glif │ │ │ │ ├── shipping-pallet.glif │ │ │ │ ├── shoe-ballet.glif │ │ │ │ ├── shoe-cleat.glif │ │ │ │ ├── shoe-formal.glif │ │ │ │ ├── shoe-heel.glif │ │ │ │ ├── shoe-print.glif │ │ │ │ ├── shoe-sneaker.glif │ │ │ │ ├── shopping-music.glif │ │ │ │ ├── shopping-outline.glif │ │ │ │ ├── shopping-search-outline.glif │ │ │ │ ├── shopping-search.glif │ │ │ │ ├── shopping.glif │ │ │ │ ├── shore.glif │ │ │ │ ├── shovel-off.glif │ │ │ │ ├── shovel.glif │ │ │ │ ├── shower-head.glif │ │ │ │ ├── shower.glif │ │ │ │ ├── shredder.glif │ │ │ │ ├── shuffle-disabled.glif │ │ │ │ ├── shuffle-variant.glif │ │ │ │ ├── shuffle.glif │ │ │ │ ├── shuriken.glif │ │ │ │ ├── sickle.glif │ │ │ │ ├── sigma-lower.glif │ │ │ │ ├── sigma.glif │ │ │ │ ├── sign-caution.glif │ │ │ │ ├── sign-direction-minus.glif │ │ │ │ ├── sign-direction-plus.glif │ │ │ │ ├── sign-direction-remove.glif │ │ │ │ ├── sign-direction.glif │ │ │ │ ├── sign-pole.glif │ │ │ │ ├── sign-real-estate.glif │ │ │ │ ├── sign-text.glif │ │ │ │ ├── signal-2g.glif │ │ │ │ ├── signal-3g.glif │ │ │ │ ├── signal-4g.glif │ │ │ │ ├── signal-5g.glif │ │ │ │ ├── signal-cellular-1.glif │ │ │ │ ├── signal-cellular-2.glif │ │ │ │ ├── signal-cellular-3.glif │ │ │ │ ├── signal-cellular-outline.glif │ │ │ │ ├── signal-distance-variant.glif │ │ │ │ ├── signal-hspa-plus.glif │ │ │ │ ├── signal-hspa.glif │ │ │ │ ├── signal-off.glif │ │ │ │ ├── signal-variant.glif │ │ │ │ ├── signal.glif │ │ │ │ ├── signature-freehand.glif │ │ │ │ ├── signature-image.glif │ │ │ │ ├── signature-text.glif │ │ │ │ ├── signature.glif │ │ │ │ ├── silo.glif │ │ │ │ ├── silverware-clean.glif │ │ │ │ ├── silverware-fork-knife.glif │ │ │ │ ├── silverware-fork.glif │ │ │ │ ├── silverware-spoon.glif │ │ │ │ ├── silverware-variant.glif │ │ │ │ ├── silverware.glif │ │ │ │ ├── sim-alert-outline.glif │ │ │ │ ├── sim-alert.glif │ │ │ │ ├── sim-off-outline.glif │ │ │ │ ├── sim-off.glif │ │ │ │ ├── sim-outline.glif │ │ │ │ ├── sim.glif │ │ │ │ ├── simple-icons.glif │ │ │ │ ├── sina-weibo.glif │ │ │ │ ├── sine-wave.glif │ │ │ │ ├── sitemap-outline.glif │ │ │ │ ├── sitemap.glif │ │ │ │ ├── size-m.glif │ │ │ │ ├── size-s.glif │ │ │ │ ├── size-xl.glif │ │ │ │ ├── size-xs.glif │ │ │ │ ├── size-xxl.glif │ │ │ │ ├── size-xxs.glif │ │ │ │ ├── size-xxxl.glif │ │ │ │ ├── skate-off.glif │ │ │ │ ├── skate.glif │ │ │ │ ├── skateboard.glif │ │ │ │ ├── skateboarding.glif │ │ │ │ ├── skew-less.glif │ │ │ │ ├── skew-more.glif │ │ │ │ ├── ski-cross-country.glif │ │ │ │ ├── ski-water.glif │ │ │ │ ├── ski.glif │ │ │ │ ├── skip-backward-outline.glif │ │ │ │ ├── skip-backward.glif │ │ │ │ ├── skip-forward-outline.glif │ │ │ │ ├── skip-forward.glif │ │ │ │ ├── skip-next-circle-outline.glif │ │ │ │ ├── skip-next-circle.glif │ │ │ │ ├── skip-next-outline.glif │ │ │ │ ├── skip-next.glif │ │ │ │ ├── skip-previous-circle-outline.glif │ │ │ │ ├── skip-previous-circle.glif │ │ │ │ ├── skip-previous-outline.glif │ │ │ │ ├── skip-previous.glif │ │ │ │ ├── skull-crossbones-outline.glif │ │ │ │ ├── skull-crossbones.glif │ │ │ │ ├── skull-outline.glif │ │ │ │ ├── skull-scan-outline.glif │ │ │ │ ├── skull-scan.glif │ │ │ │ ├── skull.glif │ │ │ │ ├── skype-business.glif │ │ │ │ ├── skype.glif │ │ │ │ ├── slack.glif │ │ │ │ ├── slash-forward-box.glif │ │ │ │ ├── slash-forward.glif │ │ │ │ ├── sledding.glif │ │ │ │ ├── sleep-off.glif │ │ │ │ ├── sleep.glif │ │ │ │ ├── slide.glif │ │ │ │ ├── slope-downhill.glif │ │ │ │ ├── slope-uphill.glif │ │ │ │ ├── slot-machine-outline.glif │ │ │ │ ├── slot-machine.glif │ │ │ │ ├── smart-card-off-outline.glif │ │ │ │ ├── smart-card-off.glif │ │ │ │ ├── smart-card-outline.glif │ │ │ │ ├── smart-card-reader-outline.glif │ │ │ │ ├── smart-card-reader.glif │ │ │ │ ├── smart-card.glif │ │ │ │ ├── smog.glif │ │ │ │ ├── smoke-detector-alert-outline.glif │ │ │ │ ├── smoke-detector-alert.glif │ │ │ │ ├── smoke-detector-off-outline.glif │ │ │ │ ├── smoke-detector-off.glif │ │ │ │ ├── smoke-detector-outline.glif │ │ │ │ ├── smoke-detector-variant-alert.glif │ │ │ │ ├── smoke-detector-variant-off.glif │ │ │ │ ├── smoke-detector-variant.glif │ │ │ │ ├── smoke-detector.glif │ │ │ │ ├── smoke.glif │ │ │ │ ├── smoking-off.glif │ │ │ │ ├── smoking-pipe-off.glif │ │ │ │ ├── smoking-pipe.glif │ │ │ │ ├── smoking.glif │ │ │ │ ├── snail.glif │ │ │ │ ├── snake.glif │ │ │ │ ├── snapchat.glif │ │ │ │ ├── snowboard.glif │ │ │ │ ├── snowflake-alert.glif │ │ │ │ ├── snowflake-check.glif │ │ │ │ ├── snowflake-melt.glif │ │ │ │ ├── snowflake-off.glif │ │ │ │ ├── snowflake-thermometer.glif │ │ │ │ ├── snowflake-variant.glif │ │ │ │ ├── snowflake.glif │ │ │ │ ├── snowman.glif │ │ │ │ ├── snowmobile.glif │ │ │ │ ├── snowshoeing.glif │ │ │ │ ├── soccer-field.glif │ │ │ │ ├── soccer.glif │ │ │ │ ├── social-distance-2-meters.glif │ │ │ │ ├── social-distance-6-feet.glif │ │ │ │ ├── sofa-outline.glif │ │ │ │ ├── sofa-single-outline.glif │ │ │ │ ├── sofa-single.glif │ │ │ │ ├── sofa.glif │ │ │ │ ├── solar-panel-large.glif │ │ │ │ ├── solar-panel.glif │ │ │ │ ├── solar-power-variant-outline.glif │ │ │ │ ├── solar-power-variant.glif │ │ │ │ ├── solar-power.glif │ │ │ │ ├── soldering-iron.glif │ │ │ │ ├── solid.glif │ │ │ │ ├── sony-playstation.glif │ │ │ │ ├── sort-alphabetical-ascending-variant.glif │ │ │ │ ├── sort-alphabetical-ascending.glif │ │ │ │ ├── sort-alphabetical-descending-variant.glif │ │ │ │ ├── sort-alphabetical-descending.glif │ │ │ │ ├── sort-alphabetical-variant.glif │ │ │ │ ├── sort-ascending.glif │ │ │ │ ├── sort-bool-ascending-variant.glif │ │ │ │ ├── sort-bool-ascending.glif │ │ │ │ ├── sort-bool-descending-variant.glif │ │ │ │ ├── sort-bool-descending.glif │ │ │ │ ├── sort-calendar-ascending.glif │ │ │ │ ├── sort-calendar-descending.glif │ │ │ │ ├── sort-clock-ascending-outline.glif │ │ │ │ ├── sort-clock-ascending.glif │ │ │ │ ├── sort-clock-descending-outline.glif │ │ │ │ ├── sort-clock-descending.glif │ │ │ │ ├── sort-descending.glif │ │ │ │ ├── sort-numeric-ascending-variant.glif │ │ │ │ ├── sort-numeric-ascending.glif │ │ │ │ ├── sort-numeric-descending-variant.glif │ │ │ │ ├── sort-numeric-descending.glif │ │ │ │ ├── sort-numeric-variant.glif │ │ │ │ ├── sort-reverse-variant.glif │ │ │ │ ├── sort-variant-lock-open.glif │ │ │ │ ├── sort-variant-lock.glif │ │ │ │ ├── sort-variant-off.glif │ │ │ │ ├── sort-variant-remove.glif │ │ │ │ ├── sort-variant.glif │ │ │ │ ├── sort.glif │ │ │ │ ├── soundbar.glif │ │ │ │ ├── soundcloud.glif │ │ │ │ ├── source-branch-check.glif │ │ │ │ ├── source-branch-minus.glif │ │ │ │ ├── source-branch-plus.glif │ │ │ │ ├── source-branch-refresh.glif │ │ │ │ ├── source-branch-remove.glif │ │ │ │ ├── source-branch-sync.glif │ │ │ │ ├── source-branch.glif │ │ │ │ ├── source-commit-end-local.glif │ │ │ │ ├── source-commit-end.glif │ │ │ │ ├── source-commit-local.glif │ │ │ │ ├── source-commit-next-local.glif │ │ │ │ ├── source-commit-start-next-local.glif │ │ │ │ ├── source-commit-start.glif │ │ │ │ ├── source-commit.glif │ │ │ │ ├── source-fork.glif │ │ │ │ ├── source-merge.glif │ │ │ │ ├── source-pull.glif │ │ │ │ ├── source-repository-multiple.glif │ │ │ │ ├── source-repository.glif │ │ │ │ ├── soy-sauce-off.glif │ │ │ │ ├── soy-sauce.glif │ │ │ │ ├── spa-outline.glif │ │ │ │ ├── spa.glif │ │ │ │ ├── space-invaders.glif │ │ │ │ ├── space-station.glif │ │ │ │ ├── spade.glif │ │ │ │ ├── speaker-bluetooth.glif │ │ │ │ ├── speaker-multiple.glif │ │ │ │ ├── speaker-off.glif │ │ │ │ ├── speaker-wireless.glif │ │ │ │ ├── speaker.glif │ │ │ │ ├── spear.glif │ │ │ │ ├── speedometer-medium.glif │ │ │ │ ├── speedometer-slow.glif │ │ │ │ ├── speedometer.glif │ │ │ │ ├── spellcheck.glif │ │ │ │ ├── sphere-off.glif │ │ │ │ ├── sphere.glif │ │ │ │ ├── spider-thread.glif │ │ │ │ ├── spider-web.glif │ │ │ │ ├── spider.glif │ │ │ │ ├── spirit-level.glif │ │ │ │ ├── spoon-sugar.glif │ │ │ │ ├── spotify.glif │ │ │ │ ├── spotlight-beam.glif │ │ │ │ ├── spotlight.glif │ │ │ │ ├── spray-bottle.glif │ │ │ │ ├── spray.glif │ │ │ │ ├── sprinkler-fire.glif │ │ │ │ ├── sprinkler-variant.glif │ │ │ │ ├── sprinkler.glif │ │ │ │ ├── sprout-outline.glif │ │ │ │ ├── sprout.glif │ │ │ │ ├── square-circle.glif │ │ │ │ ├── square-edit-outline.glif │ │ │ │ ├── square-medium-outline.glif │ │ │ │ ├── square-medium.glif │ │ │ │ ├── square-off-outline.glif │ │ │ │ ├── square-off.glif │ │ │ │ ├── square-opacity.glif │ │ │ │ ├── square-outline.glif │ │ │ │ ├── square-root-box.glif │ │ │ │ ├── square-root.glif │ │ │ │ ├── square-rounded-badge-outline.glif │ │ │ │ ├── square-rounded-badge.glif │ │ │ │ ├── square-rounded-outline.glif │ │ │ │ ├── square-rounded.glif │ │ │ │ ├── square-small.glif │ │ │ │ ├── square-wave.glif │ │ │ │ ├── square.glif │ │ │ │ ├── squeegee.glif │ │ │ │ ├── ssh.glif │ │ │ │ ├── stack-exchange.glif │ │ │ │ ├── stack-overflow.glif │ │ │ │ ├── stackpath.glif │ │ │ │ ├── stadium-variant.glif │ │ │ │ ├── stadium.glif │ │ │ │ ├── stairs-box.glif │ │ │ │ ├── stairs-down.glif │ │ │ │ ├── stairs-up.glif │ │ │ │ ├── stairs.glif │ │ │ │ ├── stamper.glif │ │ │ │ ├── standard-definition.glif │ │ │ │ ├── star-box-multiple-outline.glif │ │ │ │ ├── star-box-multiple.glif │ │ │ │ ├── star-box-outline.glif │ │ │ │ ├── star-box.glif │ │ │ │ ├── star-check-outline.glif │ │ │ │ ├── star-check.glif │ │ │ │ ├── star-circle-outline.glif │ │ │ │ ├── star-circle.glif │ │ │ │ ├── star-cog-outline.glif │ │ │ │ ├── star-cog.glif │ │ │ │ ├── star-crescent.glif │ │ │ │ ├── star-david.glif │ │ │ │ ├── star-face.glif │ │ │ │ ├── star-four-points-outline.glif │ │ │ │ ├── star-four-points.glif │ │ │ │ ├── star-half-full.glif │ │ │ │ ├── star-half.glif │ │ │ │ ├── star-minus-outline.glif │ │ │ │ ├── star-minus.glif │ │ │ │ ├── star-off-outline.glif │ │ │ │ ├── star-off.glif │ │ │ │ ├── star-outline.glif │ │ │ │ ├── star-plus-outline.glif │ │ │ │ ├── star-plus.glif │ │ │ │ ├── star-remove-outline.glif │ │ │ │ ├── star-remove.glif │ │ │ │ ├── star-settings-outline.glif │ │ │ │ ├── star-settings.glif │ │ │ │ ├── star-shooting-outline.glif │ │ │ │ ├── star-shooting.glif │ │ │ │ ├── star-three-points-outline.glif │ │ │ │ ├── star-three-points.glif │ │ │ │ ├── star.glif │ │ │ │ ├── state-machine.glif │ │ │ │ ├── steam.glif │ │ │ │ ├── steering-off.glif │ │ │ │ ├── steering.glif │ │ │ │ ├── step-backward-2.glif │ │ │ │ ├── step-backward.glif │ │ │ │ ├── step-forward-2.glif │ │ │ │ ├── step-forward.glif │ │ │ │ ├── stethoscope.glif │ │ │ │ ├── sticker-alert-outline.glif │ │ │ │ ├── sticker-alert.glif │ │ │ │ ├── sticker-check-outline.glif │ │ │ │ ├── sticker-check.glif │ │ │ │ ├── sticker-circle-outline.glif │ │ │ │ ├── sticker-emoji.glif │ │ │ │ ├── sticker-minus-outline.glif │ │ │ │ ├── sticker-minus.glif │ │ │ │ ├── sticker-outline.glif │ │ │ │ ├── sticker-plus-outline.glif │ │ │ │ ├── sticker-plus.glif │ │ │ │ ├── sticker-remove-outline.glif │ │ │ │ ├── sticker-remove.glif │ │ │ │ ├── sticker-text-outline.glif │ │ │ │ ├── sticker-text.glif │ │ │ │ ├── sticker.glif │ │ │ │ ├── stocking.glif │ │ │ │ ├── stomach.glif │ │ │ │ ├── stool-outline.glif │ │ │ │ ├── stool.glif │ │ │ │ ├── stop-circle-outline.glif │ │ │ │ ├── stop-circle.glif │ │ │ │ ├── stop.glif │ │ │ │ ├── storage-tank-outline.glif │ │ │ │ ├── storage-tank.glif │ │ │ │ ├── store-24-hour.glif │ │ │ │ ├── store-alert-outline.glif │ │ │ │ ├── store-alert.glif │ │ │ │ ├── store-check-outline.glif │ │ │ │ ├── store-check.glif │ │ │ │ ├── store-clock-outline.glif │ │ │ │ ├── store-clock.glif │ │ │ │ ├── store-cog-outline.glif │ │ │ │ ├── store-cog.glif │ │ │ │ ├── store-edit-outline.glif │ │ │ │ ├── store-edit.glif │ │ │ │ ├── store-marker-outline.glif │ │ │ │ ├── store-marker.glif │ │ │ │ ├── store-minus-outline.glif │ │ │ │ ├── store-minus.glif │ │ │ │ ├── store-off-outline.glif │ │ │ │ ├── store-off.glif │ │ │ │ ├── store-outline.glif │ │ │ │ ├── store-plus-outline.glif │ │ │ │ ├── store-plus.glif │ │ │ │ ├── store-remove-outline.glif │ │ │ │ ├── store-remove.glif │ │ │ │ ├── store-search-outline.glif │ │ │ │ ├── store-search.glif │ │ │ │ ├── store-settings-outline.glif │ │ │ │ ├── store-settings.glif │ │ │ │ ├── store.glif │ │ │ │ ├── storefront-outline.glif │ │ │ │ ├── storefront.glif │ │ │ │ ├── stove.glif │ │ │ │ ├── strategy.glif │ │ │ │ ├── stretch-to-page-outline.glif │ │ │ │ ├── stretch-to-page.glif │ │ │ │ ├── string-lights-off.glif │ │ │ │ ├── string-lights.glif │ │ │ │ ├── subdirectory-arrow-left.glif │ │ │ │ ├── subdirectory-arrow-right.glif │ │ │ │ ├── submarine.glif │ │ │ │ ├── subtitles-outline.glif │ │ │ │ ├── subtitles.glif │ │ │ │ ├── subway-alert-variant.glif │ │ │ │ ├── subway-variant.glif │ │ │ │ ├── subway.glif │ │ │ │ ├── summit.glif │ │ │ │ ├── sun-clock-outline.glif │ │ │ │ ├── sun-clock.glif │ │ │ │ ├── sun-compass.glif │ │ │ │ ├── sun-snowflake-variant.glif │ │ │ │ ├── sun-snowflake.glif │ │ │ │ ├── sun-thermometer-outline.glif │ │ │ │ ├── sun-thermometer.glif │ │ │ │ ├── sun-wireless-outline.glif │ │ │ │ ├── sun-wireless.glif │ │ │ │ ├── sunglasses.glif │ │ │ │ ├── surfing.glif │ │ │ │ ├── surround-sound-2-0.glif │ │ │ │ ├── surround-sound-2-1.glif │ │ │ │ ├── surround-sound-3-1.glif │ │ │ │ ├── surround-sound-5-1-2.glif │ │ │ │ ├── surround-sound-5-1.glif │ │ │ │ ├── surround-sound-7-1.glif │ │ │ │ ├── surround-sound.glif │ │ │ │ ├── svg.glif │ │ │ │ ├── swap-horizontal-bold.glif │ │ │ │ ├── swap-horizontal-circle-outline.glif │ │ │ │ ├── swap-horizontal-circle.glif │ │ │ │ ├── swap-horizontal-variant.glif │ │ │ │ ├── swap-horizontal.glif │ │ │ │ ├── swap-vertical-bold.glif │ │ │ │ ├── swap-vertical-circle-outline.glif │ │ │ │ ├── swap-vertical-circle.glif │ │ │ │ ├── swap-vertical-variant.glif │ │ │ │ ├── swap-vertical.glif │ │ │ │ ├── swim.glif │ │ │ │ ├── switch.glif │ │ │ │ ├── sword-cross.glif │ │ │ │ ├── sword.glif │ │ │ │ ├── syllabary-hangul.glif │ │ │ │ ├── syllabary-hiragana.glif │ │ │ │ ├── syllabary-katakana-halfwidth.glif │ │ │ │ ├── syllabary-katakana.glif │ │ │ │ ├── symbol.glif │ │ │ │ ├── symfony.glif │ │ │ │ ├── sync-alert.glif │ │ │ │ ├── sync-circle.glif │ │ │ │ ├── sync-off.glif │ │ │ │ ├── sync.glif │ │ │ │ ├── tab-minus.glif │ │ │ │ ├── tab-plus.glif │ │ │ │ ├── tab-remove.glif │ │ │ │ ├── tab-search.glif │ │ │ │ ├── tab-unselected.glif │ │ │ │ ├── tab.glif │ │ │ │ ├── table-account.glif │ │ │ │ ├── table-alert.glif │ │ │ │ ├── table-arrow-down.glif │ │ │ │ ├── table-arrow-left.glif │ │ │ │ ├── table-arrow-right.glif │ │ │ │ ├── table-arrow-up.glif │ │ │ │ ├── table-border.glif │ │ │ │ ├── table-cancel.glif │ │ │ │ ├── table-chair.glif │ │ │ │ ├── table-check.glif │ │ │ │ ├── table-clock.glif │ │ │ │ ├── table-cog.glif │ │ │ │ ├── table-column-plus-after.glif │ │ │ │ ├── table-column-plus-before.glif │ │ │ │ ├── table-column-remove.glif │ │ │ │ ├── table-column-width.glif │ │ │ │ ├── table-column.glif │ │ │ │ ├── table-edit.glif │ │ │ │ ├── table-eye-off.glif │ │ │ │ ├── table-eye.glif │ │ │ │ ├── table-furniture.glif │ │ │ │ ├── table-headers-eye-off.glif │ │ │ │ ├── table-headers-eye.glif │ │ │ │ ├── table-heart.glif │ │ │ │ ├── table-key.glif │ │ │ │ ├── table-large-plus.glif │ │ │ │ ├── table-large-remove.glif │ │ │ │ ├── table-large.glif │ │ │ │ ├── table-lock.glif │ │ │ │ ├── table-merge-cells.glif │ │ │ │ ├── table-minus.glif │ │ │ │ ├── table-multiple.glif │ │ │ │ ├── table-network.glif │ │ │ │ ├── table-of-contents.glif │ │ │ │ ├── table-off.glif │ │ │ │ ├── table-picnic.glif │ │ │ │ ├── table-pivot.glif │ │ │ │ ├── table-plus.glif │ │ │ │ ├── table-refresh.glif │ │ │ │ ├── table-remove.glif │ │ │ │ ├── table-row-height.glif │ │ │ │ ├── table-row-plus-after.glif │ │ │ │ ├── table-row-plus-before.glif │ │ │ │ ├── table-row-remove.glif │ │ │ │ ├── table-row.glif │ │ │ │ ├── table-search.glif │ │ │ │ ├── table-settings.glif │ │ │ │ ├── table-split-cell.glif │ │ │ │ ├── table-star.glif │ │ │ │ ├── table-sync.glif │ │ │ │ ├── table-tennis.glif │ │ │ │ ├── table.glif │ │ │ │ ├── tablet-android.glif │ │ │ │ ├── tablet-cellphone.glif │ │ │ │ ├── tablet-dashboard.glif │ │ │ │ ├── tablet.glif │ │ │ │ ├── taco.glif │ │ │ │ ├── tag-arrow-down-outline.glif │ │ │ │ ├── tag-arrow-down.glif │ │ │ │ ├── tag-arrow-left-outline.glif │ │ │ │ ├── tag-arrow-left.glif │ │ │ │ ├── tag-arrow-right-outline.glif │ │ │ │ ├── tag-arrow-right.glif │ │ │ │ ├── tag-arrow-up-outline.glif │ │ │ │ ├── tag-arrow-up.glif │ │ │ │ ├── tag-check-outline.glif │ │ │ │ ├── tag-check.glif │ │ │ │ ├── tag-faces.glif │ │ │ │ ├── tag-heart-outline.glif │ │ │ │ ├── tag-heart.glif │ │ │ │ ├── tag-minus-outline.glif │ │ │ │ ├── tag-minus.glif │ │ │ │ ├── tag-multiple-outline.glif │ │ │ │ ├── tag-multiple.glif │ │ │ │ ├── tag-off-outline.glif │ │ │ │ ├── tag-off.glif │ │ │ │ ├── tag-outline.glif │ │ │ │ ├── tag-plus-outline.glif │ │ │ │ ├── tag-plus.glif │ │ │ │ ├── tag-remove-outline.glif │ │ │ │ ├── tag-remove.glif │ │ │ │ ├── tag-search-outline.glif │ │ │ │ ├── tag-search.glif │ │ │ │ ├── tag-text-outline.glif │ │ │ │ ├── tag-text.glif │ │ │ │ ├── tag.glif │ │ │ │ ├── tailwind.glif │ │ │ │ ├── tally-mark-1.glif │ │ │ │ ├── tally-mark-2.glif │ │ │ │ ├── tally-mark-3.glif │ │ │ │ ├── tally-mark-4.glif │ │ │ │ ├── tally-mark-5.glif │ │ │ │ ├── tangram.glif │ │ │ │ ├── tank.glif │ │ │ │ ├── tanker-truck.glif │ │ │ │ ├── tape-drive.glif │ │ │ │ ├── tape-measure.glif │ │ │ │ ├── target-account.glif │ │ │ │ ├── target-variant.glif │ │ │ │ ├── target.glif │ │ │ │ ├── taxi.glif │ │ │ │ ├── tea-outline.glif │ │ │ │ ├── tea.glif │ │ │ │ ├── teamviewer.glif │ │ │ │ ├── teddy-bear.glif │ │ │ │ ├── telescope.glif │ │ │ │ ├── television-ambient-light.glif │ │ │ │ ├── television-box.glif │ │ │ │ ├── television-classic-off.glif │ │ │ │ ├── television-classic.glif │ │ │ │ ├── television-guide.glif │ │ │ │ ├── television-off.glif │ │ │ │ ├── television-pause.glif │ │ │ │ ├── television-play.glif │ │ │ │ ├── television-shimmer.glif │ │ │ │ ├── television-stop.glif │ │ │ │ ├── television.glif │ │ │ │ ├── temperature-celsius.glif │ │ │ │ ├── temperature-fahrenheit.glif │ │ │ │ ├── temperature-kelvin.glif │ │ │ │ ├── tennis-ball.glif │ │ │ │ ├── tennis.glif │ │ │ │ ├── tent.glif │ │ │ │ ├── terraform.glif │ │ │ │ ├── test-tube-empty.glif │ │ │ │ ├── test-tube-off.glif │ │ │ │ ├── test-tube.glif │ │ │ │ ├── text-account.glif │ │ │ │ ├── text-box-check-outline.glif │ │ │ │ ├── text-box-check.glif │ │ │ │ ├── text-box-edit-outline.glif │ │ │ │ ├── text-box-edit.glif │ │ │ │ ├── text-box-minus-outline.glif │ │ │ │ ├── text-box-minus.glif │ │ │ │ ├── text-box-multiple-outline.glif │ │ │ │ ├── text-box-multiple.glif │ │ │ │ ├── text-box-outline.glif │ │ │ │ ├── text-box-plus-outline.glif │ │ │ │ ├── text-box-plus.glif │ │ │ │ ├── text-box-remove-outline.glif │ │ │ │ ├── text-box-remove.glif │ │ │ │ ├── text-box-search-outline.glif │ │ │ │ ├── text-box-search.glif │ │ │ │ ├── text-box.glif │ │ │ │ ├── text-long.glif │ │ │ │ ├── text-recognition.glif │ │ │ │ ├── text-search-variant.glif │ │ │ │ ├── text-search.glif │ │ │ │ ├── text-shadow.glif │ │ │ │ ├── text-short.glif │ │ │ │ ├── text-to-speech-off.glif │ │ │ │ ├── text-to-speech.glif │ │ │ │ ├── text.glif │ │ │ │ ├── texture-box.glif │ │ │ │ ├── texture.glif │ │ │ │ ├── theater.glif │ │ │ │ ├── theme-light-dark.glif │ │ │ │ ├── thermometer-alert.glif │ │ │ │ ├── thermometer-bluetooth.glif │ │ │ │ ├── thermometer-check.glif │ │ │ │ ├── thermometer-chevron-down.glif │ │ │ │ ├── thermometer-chevron-up.glif │ │ │ │ ├── thermometer-high.glif │ │ │ │ ├── thermometer-lines.glif │ │ │ │ ├── thermometer-low.glif │ │ │ │ ├── thermometer-minus.glif │ │ │ │ ├── thermometer-off.glif │ │ │ │ ├── thermometer-plus.glif │ │ │ │ ├── thermometer-water.glif │ │ │ │ ├── thermometer.glif │ │ │ │ ├── thermostat-box.glif │ │ │ │ ├── thermostat.glif │ │ │ │ ├── thought-bubble-outline.glif │ │ │ │ ├── thought-bubble.glif │ │ │ │ ├── thumb-down-outline.glif │ │ │ │ ├── thumb-down.glif │ │ │ │ ├── thumb-up-outline.glif │ │ │ │ ├── thumb-up.glif │ │ │ │ ├── thumbs-up-down-outline.glif │ │ │ │ ├── thumbs-up-down.glif │ │ │ │ ├── ticket-account.glif │ │ │ │ ├── ticket-confirmation-outline.glif │ │ │ │ ├── ticket-confirmation.glif │ │ │ │ ├── ticket-outline.glif │ │ │ │ ├── ticket-percent-outline.glif │ │ │ │ ├── ticket-percent.glif │ │ │ │ ├── ticket.glif │ │ │ │ ├── tie.glif │ │ │ │ ├── tilde-off.glif │ │ │ │ ├── tilde.glif │ │ │ │ ├── timelapse.glif │ │ │ │ ├── timeline-alert-outline.glif │ │ │ │ ├── timeline-alert.glif │ │ │ │ ├── timeline-check-outline.glif │ │ │ │ ├── timeline-check.glif │ │ │ │ ├── timeline-clock-outline.glif │ │ │ │ ├── timeline-clock.glif │ │ │ │ ├── timeline-help-outline.glif │ │ │ │ ├── timeline-help.glif │ │ │ │ ├── timeline-minus-outline.glif │ │ │ │ ├── timeline-minus.glif │ │ │ │ ├── timeline-outline.glif │ │ │ │ ├── timeline-plus-outline.glif │ │ │ │ ├── timeline-plus.glif │ │ │ │ ├── timeline-remove-outline.glif │ │ │ │ ├── timeline-remove.glif │ │ │ │ ├── timeline-text-outline.glif │ │ │ │ ├── timeline-text.glif │ │ │ │ ├── timeline.glif │ │ │ │ ├── timer-10.glif │ │ │ │ ├── timer-3.glif │ │ │ │ ├── timer-alert-outline.glif │ │ │ │ ├── timer-alert.glif │ │ │ │ ├── timer-cancel-outline.glif │ │ │ │ ├── timer-cancel.glif │ │ │ │ ├── timer-check-outline.glif │ │ │ │ ├── timer-check.glif │ │ │ │ ├── timer-cog-outline.glif │ │ │ │ ├── timer-cog.glif │ │ │ │ ├── timer-edit-outline.glif │ │ │ │ ├── timer-edit.glif │ │ │ │ ├── timer-lock-open-outline.glif │ │ │ │ ├── timer-lock-open.glif │ │ │ │ ├── timer-lock-outline.glif │ │ │ │ ├── timer-lock.glif │ │ │ │ ├── timer-marker-outline.glif │ │ │ │ ├── timer-marker.glif │ │ │ │ ├── timer-minus-outline.glif │ │ │ │ ├── timer-minus.glif │ │ │ │ ├── timer-music-outline.glif │ │ │ │ ├── timer-music.glif │ │ │ │ ├── timer-off-outline.glif │ │ │ │ ├── timer-off.glif │ │ │ │ ├── timer-outline.glif │ │ │ │ ├── timer-pause-outline.glif │ │ │ │ ├── timer-pause.glif │ │ │ │ ├── timer-play-outline.glif │ │ │ │ ├── timer-play.glif │ │ │ │ ├── timer-plus-outline.glif │ │ │ │ ├── timer-plus.glif │ │ │ │ ├── timer-refresh-outline.glif │ │ │ │ ├── timer-refresh.glif │ │ │ │ ├── timer-remove-outline.glif │ │ │ │ ├── timer-remove.glif │ │ │ │ ├── timer-sand-complete.glif │ │ │ │ ├── timer-sand-empty.glif │ │ │ │ ├── timer-sand-full.glif │ │ │ │ ├── timer-sand-paused.glif │ │ │ │ ├── timer-sand.glif │ │ │ │ ├── timer-settings-outline.glif │ │ │ │ ├── timer-settings.glif │ │ │ │ ├── timer-star-outline.glif │ │ │ │ ├── timer-star.glif │ │ │ │ ├── timer-stop-outline.glif │ │ │ │ ├── timer-stop.glif │ │ │ │ ├── timer-sync-outline.glif │ │ │ │ ├── timer-sync.glif │ │ │ │ ├── timer.glif │ │ │ │ ├── timetable.glif │ │ │ │ ├── tire.glif │ │ │ │ ├── toaster-off.glif │ │ │ │ ├── toaster-oven.glif │ │ │ │ ├── toaster.glif │ │ │ │ ├── toggle-switch-off-outline.glif │ │ │ │ ├── toggle-switch-off.glif │ │ │ │ ├── toggle-switch-outline.glif │ │ │ │ ├── toggle-switch-variant-off.glif │ │ │ │ ├── toggle-switch-variant.glif │ │ │ │ ├── toggle-switch.glif │ │ │ │ ├── toilet.glif │ │ │ │ ├── toolbox-outline.glif │ │ │ │ ├── toolbox.glif │ │ │ │ ├── tools.glif │ │ │ │ ├── tooltip-account.glif │ │ │ │ ├── tooltip-cellphone.glif │ │ │ │ ├── tooltip-check-outline.glif │ │ │ │ ├── tooltip-check.glif │ │ │ │ ├── tooltip-edit-outline.glif │ │ │ │ ├── tooltip-edit.glif │ │ │ │ ├── tooltip-image-outline.glif │ │ │ │ ├── tooltip-image.glif │ │ │ │ ├── tooltip-minus-outline.glif │ │ │ │ ├── tooltip-minus.glif │ │ │ │ ├── tooltip-outline.glif │ │ │ │ ├── tooltip-plus-outline.glif │ │ │ │ ├── tooltip-plus.glif │ │ │ │ ├── tooltip-remove-outline.glif │ │ │ │ ├── tooltip-remove.glif │ │ │ │ ├── tooltip-text-outline.glif │ │ │ │ ├── tooltip-text.glif │ │ │ │ ├── tooltip.glif │ │ │ │ ├── tooth-outline.glif │ │ │ │ ├── tooth.glif │ │ │ │ ├── toothbrush-electric.glif │ │ │ │ ├── toothbrush-paste.glif │ │ │ │ ├── toothbrush.glif │ │ │ │ ├── torch.glif │ │ │ │ ├── tortoise.glif │ │ │ │ ├── toslink.glif │ │ │ │ ├── tournament.glif │ │ │ │ ├── tow-truck.glif │ │ │ │ ├── tower-beach.glif │ │ │ │ ├── tower-fire.glif │ │ │ │ ├── town-hall.glif │ │ │ │ ├── toy-brick-marker-outline.glif │ │ │ │ ├── toy-brick-marker.glif │ │ │ │ ├── toy-brick-minus-outline.glif │ │ │ │ ├── toy-brick-minus.glif │ │ │ │ ├── toy-brick-outline.glif │ │ │ │ ├── toy-brick-plus-outline.glif │ │ │ │ ├── toy-brick-plus.glif │ │ │ │ ├── toy-brick-remove-outline.glif │ │ │ │ ├── toy-brick-remove.glif │ │ │ │ ├── toy-brick-search-outline.glif │ │ │ │ ├── toy-brick-search.glif │ │ │ │ ├── toy-brick.glif │ │ │ │ ├── track-light.glif │ │ │ │ ├── trackpad-lock.glif │ │ │ │ ├── trackpad.glif │ │ │ │ ├── tractor-variant.glif │ │ │ │ ├── tractor.glif │ │ │ │ ├── trademark.glif │ │ │ │ ├── traffic-cone.glif │ │ │ │ ├── traffic-light-outline.glif │ │ │ │ ├── traffic-light.glif │ │ │ │ ├── train-car-passenger-door-open.glif │ │ │ │ ├── train-car-passenger-door.glif │ │ │ │ ├── train-car-passenger-variant.glif │ │ │ │ ├── train-car-passenger.glif │ │ │ │ ├── train-car.glif │ │ │ │ ├── train-variant.glif │ │ │ │ ├── train.glif │ │ │ │ ├── tram-side.glif │ │ │ │ ├── tram.glif │ │ │ │ ├── transcribe-close.glif │ │ │ │ ├── transcribe.glif │ │ │ │ ├── transfer-down.glif │ │ │ │ ├── transfer-left.glif │ │ │ │ ├── transfer-right.glif │ │ │ │ ├── transfer-up.glif │ │ │ │ ├── transfer.glif │ │ │ │ ├── transit-connection-horizontal.glif │ │ │ │ ├── transit-connection-variant.glif │ │ │ │ ├── transit-connection.glif │ │ │ │ ├── transit-detour.glif │ │ │ │ ├── transit-skip.glif │ │ │ │ ├── transit-transfer.glif │ │ │ │ ├── transition-masked.glif │ │ │ │ ├── transition.glif │ │ │ │ ├── translate-off.glif │ │ │ │ ├── translate.glif │ │ │ │ ├── transmission-tower-export.glif │ │ │ │ ├── transmission-tower-import.glif │ │ │ │ ├── transmission-tower-off.glif │ │ │ │ ├── transmission-tower.glif │ │ │ │ ├── trash-can-outline.glif │ │ │ │ ├── trash-can.glif │ │ │ │ ├── tray-alert.glif │ │ │ │ ├── tray-arrow-down.glif │ │ │ │ ├── tray-arrow-up.glif │ │ │ │ ├── tray-full.glif │ │ │ │ ├── tray-minus.glif │ │ │ │ ├── tray-plus.glif │ │ │ │ ├── tray-remove.glif │ │ │ │ ├── tray.glif │ │ │ │ ├── treasure-chest.glif │ │ │ │ ├── tree-outline.glif │ │ │ │ ├── tree.glif │ │ │ │ ├── trello.glif │ │ │ │ ├── trending-down.glif │ │ │ │ ├── trending-neutral.glif │ │ │ │ ├── trending-up.glif │ │ │ │ ├── triangle-outline.glif │ │ │ │ ├── triangle-small-down.glif │ │ │ │ ├── triangle-small-up.glif │ │ │ │ ├── triangle-wave.glif │ │ │ │ ├── triangle.glif │ │ │ │ ├── triforce.glif │ │ │ │ ├── trophy-award.glif │ │ │ │ ├── trophy-broken.glif │ │ │ │ ├── trophy-outline.glif │ │ │ │ ├── trophy-variant-outline.glif │ │ │ │ ├── trophy-variant.glif │ │ │ │ ├── trophy.glif │ │ │ │ ├── truck-alert-outline.glif │ │ │ │ ├── truck-alert.glif │ │ │ │ ├── truck-cargo-container.glif │ │ │ │ ├── truck-check-outline.glif │ │ │ │ ├── truck-check.glif │ │ │ │ ├── truck-delivery-outline.glif │ │ │ │ ├── truck-delivery.glif │ │ │ │ ├── truck-fast-outline.glif │ │ │ │ ├── truck-fast.glif │ │ │ │ ├── truck-flatbed.glif │ │ │ │ ├── truck-minus-outline.glif │ │ │ │ ├── truck-minus.glif │ │ │ │ ├── truck-outline.glif │ │ │ │ ├── truck-plus-outline.glif │ │ │ │ ├── truck-plus.glif │ │ │ │ ├── truck-remove-outline.glif │ │ │ │ ├── truck-remove.glif │ │ │ │ ├── truck-snowflake.glif │ │ │ │ ├── truck-trailer.glif │ │ │ │ ├── truck.glif │ │ │ │ ├── trumpet.glif │ │ │ │ ├── tshirt-crew-outline.glif │ │ │ │ ├── tshirt-crew.glif │ │ │ │ ├── tshirt-v-outline.glif │ │ │ │ ├── tshirt-v.glif │ │ │ │ ├── tsunami.glif │ │ │ │ ├── tumble-dryer-alert.glif │ │ │ │ ├── tumble-dryer-off.glif │ │ │ │ ├── tumble-dryer.glif │ │ │ │ ├── tune-variant.glif │ │ │ │ ├── tune-vertical-variant.glif │ │ │ │ ├── tune-vertical.glif │ │ │ │ ├── tune.glif │ │ │ │ ├── tunnel-outline.glif │ │ │ │ ├── tunnel.glif │ │ │ │ ├── turbine.glif │ │ │ │ ├── turkey.glif │ │ │ │ ├── turnstile-outline.glif │ │ │ │ ├── turnstile.glif │ │ │ │ ├── turtle.glif │ │ │ │ ├── twitch.glif │ │ │ │ ├── twitter.glif │ │ │ │ ├── two-factor-authentication.glif │ │ │ │ ├── typewriter.glif │ │ │ │ ├── ubisoft.glif │ │ │ │ ├── ubuntu.glif │ │ │ │ ├── ufo-outline.glif │ │ │ │ ├── ufo.glif │ │ │ │ ├── ultra-high-definition.glif │ │ │ │ ├── umbraco.glif │ │ │ │ ├── umbrella-beach-outline.glif │ │ │ │ ├── umbrella-beach.glif │ │ │ │ ├── umbrella-closed-outline.glif │ │ │ │ ├── umbrella-closed-variant.glif │ │ │ │ ├── umbrella-closed.glif │ │ │ │ ├── umbrella-outline.glif │ │ │ │ ├── umbrella.glif │ │ │ │ ├── undo-variant.glif │ │ │ │ ├── undo.glif │ │ │ │ ├── unfold-less-horizontal.glif │ │ │ │ ├── unfold-less-vertical.glif │ │ │ │ ├── unfold-more-horizontal.glif │ │ │ │ ├── unfold-more-vertical.glif │ │ │ │ ├── ungroup.glif │ │ │ │ ├── unicode.glif │ │ │ │ ├── unicorn-variant.glif │ │ │ │ ├── unicorn.glif │ │ │ │ ├── unicycle.glif │ │ │ │ ├── unity.glif │ │ │ │ ├── unreal.glif │ │ │ │ ├── update.glif │ │ │ │ ├── upload-lock-outline.glif │ │ │ │ ├── upload-lock.glif │ │ │ │ ├── upload-multiple.glif │ │ │ │ ├── upload-network-outline.glif │ │ │ │ ├── upload-network.glif │ │ │ │ ├── upload-off-outline.glif │ │ │ │ ├── upload-off.glif │ │ │ │ ├── upload-outline.glif │ │ │ │ ├── upload.glif │ │ │ │ ├── usb-flash-drive-outline.glif │ │ │ │ ├── usb-flash-drive.glif │ │ │ │ ├── usb-port.glif │ │ │ │ ├── usb.glif │ │ │ │ ├── vacuum-outline.glif │ │ │ │ ├── vacuum.glif │ │ │ │ ├── valve-closed.glif │ │ │ │ ├── valve-open.glif │ │ │ │ ├── valve.glif │ │ │ │ ├── van-passenger.glif │ │ │ │ ├── van-utility.glif │ │ │ │ ├── vanish-quarter.glif │ │ │ │ ├── vanish.glif │ │ │ │ ├── vanity-light.glif │ │ │ │ ├── variable-box.glif │ │ │ │ ├── variable.glif │ │ │ │ ├── vector-arrange-above.glif │ │ │ │ ├── vector-arrange-below.glif │ │ │ │ ├── vector-bezier.glif │ │ │ │ ├── vector-circle-variant.glif │ │ │ │ ├── vector-circle.glif │ │ │ │ ├── vector-combine.glif │ │ │ │ ├── vector-curve.glif │ │ │ │ ├── vector-difference-ab.glif │ │ │ │ ├── vector-difference-ba.glif │ │ │ │ ├── vector-difference.glif │ │ │ │ ├── vector-ellipse.glif │ │ │ │ ├── vector-intersection.glif │ │ │ │ ├── vector-line.glif │ │ │ │ ├── vector-link.glif │ │ │ │ ├── vector-point.glif │ │ │ │ ├── vector-polygon-variant.glif │ │ │ │ ├── vector-polygon.glif │ │ │ │ ├── vector-polyline-edit.glif │ │ │ │ ├── vector-polyline-minus.glif │ │ │ │ ├── vector-polyline-plus.glif │ │ │ │ ├── vector-polyline-remove.glif │ │ │ │ ├── vector-polyline.glif │ │ │ │ ├── vector-radius.glif │ │ │ │ ├── vector-rectangle.glif │ │ │ │ ├── vector-selection.glif │ │ │ │ ├── vector-square-close.glif │ │ │ │ ├── vector-square-edit.glif │ │ │ │ ├── vector-square-minus.glif │ │ │ │ ├── vector-square-open.glif │ │ │ │ ├── vector-square-plus.glif │ │ │ │ ├── vector-square-remove.glif │ │ │ │ ├── vector-square.glif │ │ │ │ ├── vector-triangle.glif │ │ │ │ ├── vector-union.glif │ │ │ │ ├── vhs.glif │ │ │ │ ├── vibrate-off.glif │ │ │ │ ├── vibrate.glif │ │ │ │ ├── video-2d.glif │ │ │ │ ├── video-3d-off.glif │ │ │ │ ├── video-3d-variant.glif │ │ │ │ ├── video-3d.glif │ │ │ │ ├── video-4k-box.glif │ │ │ │ ├── video-account.glif │ │ │ │ ├── video-box-off.glif │ │ │ │ ├── video-box.glif │ │ │ │ ├── video-check-outline.glif │ │ │ │ ├── video-check.glif │ │ │ │ ├── video-high-definition.glif │ │ │ │ ├── video-image.glif │ │ │ │ ├── video-input-antenna.glif │ │ │ │ ├── video-input-component.glif │ │ │ │ ├── video-input-hdmi.glif │ │ │ │ ├── video-input-scart.glif │ │ │ │ ├── video-input-svideo.glif │ │ │ │ ├── video-marker-outline.glif │ │ │ │ ├── video-marker.glif │ │ │ │ ├── video-minus-outline.glif │ │ │ │ ├── video-minus.glif │ │ │ │ ├── video-off-outline.glif │ │ │ │ ├── video-off.glif │ │ │ │ ├── video-outline.glif │ │ │ │ ├── video-plus-outline.glif │ │ │ │ ├── video-plus.glif │ │ │ │ ├── video-stabilization.glif │ │ │ │ ├── video-switch-outline.glif │ │ │ │ ├── video-switch.glif │ │ │ │ ├── video-vintage.glif │ │ │ │ ├── video-wireless-outline.glif │ │ │ │ ├── video-wireless.glif │ │ │ │ ├── video.glif │ │ │ │ ├── view-agenda-outline.glif │ │ │ │ ├── view-agenda.glif │ │ │ │ ├── view-array-outline.glif │ │ │ │ ├── view-array.glif │ │ │ │ ├── view-carousel-outline.glif │ │ │ │ ├── view-carousel.glif │ │ │ │ ├── view-column-outline.glif │ │ │ │ ├── view-column.glif │ │ │ │ ├── view-comfy-outline.glif │ │ │ │ ├── view-comfy.glif │ │ │ │ ├── view-compact-outline.glif │ │ │ │ ├── view-compact.glif │ │ │ │ ├── view-dashboard-edit-outline.glif │ │ │ │ ├── view-dashboard-edit.glif │ │ │ │ ├── view-dashboard-outline.glif │ │ │ │ ├── view-dashboard-variant-outline.glif │ │ │ │ ├── view-dashboard-variant.glif │ │ │ │ ├── view-dashboard.glif │ │ │ │ ├── view-day-outline.glif │ │ │ │ ├── view-day.glif │ │ │ │ ├── view-gallery-outline.glif │ │ │ │ ├── view-gallery.glif │ │ │ │ ├── view-grid-outline.glif │ │ │ │ ├── view-grid-plus-outline.glif │ │ │ │ ├── view-grid-plus.glif │ │ │ │ ├── view-grid.glif │ │ │ │ ├── view-headline.glif │ │ │ │ ├── view-list-outline.glif │ │ │ │ ├── view-list.glif │ │ │ │ ├── view-module-outline.glif │ │ │ │ ├── view-module.glif │ │ │ │ ├── view-parallel-outline.glif │ │ │ │ ├── view-parallel.glif │ │ │ │ ├── view-quilt-outline.glif │ │ │ │ ├── view-quilt.glif │ │ │ │ ├── view-sequential-outline.glif │ │ │ │ ├── view-sequential.glif │ │ │ │ ├── view-split-horizontal.glif │ │ │ │ ├── view-split-vertical.glif │ │ │ │ ├── view-stream-outline.glif │ │ │ │ ├── view-stream.glif │ │ │ │ ├── view-week-outline.glif │ │ │ │ ├── view-week.glif │ │ │ │ ├── vimeo.glif │ │ │ │ ├── violin.glif │ │ │ │ ├── virtual-reality.glif │ │ │ │ ├── virus-off-outline.glif │ │ │ │ ├── virus-off.glif │ │ │ │ ├── virus-outline.glif │ │ │ │ ├── virus.glif │ │ │ │ ├── vlc.glif │ │ │ │ ├── voicemail.glif │ │ │ │ ├── volcano-outline.glif │ │ │ │ ├── volcano.glif │ │ │ │ ├── volleyball.glif │ │ │ │ ├── volume-high.glif │ │ │ │ ├── volume-low.glif │ │ │ │ ├── volume-medium.glif │ │ │ │ ├── volume-minus.glif │ │ │ │ ├── volume-mute.glif │ │ │ │ ├── volume-off.glif │ │ │ │ ├── volume-plus.glif │ │ │ │ ├── volume-source.glif │ │ │ │ ├── volume-variant-off.glif │ │ │ │ ├── volume-vibrate.glif │ │ │ │ ├── vote-outline.glif │ │ │ │ ├── vote.glif │ │ │ │ ├── vpn.glif │ │ │ │ ├── vuejs.glif │ │ │ │ ├── vuetify.glif │ │ │ │ ├── walk.glif │ │ │ │ ├── wall-fire.glif │ │ │ │ ├── wall-sconce-flat-outline.glif │ │ │ │ ├── wall-sconce-flat-variant-outline.glif │ │ │ │ ├── wall-sconce-flat-variant.glif │ │ │ │ ├── wall-sconce-flat.glif │ │ │ │ ├── wall-sconce-outline.glif │ │ │ │ ├── wall-sconce-round-outline.glif │ │ │ │ ├── wall-sconce-round-variant-outline.glif │ │ │ │ ├── wall-sconce-round-variant.glif │ │ │ │ ├── wall-sconce-round.glif │ │ │ │ ├── wall-sconce.glif │ │ │ │ ├── wall.glif │ │ │ │ ├── wallet-giftcard.glif │ │ │ │ ├── wallet-membership.glif │ │ │ │ ├── wallet-outline.glif │ │ │ │ ├── wallet-plus-outline.glif │ │ │ │ ├── wallet-plus.glif │ │ │ │ ├── wallet-travel.glif │ │ │ │ ├── wallet.glif │ │ │ │ ├── wallpaper.glif │ │ │ │ ├── wan.glif │ │ │ │ ├── wardrobe-outline.glif │ │ │ │ ├── wardrobe.glif │ │ │ │ ├── warehouse.glif │ │ │ │ ├── washing-machine-alert.glif │ │ │ │ ├── washing-machine-off.glif │ │ │ │ ├── washing-machine.glif │ │ │ │ ├── watch-export-variant.glif │ │ │ │ ├── watch-export.glif │ │ │ │ ├── watch-import-variant.glif │ │ │ │ ├── watch-import.glif │ │ │ │ ├── watch-variant.glif │ │ │ │ ├── watch-vibrate-off.glif │ │ │ │ ├── watch-vibrate.glif │ │ │ │ ├── watch.glif │ │ │ │ ├── water-alert-outline.glif │ │ │ │ ├── water-alert.glif │ │ │ │ ├── water-boiler-alert.glif │ │ │ │ ├── water-boiler-off.glif │ │ │ │ ├── water-boiler.glif │ │ │ │ ├── water-check-outline.glif │ │ │ │ ├── water-check.glif │ │ │ │ ├── water-circle.glif │ │ │ │ ├── water-minus-outline.glif │ │ │ │ ├── water-minus.glif │ │ │ │ ├── water-off-outline.glif │ │ │ │ ├── water-off.glif │ │ │ │ ├── water-opacity.glif │ │ │ │ ├── water-outline.glif │ │ │ │ ├── water-percent-alert.glif │ │ │ │ ├── water-percent.glif │ │ │ │ ├── water-plus-outline.glif │ │ │ │ ├── water-plus.glif │ │ │ │ ├── water-polo.glif │ │ │ │ ├── water-pump-off.glif │ │ │ │ ├── water-pump.glif │ │ │ │ ├── water-remove-outline.glif │ │ │ │ ├── water-remove.glif │ │ │ │ ├── water-sync.glif │ │ │ │ ├── water-thermometer-outline.glif │ │ │ │ ├── water-thermometer.glif │ │ │ │ ├── water-well-outline.glif │ │ │ │ ├── water-well.glif │ │ │ │ ├── water.glif │ │ │ │ ├── waterfall.glif │ │ │ │ ├── watering-can-outline.glif │ │ │ │ ├── watering-can.glif │ │ │ │ ├── watermark.glif │ │ │ │ ├── wave.glif │ │ │ │ ├── waveform.glif │ │ │ │ ├── waves-arrow-left.glif │ │ │ │ ├── waves-arrow-right.glif │ │ │ │ ├── waves-arrow-up.glif │ │ │ │ ├── waves.glif │ │ │ │ ├── waze.glif │ │ │ │ ├── weather-cloudy-alert.glif │ │ │ │ ├── weather-cloudy-arrow-right.glif │ │ │ │ ├── weather-cloudy-clock.glif │ │ │ │ ├── weather-cloudy.glif │ │ │ │ ├── weather-fog.glif │ │ │ │ ├── weather-hail.glif │ │ │ │ ├── weather-hazy.glif │ │ │ │ ├── weather-hurricane.glif │ │ │ │ ├── weather-lightning-rainy.glif │ │ │ │ ├── weather-lightning.glif │ │ │ │ ├── weather-night-partly-cloudy.glif │ │ │ │ ├── weather-night.glif │ │ │ │ ├── weather-partly-cloudy.glif │ │ │ │ ├── weather-partly-lightning.glif │ │ │ │ ├── weather-partly-rainy.glif │ │ │ │ ├── weather-partly-snowy-rainy.glif │ │ │ │ ├── weather-partly-snowy.glif │ │ │ │ ├── weather-pouring.glif │ │ │ │ ├── weather-rainy.glif │ │ │ │ ├── weather-snowy-heavy.glif │ │ │ │ ├── weather-snowy-rainy.glif │ │ │ │ ├── weather-snowy.glif │ │ │ │ ├── weather-sunny-alert.glif │ │ │ │ ├── weather-sunny-off.glif │ │ │ │ ├── weather-sunny.glif │ │ │ │ ├── weather-sunset-down.glif │ │ │ │ ├── weather-sunset-up.glif │ │ │ │ ├── weather-sunset.glif │ │ │ │ ├── weather-tornado.glif │ │ │ │ ├── weather-windy-variant.glif │ │ │ │ ├── weather-windy.glif │ │ │ │ ├── web-box.glif │ │ │ │ ├── web-cancel.glif │ │ │ │ ├── web-check.glif │ │ │ │ ├── web-clock.glif │ │ │ │ ├── web-minus.glif │ │ │ │ ├── web-off.glif │ │ │ │ ├── web-plus.glif │ │ │ │ ├── web-refresh.glif │ │ │ │ ├── web-remove.glif │ │ │ │ ├── web-sync.glif │ │ │ │ ├── web.glif │ │ │ │ ├── webcam-off.glif │ │ │ │ ├── webcam.glif │ │ │ │ ├── webhook.glif │ │ │ │ ├── webpack.glif │ │ │ │ ├── webrtc.glif │ │ │ │ ├── wechat.glif │ │ │ │ ├── weight-gram.glif │ │ │ │ ├── weight-kilogram.glif │ │ │ │ ├── weight-lifter.glif │ │ │ │ ├── weight-pound.glif │ │ │ │ ├── weight.glif │ │ │ │ ├── whatsapp.glif │ │ │ │ ├── wheel-barrow.glif │ │ │ │ ├── wheelchair-accessibility.glif │ │ │ │ ├── wheelchair.glif │ │ │ │ ├── whistle-outline.glif │ │ │ │ ├── whistle.glif │ │ │ │ ├── white-balance-auto.glif │ │ │ │ ├── white-balance-incandescent.glif │ │ │ │ ├── white-balance-iridescent.glif │ │ │ │ ├── white-balance-sunny.glif │ │ │ │ ├── widgets-outline.glif │ │ │ │ ├── widgets.glif │ │ │ │ ├── wifi-alert.glif │ │ │ │ ├── wifi-arrow-down.glif │ │ │ │ ├── wifi-arrow-left-right.glif │ │ │ │ ├── wifi-arrow-left.glif │ │ │ │ ├── wifi-arrow-right.glif │ │ │ │ ├── wifi-arrow-up-down.glif │ │ │ │ ├── wifi-arrow-up.glif │ │ │ │ ├── wifi-cancel.glif │ │ │ │ ├── wifi-check.glif │ │ │ │ ├── wifi-cog.glif │ │ │ │ ├── wifi-lock-open.glif │ │ │ │ ├── wifi-lock.glif │ │ │ │ ├── wifi-marker.glif │ │ │ │ ├── wifi-minus.glif │ │ │ │ ├── wifi-off.glif │ │ │ │ ├── wifi-plus.glif │ │ │ │ ├── wifi-refresh.glif │ │ │ │ ├── wifi-remove.glif │ │ │ │ ├── wifi-settings.glif │ │ │ │ ├── wifi-star.glif │ │ │ │ ├── wifi-strength-1-alert.glif │ │ │ │ ├── wifi-strength-1-lock-open.glif │ │ │ │ ├── wifi-strength-1-lock.glif │ │ │ │ ├── wifi-strength-1.glif │ │ │ │ ├── wifi-strength-2-alert.glif │ │ │ │ ├── wifi-strength-2-lock-open.glif │ │ │ │ ├── wifi-strength-2-lock.glif │ │ │ │ ├── wifi-strength-2.glif │ │ │ │ ├── wifi-strength-3-alert.glif │ │ │ │ ├── wifi-strength-3-lock-open.glif │ │ │ │ ├── wifi-strength-3-lock.glif │ │ │ │ ├── wifi-strength-3.glif │ │ │ │ ├── wifi-strength-4-alert.glif │ │ │ │ ├── wifi-strength-4-lock-open.glif │ │ │ │ ├── wifi-strength-4-lock.glif │ │ │ │ ├── wifi-strength-4.glif │ │ │ │ ├── wifi-strength-alert-outline.glif │ │ │ │ ├── wifi-strength-lock-open-outline.glif │ │ │ │ ├── wifi-strength-lock-outline.glif │ │ │ │ ├── wifi-strength-off-outline.glif │ │ │ │ ├── wifi-strength-off.glif │ │ │ │ ├── wifi-strength-outline.glif │ │ │ │ ├── wifi-sync.glif │ │ │ │ ├── wifi.glif │ │ │ │ ├── wikipedia.glif │ │ │ │ ├── wind-power-outline.glif │ │ │ │ ├── wind-power.glif │ │ │ │ ├── wind-turbine-alert.glif │ │ │ │ ├── wind-turbine-check.glif │ │ │ │ ├── wind-turbine.glif │ │ │ │ ├── window-close.glif │ │ │ │ ├── window-closed-variant.glif │ │ │ │ ├── window-closed.glif │ │ │ │ ├── window-maximize.glif │ │ │ │ ├── window-minimize.glif │ │ │ │ ├── window-open-variant.glif │ │ │ │ ├── window-open.glif │ │ │ │ ├── window-restore.glif │ │ │ │ ├── window-shutter-alert.glif │ │ │ │ ├── window-shutter-cog.glif │ │ │ │ ├── window-shutter-open.glif │ │ │ │ ├── window-shutter-settings.glif │ │ │ │ ├── window-shutter.glif │ │ │ │ ├── windsock.glif │ │ │ │ ├── wiper-wash-alert.glif │ │ │ │ ├── wiper-wash.glif │ │ │ │ ├── wiper.glif │ │ │ │ ├── wizard-hat.glif │ │ │ │ ├── wordpress.glif │ │ │ │ ├── wrap-disabled.glif │ │ │ │ ├── wrap.glif │ │ │ │ ├── wrench-clock.glif │ │ │ │ ├── wrench-outline.glif │ │ │ │ ├── wrench.glif │ │ │ │ ├── xamarin.glif │ │ │ │ ├── xml.glif │ │ │ │ ├── xmpp.glif │ │ │ │ ├── yahoo.glif │ │ │ │ ├── yeast.glif │ │ │ │ ├── yin-yang.glif │ │ │ │ ├── yoga.glif │ │ │ │ ├── youtube-gaming.glif │ │ │ │ ├── youtube-studio.glif │ │ │ │ ├── youtube-subscription.glif │ │ │ │ ├── youtube-tv.glif │ │ │ │ ├── youtube.glif │ │ │ │ ├── yurt.glif │ │ │ │ ├── z-wave.glif │ │ │ │ ├── zend.glif │ │ │ │ ├── zigbee.glif │ │ │ │ ├── zip-box-outline.glif │ │ │ │ ├── zip-box.glif │ │ │ │ ├── zip-disk.glif │ │ │ │ ├── zodiac-aquarius.glif │ │ │ │ ├── zodiac-aries.glif │ │ │ │ ├── zodiac-cancer.glif │ │ │ │ ├── zodiac-capricorn.glif │ │ │ │ ├── zodiac-gemini.glif │ │ │ │ ├── zodiac-leo.glif │ │ │ │ ├── zodiac-libra.glif │ │ │ │ ├── zodiac-pisces.glif │ │ │ │ ├── zodiac-sagittarius.glif │ │ │ │ ├── zodiac-scorpio.glif │ │ │ │ ├── zodiac-taurus.glif │ │ │ │ └── zodiac-virgo.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── Pomicons.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── A_W_A_Y_.glif │ │ │ │ ├── C_L_E_A_N__C_O_D_E_.glif │ │ │ │ ├── E_X_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif │ │ │ │ ├── I_N_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif │ │ │ │ ├── L_O_N_G__P_A_U_S_E_.glif │ │ │ │ ├── P_A_I_R__P_R_O_G_R_A_M_M_I_N_G_.glif │ │ │ │ ├── P_O_M_O_D_O_R_O__D_O_N_E_.glif │ │ │ │ ├── P_O_M_O_D_O_R_O__E_S_T_I_M_A_T_E_D_.glif │ │ │ │ ├── P_O_M_O_D_O_R_O__S_Q_U_A_S_H_E_D_.glif │ │ │ │ ├── P_O_M_O_D_O_R_O__T_I_C_K_I_N_G_.glif │ │ │ │ ├── S_H_O_R_T__P_A_U_S_E_.glif │ │ │ │ └── contents.plist │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── PowerlineExtraSymbols.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── _notdef.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── uni2630.glif │ │ │ │ ├── uniE_0A_0.glif │ │ │ │ ├── uniE_0A_1.glif │ │ │ │ ├── uniE_0A_2.glif │ │ │ │ ├── uniE_0A_3.glif │ │ │ │ ├── uniE_0B_0.glif │ │ │ │ ├── uniE_0B_1.glif │ │ │ │ ├── uniE_0B_2.glif │ │ │ │ ├── uniE_0B_3.glif │ │ │ │ ├── uniE_0B_4.glif │ │ │ │ ├── uniE_0B_5.glif │ │ │ │ ├── uniE_0B_6.glif │ │ │ │ ├── uniE_0B_7.glif │ │ │ │ ├── uniE_0B_8.glif │ │ │ │ ├── uniE_0B_9.glif │ │ │ │ ├── uniE_0B_A_.glif │ │ │ │ ├── uniE_0B_B_.glif │ │ │ │ ├── uniE_0B_C_.glif │ │ │ │ ├── uniE_0B_D_.glif │ │ │ │ ├── uniE_0B_E_.glif │ │ │ │ ├── uniE_0B_F_.glif │ │ │ │ ├── uniE_0C_0.glif │ │ │ │ ├── uniE_0C_1.glif │ │ │ │ ├── uniE_0C_2.glif │ │ │ │ ├── uniE_0C_3.glif │ │ │ │ ├── uniE_0C_4.glif │ │ │ │ ├── uniE_0C_5.glif │ │ │ │ ├── uniE_0C_6.glif │ │ │ │ ├── uniE_0C_7.glif │ │ │ │ ├── uniE_0C_8.glif │ │ │ │ ├── uniE_0C_A_.glif │ │ │ │ ├── uniE_0C_C_.glif │ │ │ │ ├── uniE_0C_D_.glif │ │ │ │ ├── uniE_0C_E_.glif │ │ │ │ ├── uniE_0C_F_.glif │ │ │ │ ├── uniE_0D_0.glif │ │ │ │ ├── uniE_0D_1.glif │ │ │ │ ├── uniE_0D_2.glif │ │ │ │ └── uniE_0D_4.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── Unicode_IEC_symbol_font.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── H_E_A_V_Y_ C_I_R_C_L_E_.glif │ │ │ │ ├── P_O_W_E_R_ O_N_ S_Y_M_B_O_L_.glif │ │ │ │ ├── P_O_W_E_R_ O_N_-O_F_F_ S_Y_M_B_O_L_.glif │ │ │ │ ├── P_O_W_E_R_ S_L_E_E_P_ S_Y_M_B_O_L_.glif │ │ │ │ ├── P_O_W_E_R_ S_Y_M_B_O_L_.glif │ │ │ │ └── contents.plist │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── codicon.ufo/ │ │ │ ├── features.fea │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── account.glif │ │ │ │ ├── activate-breakpoints.glif │ │ │ │ ├── add.glif │ │ │ │ ├── archive.glif │ │ │ │ ├── arrow-both.glif │ │ │ │ ├── arrow-down.glif │ │ │ │ ├── arrow-left.glif │ │ │ │ ├── arrow-right.glif │ │ │ │ ├── arrow-small-down.glif │ │ │ │ ├── arrow-small-left.glif │ │ │ │ ├── arrow-small-right.glif │ │ │ │ ├── arrow-small-up.glif │ │ │ │ ├── arrow-swap.glif │ │ │ │ ├── arrow-up.glif │ │ │ │ ├── azure-devops.glif │ │ │ │ ├── azure.glif │ │ │ │ ├── beaker-stop.glif │ │ │ │ ├── beaker.glif │ │ │ │ ├── bell-dot.glif │ │ │ │ ├── bell.glif │ │ │ │ ├── bold.glif │ │ │ │ ├── book.glif │ │ │ │ ├── bookmark.glif │ │ │ │ ├── bracket-dot.glif │ │ │ │ ├── bracket-error.glif │ │ │ │ ├── briefcase.glif │ │ │ │ ├── broadcast.glif │ │ │ │ ├── browser.glif │ │ │ │ ├── bug.glif │ │ │ │ ├── calendar.glif │ │ │ │ ├── call-incoming.glif │ │ │ │ ├── call-outgoing.glif │ │ │ │ ├── case-sensitive.glif │ │ │ │ ├── check-all.glif │ │ │ │ ├── check.glif │ │ │ │ ├── checklist.glif │ │ │ │ ├── chevron-down.glif │ │ │ │ ├── chevron-left.glif │ │ │ │ ├── chevron-right.glif │ │ │ │ ├── chevron-up.glif │ │ │ │ ├── chrome-close.glif │ │ │ │ ├── chrome-maximize.glif │ │ │ │ ├── chrome-minimize.glif │ │ │ │ ├── chrome-restore.glif │ │ │ │ ├── circle-filled.glif │ │ │ │ ├── circle-large-filled.glif │ │ │ │ ├── circle-large-outline.glif │ │ │ │ ├── circle-outline.glif │ │ │ │ ├── circle-slash.glif │ │ │ │ ├── circuit-board.glif │ │ │ │ ├── clear-all.glif │ │ │ │ ├── clippy.glif │ │ │ │ ├── close-all.glif │ │ │ │ ├── close.glif │ │ │ │ ├── cloud-download.glif │ │ │ │ ├── cloud-upload.glif │ │ │ │ ├── cloud.glif │ │ │ │ ├── code.glif │ │ │ │ ├── collapse-all.glif │ │ │ │ ├── color-mode.glif │ │ │ │ ├── combine.glif │ │ │ │ ├── comment-discussion.glif │ │ │ │ ├── comment.glif │ │ │ │ ├── compass-active.glif │ │ │ │ ├── compass-dot.glif │ │ │ │ ├── compass.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copy.glif │ │ │ │ ├── credit-card.glif │ │ │ │ ├── dash.glif │ │ │ │ ├── dashboard.glif │ │ │ │ ├── database.glif │ │ │ │ ├── debug-all.glif │ │ │ │ ├── debug-alt-small.glif │ │ │ │ ├── debug-alt.glif │ │ │ │ ├── debug-breakpoint-conditional-unverified.glif │ │ │ │ ├── debug-breakpoint-conditional.glif │ │ │ │ ├── debug-breakpoint-data-unverified.glif │ │ │ │ ├── debug-breakpoint-data.glif │ │ │ │ ├── debug-breakpoint-function-unverified.glif │ │ │ │ ├── debug-breakpoint-function.glif │ │ │ │ ├── debug-breakpoint-log-unverified.glif │ │ │ │ ├── debug-breakpoint-log.glif │ │ │ │ ├── debug-breakpoint-unsupported.glif │ │ │ │ ├── debug-console.glif │ │ │ │ ├── debug-continue-small.glif │ │ │ │ ├── debug-continue.glif │ │ │ │ ├── debug-coverage.glif │ │ │ │ ├── debug-disconnect.glif │ │ │ │ ├── debug-line-by-line.glif │ │ │ │ ├── debug-pause.glif │ │ │ │ ├── debug-rerun.glif │ │ │ │ ├── debug-restart-frame.glif │ │ │ │ ├── debug-restart.glif │ │ │ │ ├── debug-reverse-continue.glif │ │ │ │ ├── debug-stackframe-active.glif │ │ │ │ ├── debug-stackframe-dot.glif │ │ │ │ ├── debug-stackframe.glif │ │ │ │ ├── debug-start.glif │ │ │ │ ├── debug-step-back.glif │ │ │ │ ├── debug-step-into.glif │ │ │ │ ├── debug-step-out.glif │ │ │ │ ├── debug-step-over.glif │ │ │ │ ├── debug-stop.glif │ │ │ │ ├── debug.glif │ │ │ │ ├── desktop-download.glif │ │ │ │ ├── device-camera-video.glif │ │ │ │ ├── device-camera.glif │ │ │ │ ├── device-mobile.glif │ │ │ │ ├── diff-added.glif │ │ │ │ ├── diff-ignored.glif │ │ │ │ ├── diff-modified.glif │ │ │ │ ├── diff-removed.glif │ │ │ │ ├── diff-renamed.glif │ │ │ │ ├── diff.glif │ │ │ │ ├── discard.glif │ │ │ │ ├── edit.glif │ │ │ │ ├── editor-layout.glif │ │ │ │ ├── ellipsis.glif │ │ │ │ ├── empty-window.glif │ │ │ │ ├── error.glif │ │ │ │ ├── exclude.glif │ │ │ │ ├── expand-all.glif │ │ │ │ ├── export.glif │ │ │ │ ├── extensions.glif │ │ │ │ ├── eye-closed.glif │ │ │ │ ├── eye.glif │ │ │ │ ├── feedback.glif │ │ │ │ ├── file-binary.glif │ │ │ │ ├── file-code.glif │ │ │ │ ├── file-media.glif │ │ │ │ ├── file-pdf.glif │ │ │ │ ├── file-submodule.glif │ │ │ │ ├── file-symlink-directory.glif │ │ │ │ ├── file-symlink-file.glif │ │ │ │ ├── file-zip.glif │ │ │ │ ├── file.glif │ │ │ │ ├── files.glif │ │ │ │ ├── filter-filled.glif │ │ │ │ ├── filter.glif │ │ │ │ ├── flame.glif │ │ │ │ ├── fold-down.glif │ │ │ │ ├── fold-up.glif │ │ │ │ ├── fold.glif │ │ │ │ ├── folder-active.glif │ │ │ │ ├── folder-library.glif │ │ │ │ ├── folder-opened.glif │ │ │ │ ├── folder.glif │ │ │ │ ├── gear.glif │ │ │ │ ├── gift.glif │ │ │ │ ├── gist-secret.glif │ │ │ │ ├── git-commit.glif │ │ │ │ ├── git-compare.glif │ │ │ │ ├── git-merge.glif │ │ │ │ ├── git-pull-request-closed.glif │ │ │ │ ├── git-pull-request-create.glif │ │ │ │ ├── git-pull-request-draft.glif │ │ │ │ ├── git-pull-request.glif │ │ │ │ ├── github-action.glif │ │ │ │ ├── github-alt.glif │ │ │ │ ├── github-inverted.glif │ │ │ │ ├── github.glif │ │ │ │ ├── globe.glif │ │ │ │ ├── go-to-file.glif │ │ │ │ ├── grabber.glif │ │ │ │ ├── graph-left.glif │ │ │ │ ├── graph-line.glif │ │ │ │ ├── graph-scatter.glif │ │ │ │ ├── graph.glif │ │ │ │ ├── gripper.glif │ │ │ │ ├── group-by-ref-type.glif │ │ │ │ ├── heart.glif │ │ │ │ ├── history.glif │ │ │ │ ├── home.glif │ │ │ │ ├── horizontal-rule.glif │ │ │ │ ├── hubot.glif │ │ │ │ ├── inbox.glif │ │ │ │ ├── info.glif │ │ │ │ ├── inspect.glif │ │ │ │ ├── issue-draft.glif │ │ │ │ ├── issue-reopened.glif │ │ │ │ ├── issues.glif │ │ │ │ ├── italic.glif │ │ │ │ ├── jersey.glif │ │ │ │ ├── json.glif │ │ │ │ ├── kebab-vertical.glif │ │ │ │ ├── key.glif │ │ │ │ ├── law.glif │ │ │ │ ├── layers-active.glif │ │ │ │ ├── layers-dot.glif │ │ │ │ ├── layers.glif │ │ │ │ ├── layout.glif │ │ │ │ ├── library.glif │ │ │ │ ├── lightbulb-autofix.glif │ │ │ │ ├── lightbulb.glif │ │ │ │ ├── link-external.glif │ │ │ │ ├── link.glif │ │ │ │ ├── list-filter.glif │ │ │ │ ├── list-flat.glif │ │ │ │ ├── list-ordered.glif │ │ │ │ ├── list-selection.glif │ │ │ │ ├── list-tree.glif │ │ │ │ ├── list-unordered.glif │ │ │ │ ├── live-share.glif │ │ │ │ ├── loading.glif │ │ │ │ ├── location.glif │ │ │ │ ├── lock-small.glif │ │ │ │ ├── lock.glif │ │ │ │ ├── magnet.glif │ │ │ │ ├── mail-read.glif │ │ │ │ ├── mail.glif │ │ │ │ ├── markdown.glif │ │ │ │ ├── megaphone.glif │ │ │ │ ├── mention.glif │ │ │ │ ├── menu.glif │ │ │ │ ├── merge.glif │ │ │ │ ├── milestone.glif │ │ │ │ ├── mirror.glif │ │ │ │ ├── mortar-board.glif │ │ │ │ ├── move.glif │ │ │ │ ├── multiple-windows.glif │ │ │ │ ├── mute.glif │ │ │ │ ├── new-file.glif │ │ │ │ ├── new-folder.glif │ │ │ │ ├── newline.glif │ │ │ │ ├── no-newline.glif │ │ │ │ ├── note.glif │ │ │ │ ├── notebook-template.glif │ │ │ │ ├── notebook.glif │ │ │ │ ├── octoface.glif │ │ │ │ ├── open-preview.glif │ │ │ │ ├── organization.glif │ │ │ │ ├── output.glif │ │ │ │ ├── package.glif │ │ │ │ ├── paintcan.glif │ │ │ │ ├── pass-filled.glif │ │ │ │ ├── pass.glif │ │ │ │ ├── person-add.glif │ │ │ │ ├── person.glif │ │ │ │ ├── pie-chart.glif │ │ │ │ ├── pin.glif │ │ │ │ ├── pinned-dirty.glif │ │ │ │ ├── pinned.glif │ │ │ │ ├── play-circle.glif │ │ │ │ ├── play.glif │ │ │ │ ├── plug.glif │ │ │ │ ├── preserve-case.glif │ │ │ │ ├── preview.glif │ │ │ │ ├── primitive-square.glif │ │ │ │ ├── project.glif │ │ │ │ ├── pulse.glif │ │ │ │ ├── question.glif │ │ │ │ ├── quote.glif │ │ │ │ ├── radio-tower.glif │ │ │ │ ├── reactions.glif │ │ │ │ ├── record-keys.glif │ │ │ │ ├── record.glif │ │ │ │ ├── redo.glif │ │ │ │ ├── references.glif │ │ │ │ ├── refresh.glif │ │ │ │ ├── regex.glif │ │ │ │ ├── remote-explorer.glif │ │ │ │ ├── remote.glif │ │ │ │ ├── remove.glif │ │ │ │ ├── replace-all.glif │ │ │ │ ├── replace.glif │ │ │ │ ├── reply.glif │ │ │ │ ├── repo-clone.glif │ │ │ │ ├── repo-force-push.glif │ │ │ │ ├── repo-forked.glif │ │ │ │ ├── repo-pull.glif │ │ │ │ ├── repo-push.glif │ │ │ │ ├── repo.glif │ │ │ │ ├── report.glif │ │ │ │ ├── request-changes.glif │ │ │ │ ├── rocket.glif │ │ │ │ ├── root-folder-opened.glif │ │ │ │ ├── root-folder.glif │ │ │ │ ├── rss.glif │ │ │ │ ├── ruby.glif │ │ │ │ ├── run-above.glif │ │ │ │ ├── run-all.glif │ │ │ │ ├── run-below.glif │ │ │ │ ├── run-errors.glif │ │ │ │ ├── save-all.glif │ │ │ │ ├── save-as.glif │ │ │ │ ├── save.glif │ │ │ │ ├── screen-full.glif │ │ │ │ ├── screen-normal.glif │ │ │ │ ├── search-stop.glif │ │ │ │ ├── search.glif │ │ │ │ ├── server-environment.glif │ │ │ │ ├── server-process.glif │ │ │ │ ├── server.glif │ │ │ │ ├── settings-gear.glif │ │ │ │ ├── settings.glif │ │ │ │ ├── shield.glif │ │ │ │ ├── sign-in.glif │ │ │ │ ├── sign-out.glif │ │ │ │ ├── smiley.glif │ │ │ │ ├── sort-precedence.glif │ │ │ │ ├── source-control.glif │ │ │ │ ├── split-horizontal.glif │ │ │ │ ├── split-vertical.glif │ │ │ │ ├── squirrel.glif │ │ │ │ ├── star-empty.glif │ │ │ │ ├── star-full.glif │ │ │ │ ├── star-half.glif │ │ │ │ ├── stop-circle.glif │ │ │ │ ├── symbol-array.glif │ │ │ │ ├── symbol-boolean.glif │ │ │ │ ├── symbol-class.glif │ │ │ │ ├── symbol-color.glif │ │ │ │ ├── symbol-constant.glif │ │ │ │ ├── symbol-enum-member.glif │ │ │ │ ├── symbol-enum.glif │ │ │ │ ├── symbol-event.glif │ │ │ │ ├── symbol-field.glif │ │ │ │ ├── symbol-file.glif │ │ │ │ ├── symbol-interface.glif │ │ │ │ ├── symbol-key.glif │ │ │ │ ├── symbol-keyword.glif │ │ │ │ ├── symbol-method.glif │ │ │ │ ├── symbol-misc.glif │ │ │ │ ├── symbol-namespace.glif │ │ │ │ ├── symbol-numeric.glif │ │ │ │ ├── symbol-operator.glif │ │ │ │ ├── symbol-parameter.glif │ │ │ │ ├── symbol-property.glif │ │ │ │ ├── symbol-ruler.glif │ │ │ │ ├── symbol-snippet.glif │ │ │ │ ├── symbol-string.glif │ │ │ │ ├── symbol-structure.glif │ │ │ │ ├── symbol-variable.glif │ │ │ │ ├── sync-ignored.glif │ │ │ │ ├── sync.glif │ │ │ │ ├── table.glif │ │ │ │ ├── tag.glif │ │ │ │ ├── tasklist.glif │ │ │ │ ├── telescope.glif │ │ │ │ ├── terminal-bash.glif │ │ │ │ ├── terminal-cmd.glif │ │ │ │ ├── terminal-debian.glif │ │ │ │ ├── terminal-linux.glif │ │ │ │ ├── terminal-powershell.glif │ │ │ │ ├── terminal-tmux.glif │ │ │ │ ├── terminal-ubuntu.glif │ │ │ │ ├── terminal.glif │ │ │ │ ├── text-size.glif │ │ │ │ ├── three-bars.glif │ │ │ │ ├── thumbsdown.glif │ │ │ │ ├── thumbsup.glif │ │ │ │ ├── tools.glif │ │ │ │ ├── trash.glif │ │ │ │ ├── triangle-down.glif │ │ │ │ ├── triangle-left.glif │ │ │ │ ├── triangle-right.glif │ │ │ │ ├── triangle-up.glif │ │ │ │ ├── twitter.glif │ │ │ │ ├── type-hierarchy-sub.glif │ │ │ │ ├── type-hierarchy-super.glif │ │ │ │ ├── type-hierarchy.glif │ │ │ │ ├── unfold.glif │ │ │ │ ├── ungroup-by-ref-type.glif │ │ │ │ ├── unlock.glif │ │ │ │ ├── unmute.glif │ │ │ │ ├── unverified.glif │ │ │ │ ├── variable-group.glif │ │ │ │ ├── verified-filled.glif │ │ │ │ ├── verified.glif │ │ │ │ ├── versions.glif │ │ │ │ ├── vm-active.glif │ │ │ │ ├── vm-connect.glif │ │ │ │ ├── vm-outline.glif │ │ │ │ ├── vm-running.glif │ │ │ │ ├── vm.glif │ │ │ │ ├── wand.glif │ │ │ │ ├── warning.glif │ │ │ │ ├── watch.glif │ │ │ │ ├── whitespace.glif │ │ │ │ ├── whole-word.glif │ │ │ │ ├── window.glif │ │ │ │ ├── word-wrap.glif │ │ │ │ ├── workspace-trusted.glif │ │ │ │ ├── workspace-unknown.glif │ │ │ │ ├── workspace-untrusted.glif │ │ │ │ ├── zoom-in.glif │ │ │ │ └── zoom-out.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── codicon_LICENSE.txt │ │ ├── devicons.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── contents.plist │ │ │ │ ├── uniE_600.glif │ │ │ │ ├── uniE_601.glif │ │ │ │ ├── uniE_602.glif │ │ │ │ ├── uniE_603.glif │ │ │ │ ├── uniE_604.glif │ │ │ │ ├── uniE_605.glif │ │ │ │ ├── uniE_606.glif │ │ │ │ ├── uniE_607.glif │ │ │ │ ├── uniE_608.glif │ │ │ │ ├── uniE_609.glif │ │ │ │ ├── uniE_60A_.glif │ │ │ │ ├── uniE_60B_.glif │ │ │ │ ├── uniE_60C_.glif │ │ │ │ ├── uniE_60D_.glif │ │ │ │ ├── uniE_60E_.glif │ │ │ │ ├── uniE_60F_.glif │ │ │ │ ├── uniE_610.glif │ │ │ │ ├── uniE_611.glif │ │ │ │ ├── uniE_612.glif │ │ │ │ ├── uniE_613.glif │ │ │ │ ├── uniE_614.glif │ │ │ │ ├── uniE_615.glif │ │ │ │ ├── uniE_616.glif │ │ │ │ ├── uniE_617.glif │ │ │ │ ├── uniE_618.glif │ │ │ │ ├── uniE_619.glif │ │ │ │ ├── uniE_61A_.glif │ │ │ │ ├── uniE_61B_.glif │ │ │ │ ├── uniE_61C_.glif │ │ │ │ ├── uniE_61D_.glif │ │ │ │ ├── uniE_61E_.glif │ │ │ │ ├── uniE_61F_.glif │ │ │ │ ├── uniE_620.glif │ │ │ │ ├── uniE_621.glif │ │ │ │ ├── uniE_622.glif │ │ │ │ ├── uniE_623.glif │ │ │ │ ├── uniE_624.glif │ │ │ │ ├── uniE_625.glif │ │ │ │ ├── uniE_626.glif │ │ │ │ ├── uniE_627.glif │ │ │ │ ├── uniE_628.glif │ │ │ │ ├── uniE_629.glif │ │ │ │ ├── uniE_62A_.glif │ │ │ │ ├── uniE_62B_.glif │ │ │ │ ├── uniE_62C_.glif │ │ │ │ ├── uniE_62D_.glif │ │ │ │ ├── uniE_62E_.glif │ │ │ │ ├── uniE_62F_.glif │ │ │ │ ├── uniE_630.glif │ │ │ │ ├── uniE_631.glif │ │ │ │ ├── uniE_632.glif │ │ │ │ ├── uniE_633.glif │ │ │ │ ├── uniE_634.glif │ │ │ │ ├── uniE_635.glif │ │ │ │ ├── uniE_636.glif │ │ │ │ ├── uniE_637.glif │ │ │ │ ├── uniE_638.glif │ │ │ │ ├── uniE_639.glif │ │ │ │ ├── uniE_63A_.glif │ │ │ │ ├── uniE_63B_.glif │ │ │ │ ├── uniE_63C_.glif │ │ │ │ ├── uniE_63D_.glif │ │ │ │ ├── uniE_63E_.glif │ │ │ │ ├── uniE_63F_.glif │ │ │ │ ├── uniE_640.glif │ │ │ │ ├── uniE_641.glif │ │ │ │ ├── uniE_642.glif │ │ │ │ ├── uniE_643.glif │ │ │ │ ├── uniE_644.glif │ │ │ │ ├── uniE_645.glif │ │ │ │ ├── uniE_646.glif │ │ │ │ ├── uniE_647.glif │ │ │ │ ├── uniE_648.glif │ │ │ │ ├── uniE_649.glif │ │ │ │ ├── uniE_64A_.glif │ │ │ │ ├── uniE_64B_.glif │ │ │ │ ├── uniE_64C_.glif │ │ │ │ ├── uniE_64D_.glif │ │ │ │ ├── uniE_64E_.glif │ │ │ │ ├── uniE_64F_.glif │ │ │ │ ├── uniE_650.glif │ │ │ │ ├── uniE_651.glif │ │ │ │ ├── uniE_652.glif │ │ │ │ ├── uniE_653.glif │ │ │ │ ├── uniE_654.glif │ │ │ │ ├── uniE_655.glif │ │ │ │ ├── uniE_656.glif │ │ │ │ ├── uniE_657.glif │ │ │ │ ├── uniE_658.glif │ │ │ │ ├── uniE_659.glif │ │ │ │ ├── uniE_65A_.glif │ │ │ │ ├── uniE_65B_.glif │ │ │ │ ├── uniE_65C_.glif │ │ │ │ ├── uniE_65D_.glif │ │ │ │ ├── uniE_65E_.glif │ │ │ │ ├── uniE_65F_.glif │ │ │ │ ├── uniE_660.glif │ │ │ │ ├── uniE_661.glif │ │ │ │ ├── uniE_662.glif │ │ │ │ ├── uniE_663.glif │ │ │ │ ├── uniE_664.glif │ │ │ │ ├── uniE_665.glif │ │ │ │ ├── uniE_666.glif │ │ │ │ ├── uniE_667.glif │ │ │ │ ├── uniE_668.glif │ │ │ │ ├── uniE_669.glif │ │ │ │ ├── uniE_66A_.glif │ │ │ │ ├── uniE_66B_.glif │ │ │ │ ├── uniE_66C_.glif │ │ │ │ ├── uniE_66D_.glif │ │ │ │ ├── uniE_66E_.glif │ │ │ │ ├── uniE_66F_.glif │ │ │ │ ├── uniE_670.glif │ │ │ │ ├── uniE_671.glif │ │ │ │ ├── uniE_672.glif │ │ │ │ ├── uniE_673.glif │ │ │ │ ├── uniE_674.glif │ │ │ │ ├── uniE_675.glif │ │ │ │ ├── uniE_676.glif │ │ │ │ ├── uniE_677.glif │ │ │ │ ├── uniE_678.glif │ │ │ │ ├── uniE_679.glif │ │ │ │ ├── uniE_67A_.glif │ │ │ │ ├── uniE_67B_.glif │ │ │ │ ├── uniE_67C_.glif │ │ │ │ ├── uniE_67D_.glif │ │ │ │ ├── uniE_67E_.glif │ │ │ │ ├── uniE_67F_.glif │ │ │ │ ├── uniE_680.glif │ │ │ │ ├── uniE_681.glif │ │ │ │ ├── uniE_682.glif │ │ │ │ ├── uniE_683.glif │ │ │ │ ├── uniE_684.glif │ │ │ │ ├── uniE_685.glif │ │ │ │ ├── uniE_686.glif │ │ │ │ ├── uniE_687.glif │ │ │ │ ├── uniE_688.glif │ │ │ │ ├── uniE_689.glif │ │ │ │ ├── uniE_68A_.glif │ │ │ │ ├── uniE_68B_.glif │ │ │ │ ├── uniE_68C_.glif │ │ │ │ ├── uniE_68D_.glif │ │ │ │ ├── uniE_68E_.glif │ │ │ │ ├── uniE_68F_.glif │ │ │ │ ├── uniE_690.glif │ │ │ │ ├── uniE_691.glif │ │ │ │ ├── uniE_692.glif │ │ │ │ ├── uniE_693.glif │ │ │ │ ├── uniE_694.glif │ │ │ │ ├── uniE_695.glif │ │ │ │ ├── uniE_696.glif │ │ │ │ ├── uniE_697.glif │ │ │ │ ├── uniE_698.glif │ │ │ │ ├── uniE_699.glif │ │ │ │ ├── uniE_69A_.glif │ │ │ │ ├── uniE_69B_.glif │ │ │ │ ├── uniE_69C_.glif │ │ │ │ ├── uniE_69D_.glif │ │ │ │ ├── uniE_69E_.glif │ │ │ │ ├── uniE_69F_.glif │ │ │ │ ├── uniE_6A_0.glif │ │ │ │ ├── uniE_6A_1.glif │ │ │ │ ├── uniE_6A_2.glif │ │ │ │ ├── uniE_6A_3.glif │ │ │ │ ├── uniE_6A_4.glif │ │ │ │ ├── uniE_6A_5.glif │ │ │ │ ├── uniE_6A_6.glif │ │ │ │ ├── uniE_6A_7.glif │ │ │ │ ├── uniE_6A_8.glif │ │ │ │ ├── uniE_6A_9.glif │ │ │ │ ├── uniE_6A_A_.glif │ │ │ │ ├── uniE_6A_B_.glif │ │ │ │ ├── uniE_6A_C_.glif │ │ │ │ ├── uniE_6A_D_.glif │ │ │ │ ├── uniE_6A_E_.glif │ │ │ │ ├── uniE_6A_F_.glif │ │ │ │ ├── uniE_6B_0.glif │ │ │ │ ├── uniE_6B_1.glif │ │ │ │ ├── uniE_6B_2.glif │ │ │ │ ├── uniE_6B_3.glif │ │ │ │ ├── uniE_6B_4.glif │ │ │ │ ├── uniE_6B_5.glif │ │ │ │ ├── uniE_6B_6.glif │ │ │ │ ├── uniE_6B_7.glif │ │ │ │ ├── uniE_6B_8.glif │ │ │ │ ├── uniE_6B_9.glif │ │ │ │ ├── uniE_6B_A_.glif │ │ │ │ ├── uniE_6B_B_.glif │ │ │ │ ├── uniE_6B_C_.glif │ │ │ │ ├── uniE_6B_D_.glif │ │ │ │ ├── uniE_6B_E_.glif │ │ │ │ ├── uniE_6B_F_.glif │ │ │ │ ├── uniE_6C_0.glif │ │ │ │ ├── uniE_6C_1.glif │ │ │ │ ├── uniE_6C_2.glif │ │ │ │ ├── uniE_6C_3.glif │ │ │ │ ├── uniE_6C_4.glif │ │ │ │ └── uniE_6C_5.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── font-awesome-extension.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── apple-fruit.glif │ │ │ │ ├── atom.glif │ │ │ │ ├── bacteria.glif │ │ │ │ ├── banana.glif │ │ │ │ ├── bath.glif │ │ │ │ ├── bed.glif │ │ │ │ ├── benzene.glif │ │ │ │ ├── bigger.glif │ │ │ │ ├── biohazard.glif │ │ │ │ ├── blogger-circle.glif │ │ │ │ ├── blogger-square.glif │ │ │ │ ├── bones.glif │ │ │ │ ├── book-open-o.glif │ │ │ │ ├── book-open.glif │ │ │ │ ├── brain.glif │ │ │ │ ├── bread.glif │ │ │ │ ├── butterfly.glif │ │ │ │ ├── carot.glif │ │ │ │ ├── cc-by.glif │ │ │ │ ├── cc-cc.glif │ │ │ │ ├── cc-nc-eu.glif │ │ │ │ ├── cc-nc-jp.glif │ │ │ │ ├── cc-nc.glif │ │ │ │ ├── cc-nd.glif │ │ │ │ ├── cc-remix.glif │ │ │ │ ├── cc-sa.glif │ │ │ │ ├── cc-share.glif │ │ │ │ ├── cc-zero.glif │ │ │ │ ├── checklist-o.glif │ │ │ │ ├── cherry.glif │ │ │ │ ├── chess-bishop.glif │ │ │ │ ├── chess-horse.glif │ │ │ │ ├── chess-king.glif │ │ │ │ ├── chess-pawn.glif │ │ │ │ ├── chess-queen.glif │ │ │ │ ├── chess-tower.glif │ │ │ │ ├── chesse.glif │ │ │ │ ├── chicken-thigh.glif │ │ │ │ ├── chilli.glif │ │ │ │ ├── chip.glif │ │ │ │ ├── cicling.glif │ │ │ │ ├── cloud.glif │ │ │ │ ├── cockroach.glif │ │ │ │ ├── coffe-beans.glif │ │ │ │ ├── coins.glif │ │ │ │ ├── comb.glif │ │ │ │ ├── comet.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── crown.glif │ │ │ │ ├── cup-coffe.glif │ │ │ │ ├── dice.glif │ │ │ │ ├── disco.glif │ │ │ │ ├── dna.glif │ │ │ │ ├── donut.glif │ │ │ │ ├── dress.glif │ │ │ │ ├── drop.glif │ │ │ │ ├── ello.glif │ │ │ │ ├── envelope-open-o.glif │ │ │ │ ├── envelope-open.glif │ │ │ │ ├── equal-bigger.glif │ │ │ │ ├── equal.glif │ │ │ │ ├── feedly.glif │ │ │ │ ├── file-export.glif │ │ │ │ ├── file-import.glif │ │ │ │ ├── fingerprint.glif │ │ │ │ ├── floppy.glif │ │ │ │ ├── footprint.glif │ │ │ │ ├── freecodecamp.glif │ │ │ │ ├── galaxy.glif │ │ │ │ ├── galery.glif │ │ │ │ ├── gift-card.glif │ │ │ │ ├── glass.glif │ │ │ │ ├── google-drive.glif │ │ │ │ ├── google-play.glif │ │ │ │ ├── gps.glif │ │ │ │ ├── grav.glif │ │ │ │ ├── guitar.glif │ │ │ │ ├── gut.glif │ │ │ │ ├── halter.glif │ │ │ │ ├── hamburger.glif │ │ │ │ ├── hat.glif │ │ │ │ ├── hexagon.glif │ │ │ │ ├── high-heel.glif │ │ │ │ ├── hotdog.glif │ │ │ │ ├── ice-cream.glif │ │ │ │ ├── id-card.glif │ │ │ │ ├── imdb.glif │ │ │ │ ├── infinity.glif │ │ │ │ ├── injection.glif │ │ │ │ ├── isle.glif │ │ │ │ ├── java.glif │ │ │ │ ├── layers.glif │ │ │ │ ├── lips.glif │ │ │ │ ├── lipstick.glif │ │ │ │ ├── liver.glif │ │ │ │ ├── lollipop.glif │ │ │ │ ├── loyalty-card.glif │ │ │ │ ├── lung.glif │ │ │ │ ├── makeup-brushes.glif │ │ │ │ ├── maximize.glif │ │ │ │ ├── meat.glif │ │ │ │ ├── medicine.glif │ │ │ │ ├── microscope.glif │ │ │ │ ├── milk-bottle.glif │ │ │ │ ├── minimize.glif │ │ │ │ ├── molecule.glif │ │ │ │ ├── moon-cloud.glif │ │ │ │ ├── mountains.glif │ │ │ │ ├── mushroom.glif │ │ │ │ ├── mustache.glif │ │ │ │ ├── mysql.glif │ │ │ │ ├── nintendo.glif │ │ │ │ ├── orange.glif │ │ │ │ ├── palette-color.glif │ │ │ │ ├── peach.glif │ │ │ │ ├── pear.glif │ │ │ │ ├── pi.glif │ │ │ │ ├── pizza.glif │ │ │ │ ├── planet.glif │ │ │ │ ├── plant.glif │ │ │ │ ├── playstation.glif │ │ │ │ ├── poison.glif │ │ │ │ ├── popcorn.glif │ │ │ │ ├── popsicle.glif │ │ │ │ ├── pulse.glif │ │ │ │ ├── python.glif │ │ │ │ ├── quora-circle.glif │ │ │ │ ├── quora-square.glif │ │ │ │ ├── radioactive.glif │ │ │ │ ├── raining.glif │ │ │ │ ├── real-heart.glif │ │ │ │ ├── refrigerator.glif │ │ │ │ ├── restore.glif │ │ │ │ ├── ring.glif │ │ │ │ ├── ruby-o.glif │ │ │ │ ├── ruby.glif │ │ │ │ ├── ruler.glif │ │ │ │ ├── shirt.glif │ │ │ │ ├── slash.glif │ │ │ │ ├── smaller.glif │ │ │ │ ├── snowing.glif │ │ │ │ ├── soda.glif │ │ │ │ ├── sofa.glif │ │ │ │ ├── soup.glif │ │ │ │ ├── spermatozoon.glif │ │ │ │ ├── spin-double.glif │ │ │ │ ├── stomach.glif │ │ │ │ ├── storm.glif │ │ │ │ ├── sun-cloud.glif │ │ │ │ ├── sushi.glif │ │ │ │ ├── tacos.glif │ │ │ │ ├── telegram-circle.glif │ │ │ │ ├── telegram.glif │ │ │ │ ├── telescope.glif │ │ │ │ ├── thermometer-high.glif │ │ │ │ ├── thermometer-low.glif │ │ │ │ ├── thermometer.glif │ │ │ │ ├── thin-close.glif │ │ │ │ ├── toilet.glif │ │ │ │ ├── tools.glif │ │ │ │ ├── tooth.glif │ │ │ │ ├── tree.glif │ │ │ │ ├── triangle-ruler.glif │ │ │ │ ├── umbrella.glif │ │ │ │ ├── uterus.glif │ │ │ │ ├── virus.glif │ │ │ │ ├── w3c.glif │ │ │ │ ├── walking.glif │ │ │ │ ├── wallet.glif │ │ │ │ ├── wind.glif │ │ │ │ └── xbox.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── font-logos.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── A_O_S_C_ O_S_.glif │ │ │ │ ├── A_lma L_inux.glif │ │ │ │ ├── A_lpine.glif │ │ │ │ ├── A_pple.glif │ │ │ │ ├── A_rch L_inux.glif │ │ │ │ ├── A_rchL_abs.glif │ │ │ │ ├── A_rchcraft.glif │ │ │ │ ├── A_rcoL_inux.glif │ │ │ │ ├── A_rduino.glif │ │ │ │ ├── A_rtix L_inux.glif │ │ │ │ ├── A_wesome W_M_.glif │ │ │ │ ├── B_igL_inux.glif │ │ │ │ ├── B_udgie.glif │ │ │ │ ├── C_entO_S_.glif │ │ │ │ ├── C_innamon.glif │ │ │ │ ├── C_odeberg.glif │ │ │ │ ├── C_oreO_S_.glif │ │ │ │ ├── C_rystal L_inux.glif │ │ │ │ ├── D_ebian.glif │ │ │ │ ├── D_eepin.glif │ │ │ │ ├── D_evuan.glif │ │ │ │ ├── D_ocker.glif │ │ │ │ ├── E_ndeavour O_S_.glif │ │ │ │ ├── E_nlightenment.glif │ │ │ │ ├── F_-droid.glif │ │ │ │ ├── F_O_S_D_E_M_.glif │ │ │ │ ├── F_edora (inverse).glif │ │ │ │ ├── F_edora.glif │ │ │ │ ├── F_erris.glif │ │ │ │ ├── F_lathub.glif │ │ │ │ ├── F_luxbox.glif │ │ │ │ ├── F_orgejo.glif │ │ │ │ ├── F_reeB_S_D_.glif │ │ │ │ ├── F_reeC_A_D_.glif │ │ │ │ ├── G_I_M_P_.glif │ │ │ │ ├── G_N_O_M_E_.glif │ │ │ │ ├── G_N_U_ G_uix.glif │ │ │ │ ├── G_T_K_.glif │ │ │ │ ├── G_aruda L_inux.glif │ │ │ │ ├── G_entoo.glif │ │ │ │ ├── G_itea.glif │ │ │ │ ├── H_yperbola G_N_U_L_inux-libre.glif │ │ │ │ ├── H_yprland.glif │ │ │ │ ├── I_nkscape.glif │ │ │ │ ├── J_W_M_.glif │ │ │ │ ├── K_D_E_ N_eon.glif │ │ │ │ ├── K_D_E_ P_lasma.glif │ │ │ │ ├── K_ali L_inux.glif │ │ │ │ ├── K_denlive.glif │ │ │ │ ├── K_iC_ad.glif │ │ │ │ ├── K_rita.glif │ │ │ │ ├── K_ubuntu (inverse).glif │ │ │ │ ├── K_ubuntu.glif │ │ │ │ ├── L_X_D_E_.glif │ │ │ │ ├── L_X_L_E_ L_inux.glif │ │ │ │ ├── L_X_Q_t.glif │ │ │ │ ├── L_inux M_int (inverse).glif │ │ │ │ ├── L_inux M_int.glif │ │ │ │ ├── L_oc-O_S_.glif │ │ │ │ ├── M_A_T_E_.glif │ │ │ │ ├── M_X_ L_inux.glif │ │ │ │ ├── M_ageia.glif │ │ │ │ ├── M_andriva.glif │ │ │ │ ├── M_anjaro.glif │ │ │ │ ├── N_eovim.glif │ │ │ │ ├── N_ixO_S_.glif │ │ │ │ ├── O_S_H_.glif │ │ │ │ ├── O_S_H_W_A_.glif │ │ │ │ ├── O_S_I_.glif │ │ │ │ ├── O_ctoprint.glif │ │ │ │ ├── O_penB_S_D_.glif │ │ │ │ ├── O_penS_C_A_D_.glif │ │ │ │ ├── O_penS_U_S_E_.glif │ │ │ │ ├── P_arabola G_N_U_L_inux-libre.glif │ │ │ │ ├── P_arrot O_S_.glif │ │ │ │ ├── P_op!_O_S_.glif │ │ │ │ ├── P_rusa S_licer.glif │ │ │ │ ├── P_uppy L_inux.glif │ │ │ │ ├── Q_tile.glif │ │ │ │ ├── Q_ubesO_S_.glif │ │ │ │ ├── R_I_S_C_-V_.glif │ │ │ │ ├── R_aspberry pi.glif │ │ │ │ ├── R_ed H_at.glif │ │ │ │ ├── R_epR_ap.glif │ │ │ │ ├── R_ocky L_inux.glif │ │ │ │ ├── S_abayon.glif │ │ │ │ ├── S_lackware (inverse).glif │ │ │ │ ├── S_lackware.glif │ │ │ │ ├── S_nappy.glif │ │ │ │ ├── S_olus.glif │ │ │ │ ├── S_way.glif │ │ │ │ ├── T_ails.glif │ │ │ │ ├── T_hunderbird.glif │ │ │ │ ├── T_or B_rowser.glif │ │ │ │ ├── T_risquel G_N_U_L_inux.glif │ │ │ │ ├── T_ux.glif │ │ │ │ ├── U_buntu (inverse).glif │ │ │ │ ├── U_buntu.glif │ │ │ │ ├── V_S_ C_odium.glif │ │ │ │ ├── V_anilla O_S_.glif │ │ │ │ ├── V_oid.glif │ │ │ │ ├── W_ayland.glif │ │ │ │ ├── W_ikimedia.glif │ │ │ │ ├── X_F_C_E_.glif │ │ │ │ ├── X_eroL_inux.glif │ │ │ │ ├── X_monad.glif │ │ │ │ ├── X_org.glif │ │ │ │ ├── Z_orin O_S_.glif │ │ │ │ ├── bspwm.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── dwm.glif │ │ │ │ ├── elementary O_S_.glif │ │ │ │ ├── freedesktop.org.glif │ │ │ │ ├── i3.glif │ │ │ │ ├── illumos.glif │ │ │ │ └── mpv.glif │ │ │ ├── glyphs.public.background/ │ │ │ │ ├── T_ux.glif │ │ │ │ └── contents.plist │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── font_awesome_LICENSE.txt │ │ ├── materialDesign_LICENSE.txt │ │ ├── octicons.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── accessibility-inset.glif │ │ │ │ ├── accessibility.glif │ │ │ │ ├── alert-fill.glif │ │ │ │ ├── alert.glif │ │ │ │ ├── apps.glif │ │ │ │ ├── archive.glif │ │ │ │ ├── arrow-both.glif │ │ │ │ ├── arrow-down-left.glif │ │ │ │ ├── arrow-down-right.glif │ │ │ │ ├── arrow-down.glif │ │ │ │ ├── arrow-left.glif │ │ │ │ ├── arrow-right.glif │ │ │ │ ├── arrow-switch.glif │ │ │ │ ├── arrow-up-left.glif │ │ │ │ ├── arrow-up-right.glif │ │ │ │ ├── arrow-up.glif │ │ │ │ ├── beaker.glif │ │ │ │ ├── bell-fill.glif │ │ │ │ ├── bell-slash.glif │ │ │ │ ├── bell.glif │ │ │ │ ├── blocked.glif │ │ │ │ ├── bold.glif │ │ │ │ ├── book.glif │ │ │ │ ├── bookmark-fill.glif │ │ │ │ ├── bookmark-slash-fill.glif │ │ │ │ ├── bookmark-slash.glif │ │ │ │ ├── bookmark.glif │ │ │ │ ├── briefcase.glif │ │ │ │ ├── broadcast.glif │ │ │ │ ├── browser.glif │ │ │ │ ├── bug.glif │ │ │ │ ├── cache.glif │ │ │ │ ├── calendar.glif │ │ │ │ ├── check-circle-fill.glif │ │ │ │ ├── check-circle.glif │ │ │ │ ├── check.glif │ │ │ │ ├── checkbox.glif │ │ │ │ ├── checklist.glif │ │ │ │ ├── chevron-down.glif │ │ │ │ ├── chevron-left.glif │ │ │ │ ├── chevron-right.glif │ │ │ │ ├── chevron-up.glif │ │ │ │ ├── circle-slash.glif │ │ │ │ ├── circle.glif │ │ │ │ ├── clock-fill.glif │ │ │ │ ├── clock.glif │ │ │ │ ├── cloud-offline.glif │ │ │ │ ├── cloud.glif │ │ │ │ ├── code-of-conduct.glif │ │ │ │ ├── code-review.glif │ │ │ │ ├── code-square.glif │ │ │ │ ├── code.glif │ │ │ │ ├── codescan-checkmark.glif │ │ │ │ ├── codescan.glif │ │ │ │ ├── codespaces.glif │ │ │ │ ├── columns.glif │ │ │ │ ├── command-palette.glif │ │ │ │ ├── comment-discussion.glif │ │ │ │ ├── comment.glif │ │ │ │ ├── commit.glif │ │ │ │ ├── container.glif │ │ │ │ ├── contents.plist │ │ │ │ ├── copilot-error.glif │ │ │ │ ├── copilot-warning.glif │ │ │ │ ├── copilot.glif │ │ │ │ ├── copy.glif │ │ │ │ ├── cpu.glif │ │ │ │ ├── credit-card.glif │ │ │ │ ├── cross-reference.glif │ │ │ │ ├── dash.glif │ │ │ │ ├── database.glif │ │ │ │ ├── dependabot.glif │ │ │ │ ├── desktop-download.glif │ │ │ │ ├── device-camera-video.glif │ │ │ │ ├── device-camera.glif │ │ │ │ ├── device-desktop.glif │ │ │ │ ├── device-mobile.glif │ │ │ │ ├── diamond.glif │ │ │ │ ├── diff-added.glif │ │ │ │ ├── diff-ignored.glif │ │ │ │ ├── diff-modified.glif │ │ │ │ ├── diff-removed.glif │ │ │ │ ├── diff-renamed.glif │ │ │ │ ├── diff.glif │ │ │ │ ├── discussion-closed.glif │ │ │ │ ├── discussion-duplicate.glif │ │ │ │ ├── discussion-outdated.glif │ │ │ │ ├── dot-fill.glif │ │ │ │ ├── dot.glif │ │ │ │ ├── download.glif │ │ │ │ ├── duplicate.glif │ │ │ │ ├── ellipsis.glif │ │ │ │ ├── eye-closed.glif │ │ │ │ ├── eye.glif │ │ │ │ ├── feed-discussion.glif │ │ │ │ ├── feed-forked.glif │ │ │ │ ├── feed-heart.glif │ │ │ │ ├── feed-merged.glif │ │ │ │ ├── feed-person.glif │ │ │ │ ├── feed-repo.glif │ │ │ │ ├── feed-rocket.glif │ │ │ │ ├── feed-star.glif │ │ │ │ ├── feed-tag.glif │ │ │ │ ├── feed-trophy.glif │ │ │ │ ├── file-added.glif │ │ │ │ ├── file-badge.glif │ │ │ │ ├── file-binary.glif │ │ │ │ ├── file-code.glif │ │ │ │ ├── file-diff.glif │ │ │ │ ├── file-directory-fill.glif │ │ │ │ ├── file-directory-open-fill.glif │ │ │ │ ├── file-directory.glif │ │ │ │ ├── file-media.glif │ │ │ │ ├── file-moved.glif │ │ │ │ ├── file-removed.glif │ │ │ │ ├── file-submodule.glif │ │ │ │ ├── file-symlink-directory.glif │ │ │ │ ├── file-symlink-file.glif │ │ │ │ ├── file-zip.glif │ │ │ │ ├── file.glif │ │ │ │ ├── filter.glif │ │ │ │ ├── fiscal-host.glif │ │ │ │ ├── flame.glif │ │ │ │ ├── fold-down.glif │ │ │ │ ├── fold-up.glif │ │ │ │ ├── fold.glif │ │ │ │ ├── gear.glif │ │ │ │ ├── gift.glif │ │ │ │ ├── git-branch.glif │ │ │ │ ├── git-commit.glif │ │ │ │ ├── git-compare.glif │ │ │ │ ├── git-merge-queue.glif │ │ │ │ ├── git-merge.glif │ │ │ │ ├── git-pull-request-closed.glif │ │ │ │ ├── git-pull-request-draft.glif │ │ │ │ ├── git-pull-request.glif │ │ │ │ ├── globe.glif │ │ │ │ ├── goal.glif │ │ │ │ ├── grabber.glif │ │ │ │ ├── graph.glif │ │ │ │ ├── hash.glif │ │ │ │ ├── heading.glif │ │ │ │ ├── heart-fill.glif │ │ │ │ ├── heart.glif │ │ │ │ ├── history.glif │ │ │ │ ├── home-fill.glif │ │ │ │ ├── home.glif │ │ │ │ ├── horizontal-rule.glif │ │ │ │ ├── hourglass.glif │ │ │ │ ├── hubot.glif │ │ │ │ ├── id-badge.glif │ │ │ │ ├── image.glif │ │ │ │ ├── inbox.glif │ │ │ │ ├── infinity.glif │ │ │ │ ├── info.glif │ │ │ │ ├── issue-closed.glif │ │ │ │ ├── issue-draft.glif │ │ │ │ ├── issue-opened.glif │ │ │ │ ├── issue-reopened.glif │ │ │ │ ├── issue-tracked-by.glif │ │ │ │ ├── issue-tracks.glif │ │ │ │ ├── italic.glif │ │ │ │ ├── iterations.glif │ │ │ │ ├── kebab-horizontal.glif │ │ │ │ ├── key-asterisk.glif │ │ │ │ ├── key.glif │ │ │ │ ├── law.glif │ │ │ │ ├── light-bulb.glif │ │ │ │ ├── link-external.glif │ │ │ │ ├── link.glif │ │ │ │ ├── list-ordered.glif │ │ │ │ ├── list-unordered.glif │ │ │ │ ├── location.glif │ │ │ │ ├── lock.glif │ │ │ │ ├── log.glif │ │ │ │ ├── logo-gist.glif │ │ │ │ ├── logo-github.glif │ │ │ │ ├── mail.glif │ │ │ │ ├── mark-github.glif │ │ │ │ ├── markdown.glif │ │ │ │ ├── megaphone.glif │ │ │ │ ├── mention.glif │ │ │ │ ├── meter.glif │ │ │ │ ├── milestone.glif │ │ │ │ ├── mirror.glif │ │ │ │ ├── moon.glif │ │ │ │ ├── mortar-board.glif │ │ │ │ ├── move-to-bottom.glif │ │ │ │ ├── move-to-end.glif │ │ │ │ ├── move-to-start.glif │ │ │ │ ├── move-to-top.glif │ │ │ │ ├── multi-select.glif │ │ │ │ ├── mute.glif │ │ │ │ ├── no-entry.glif │ │ │ │ ├── north-star.glif │ │ │ │ ├── note.glif │ │ │ │ ├── number.glif │ │ │ │ ├── organization.glif │ │ │ │ ├── package-dependencies.glif │ │ │ │ ├── package-dependents.glif │ │ │ │ ├── package.glif │ │ │ │ ├── paintbrush.glif │ │ │ │ ├── paper-airplane.glif │ │ │ │ ├── paperclip.glif │ │ │ │ ├── passkey-fill.glif │ │ │ │ ├── paste.glif │ │ │ │ ├── pencil.glif │ │ │ │ ├── people.glif │ │ │ │ ├── person-add.glif │ │ │ │ ├── person-fill.glif │ │ │ │ ├── person.glif │ │ │ │ ├── pin.glif │ │ │ │ ├── play.glif │ │ │ │ ├── plug.glif │ │ │ │ ├── plus-circle.glif │ │ │ │ ├── plus.glif │ │ │ │ ├── project-roadmap.glif │ │ │ │ ├── project-symlink.glif │ │ │ │ ├── project-template.glif │ │ │ │ ├── project.glif │ │ │ │ ├── pulse.glif │ │ │ │ ├── question.glif │ │ │ │ ├── quote.glif │ │ │ │ ├── read.glif │ │ │ │ ├── rel-file-path.glif │ │ │ │ ├── reply.glif │ │ │ │ ├── repo-clone.glif │ │ │ │ ├── repo-deleted.glif │ │ │ │ ├── repo-forked.glif │ │ │ │ ├── repo-locked.glif │ │ │ │ ├── repo-pull.glif │ │ │ │ ├── repo-push.glif │ │ │ │ ├── repo-template.glif │ │ │ │ ├── repo.glif │ │ │ │ ├── report.glif │ │ │ │ ├── rocket.glif │ │ │ │ ├── rows.glif │ │ │ │ ├── rss.glif │ │ │ │ ├── ruby.glif │ │ │ │ ├── screen-full.glif │ │ │ │ ├── screen-normal.glif │ │ │ │ ├── search.glif │ │ │ │ ├── server.glif │ │ │ │ ├── share-android.glif │ │ │ │ ├── share.glif │ │ │ │ ├── shield-check.glif │ │ │ │ ├── shield-lock.glif │ │ │ │ ├── shield-slash.glif │ │ │ │ ├── shield-x.glif │ │ │ │ ├── shield.glif │ │ │ │ ├── sidebar-collapse.glif │ │ │ │ ├── sidebar-expand.glif │ │ │ │ ├── sign-in.glif │ │ │ │ ├── sign-out.glif │ │ │ │ ├── single-select.glif │ │ │ │ ├── skip-fill.glif │ │ │ │ ├── skip.glif │ │ │ │ ├── sliders.glif │ │ │ │ ├── smiley.glif │ │ │ │ ├── sort-asc.glif │ │ │ │ ├── sort-desc.glif │ │ │ │ ├── sparkle-fill.glif │ │ │ │ ├── sponsor-tiers.glif │ │ │ │ ├── square-fill.glif │ │ │ │ ├── square.glif │ │ │ │ ├── squirrel.glif │ │ │ │ ├── stack.glif │ │ │ │ ├── star-fill.glif │ │ │ │ ├── star.glif │ │ │ │ ├── stop.glif │ │ │ │ ├── stopwatch.glif │ │ │ │ ├── strikethrough.glif │ │ │ │ ├── sun.glif │ │ │ │ ├── sync.glif │ │ │ │ ├── tab-external.glif │ │ │ │ ├── tab.glif │ │ │ │ ├── table.glif │ │ │ │ ├── tag.glif │ │ │ │ ├── tasklist.glif │ │ │ │ ├── telescope-fill.glif │ │ │ │ ├── telescope.glif │ │ │ │ ├── terminal.glif │ │ │ │ ├── three-bars.glif │ │ │ │ ├── thumbsdown.glif │ │ │ │ ├── thumbsup.glif │ │ │ │ ├── tools.glif │ │ │ │ ├── trash.glif │ │ │ │ ├── triangle-down.glif │ │ │ │ ├── triangle-left.glif │ │ │ │ ├── triangle-right.glif │ │ │ │ ├── triangle-up.glif │ │ │ │ ├── trophy.glif │ │ │ │ ├── typography.glif │ │ │ │ ├── unfold.glif │ │ │ │ ├── unlink.glif │ │ │ │ ├── unlock.glif │ │ │ │ ├── unmute.glif │ │ │ │ ├── unread.glif │ │ │ │ ├── unverified.glif │ │ │ │ ├── upload.glif │ │ │ │ ├── verified.glif │ │ │ │ ├── versions.glif │ │ │ │ ├── video.glif │ │ │ │ ├── webhook.glif │ │ │ │ ├── workflow.glif │ │ │ │ ├── x-circle-fill.glif │ │ │ │ ├── x-circle.glif │ │ │ │ ├── x.glif │ │ │ │ ├── zap.glif │ │ │ │ ├── zoom-in.glif │ │ │ │ └── zoom-out.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── octicons_LICENSE.txt │ │ ├── original-source.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── contents.plist │ │ │ │ ├── i_custom_asm.glif │ │ │ │ ├── i_custom_c.glif │ │ │ │ ├── i_custom_common_lisp.glif │ │ │ │ ├── i_custom_cpp.glif │ │ │ │ ├── i_custom_crystal.glif │ │ │ │ ├── i_custom_default.glif │ │ │ │ ├── i_custom_electron.glif │ │ │ │ ├── i_custom_elixir.glif │ │ │ │ ├── i_custom_elm.glif │ │ │ │ ├── i_custom_emacs.glif │ │ │ │ ├── i_custom_fennel.glif │ │ │ │ ├── i_custom_folder.glif │ │ │ │ ├── i_custom_folder_config.glif │ │ │ │ ├── i_custom_folder_git.glif │ │ │ │ ├── i_custom_folder_github.glif │ │ │ │ ├── i_custom_folder_npm.glif │ │ │ │ ├── i_custom_folder_oct.glif │ │ │ │ ├── i_custom_folder_open.glif │ │ │ │ ├── i_custom_go.glif │ │ │ │ ├── i_custom_home.glif │ │ │ │ ├── i_custom_kotlin.glif │ │ │ │ ├── i_custom_msdos.glif │ │ │ │ ├── i_custom_neovim.glif │ │ │ │ ├── i_custom_orgmode.glif │ │ │ │ ├── i_custom_play_arrow.glif │ │ │ │ ├── i_custom_purescript.glif │ │ │ │ ├── i_custom_scheme.glif │ │ │ │ ├── i_custom_toml.glif │ │ │ │ ├── i_custom_v_lang.glif │ │ │ │ ├── i_custom_vim.glif │ │ │ │ ├── i_custom_windows.glif │ │ │ │ ├── i_indent_line.glif │ │ │ │ ├── i_seti_apple.glif │ │ │ │ ├── i_seti_argdown.glif │ │ │ │ ├── i_seti_asm.glif │ │ │ │ ├── i_seti_audio.glif │ │ │ │ ├── i_seti_babel.glif │ │ │ │ ├── i_seti_bazel.glif │ │ │ │ ├── i_seti_bicep.glif │ │ │ │ ├── i_seti_bower.glif │ │ │ │ ├── i_seti_bsl.glif │ │ │ │ ├── i_seti_c.glif │ │ │ │ ├── i_seti_c_sharp.glif │ │ │ │ ├── i_seti_cake.glif │ │ │ │ ├── i_seti_cake_php.glif │ │ │ │ ├── i_seti_checkbox.glif │ │ │ │ ├── i_seti_checkbox_unchecked.glif │ │ │ │ ├── i_seti_clock.glif │ │ │ │ ├── i_seti_clojure.glif │ │ │ │ ├── i_seti_code_climate.glif │ │ │ │ ├── i_seti_code_search.glif │ │ │ │ ├── i_seti_coffee.glif │ │ │ │ ├── i_seti_coldfusion.glif │ │ │ │ ├── i_seti_config.glif │ │ │ │ ├── i_seti_cpp.glif │ │ │ │ ├── i_seti_crystal_embedded.glif │ │ │ │ ├── i_seti_css.glif │ │ │ │ ├── i_seti_csv.glif │ │ │ │ ├── i_seti_cu.glif │ │ │ │ ├── i_seti_d.glif │ │ │ │ ├── i_seti_dart.glif │ │ │ │ ├── i_seti_db.glif │ │ │ │ ├── i_seti_default.glif │ │ │ │ ├── i_seti_deprecation_cop.glif │ │ │ │ ├── i_seti_docker.glif │ │ │ │ ├── i_seti_editorconfig.glif │ │ │ │ ├── i_seti_ejs.glif │ │ │ │ ├── i_seti_elixir_script.glif │ │ │ │ ├── i_seti_error.glif │ │ │ │ ├── i_seti_eslint.glif │ │ │ │ ├── i_seti_ethereum.glif │ │ │ │ ├── i_seti_f_sharp.glif │ │ │ │ ├── i_seti_favicon.glif │ │ │ │ ├── i_seti_firebase.glif │ │ │ │ ├── i_seti_firefox.glif │ │ │ │ ├── i_seti_folder.glif │ │ │ │ ├── i_seti_font.glif │ │ │ │ ├── i_seti_git.glif │ │ │ │ ├── i_seti_github.glif │ │ │ │ ├── i_seti_gitlab.glif │ │ │ │ ├── i_seti_go.glif │ │ │ │ ├── i_seti_go2.glif │ │ │ │ ├── i_seti_godot.glif │ │ │ │ ├── i_seti_gradle.glif │ │ │ │ ├── i_seti_grails.glif │ │ │ │ ├── i_seti_graphql.glif │ │ │ │ ├── i_seti_grunt.glif │ │ │ │ ├── i_seti_gulp.glif │ │ │ │ ├── i_seti_hacklang.glif │ │ │ │ ├── i_seti_haml.glif │ │ │ │ ├── i_seti_happenings.glif │ │ │ │ ├── i_seti_haskell.glif │ │ │ │ ├── i_seti_haxe.glif │ │ │ │ ├── i_seti_heroku.glif │ │ │ │ ├── i_seti_hex.glif │ │ │ │ ├── i_seti_html.glif │ │ │ │ ├── i_seti_ignored.glif │ │ │ │ ├── i_seti_illustrator.glif │ │ │ │ ├── i_seti_image.glif │ │ │ │ ├── i_seti_info.glif │ │ │ │ ├── i_seti_ionic.glif │ │ │ │ ├── i_seti_jade.glif │ │ │ │ ├── i_seti_java.glif │ │ │ │ ├── i_seti_javascript.glif │ │ │ │ ├── i_seti_jenkins.glif │ │ │ │ ├── i_seti_jinja.glif │ │ │ │ ├── i_seti_json.glif │ │ │ │ ├── i_seti_julia.glif │ │ │ │ ├── i_seti_karma.glif │ │ │ │ ├── i_seti_license.glif │ │ │ │ ├── i_seti_liquid.glif │ │ │ │ ├── i_seti_livescript.glif │ │ │ │ ├── i_seti_lock.glif │ │ │ │ ├── i_seti_lua.glif │ │ │ │ ├── i_seti_makefile.glif │ │ │ │ ├── i_seti_markdown.glif │ │ │ │ ├── i_seti_maven.glif │ │ │ │ ├── i_seti_mdo.glif │ │ │ │ ├── i_seti_mustache.glif │ │ │ │ ├── i_seti_new_file.glif │ │ │ │ ├── i_seti_nim.glif │ │ │ │ ├── i_seti_notebook.glif │ │ │ │ ├── i_seti_npm.glif │ │ │ │ ├── i_seti_nunjucks.glif │ │ │ │ ├── i_seti_ocaml.glif │ │ │ │ ├── i_seti_odata.glif │ │ │ │ ├── i_seti_pddl.glif │ │ │ │ ├── i_seti_pdf.glif │ │ │ │ ├── i_seti_perl.glif │ │ │ │ ├── i_seti_photoshop.glif │ │ │ │ ├── i_seti_php.glif │ │ │ │ ├── i_seti_pipeline.glif │ │ │ │ ├── i_seti_plan.glif │ │ │ │ ├── i_seti_platformio.glif │ │ │ │ ├── i_seti_powershell.glif │ │ │ │ ├── i_seti_prisma.glif │ │ │ │ ├── i_seti_project.glif │ │ │ │ ├── i_seti_prolog.glif │ │ │ │ ├── i_seti_pug.glif │ │ │ │ ├── i_seti_puppet.glif │ │ │ │ ├── i_seti_python.glif │ │ │ │ ├── i_seti_r.glif │ │ │ │ ├── i_seti_rails.glif │ │ │ │ ├── i_seti_react.glif │ │ │ │ ├── i_seti_reasonml.glif │ │ │ │ ├── i_seti_rescript.glif │ │ │ │ ├── i_seti_rollup.glif │ │ │ │ ├── i_seti_ruby.glif │ │ │ │ ├── i_seti_rust.glif │ │ │ │ ├── i_seti_salesforce.glif │ │ │ │ ├── i_seti_sass.glif │ │ │ │ ├── i_seti_sbt.glif │ │ │ │ ├── i_seti_scala.glif │ │ │ │ ├── i_seti_search.glif │ │ │ │ ├── i_seti_settings.glif │ │ │ │ ├── i_seti_shell.glif │ │ │ │ ├── i_seti_slim.glif │ │ │ │ ├── i_seti_smarty.glif │ │ │ │ ├── i_seti_spring.glif │ │ │ │ ├── i_seti_stylelint.glif │ │ │ │ ├── i_seti_stylus.glif │ │ │ │ ├── i_seti_sublime.glif │ │ │ │ ├── i_seti_svelte.glif │ │ │ │ ├── i_seti_svg.glif │ │ │ │ ├── i_seti_swift.glif │ │ │ │ ├── i_seti_terraform.glif │ │ │ │ ├── i_seti_tex.glif │ │ │ │ ├── i_seti_todo.glif │ │ │ │ ├── i_seti_tsconfig.glif │ │ │ │ ├── i_seti_twig.glif │ │ │ │ ├── i_seti_typescript.glif │ │ │ │ ├── i_seti_vala.glif │ │ │ │ ├── i_seti_video.glif │ │ │ │ ├── i_seti_vue.glif │ │ │ │ ├── i_seti_wasm.glif │ │ │ │ ├── i_seti_wat.glif │ │ │ │ ├── i_seti_webpack.glif │ │ │ │ ├── i_seti_wgt.glif │ │ │ │ ├── i_seti_word.glif │ │ │ │ ├── i_seti_xls.glif │ │ │ │ ├── i_seti_xml.glif │ │ │ │ ├── i_seti_yarn.glif │ │ │ │ ├── i_seti_yml.glif │ │ │ │ ├── i_seti_zig.glif │ │ │ │ └── i_seti_zip.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── weathericons-regular-webfont.ufo/ │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs/ │ │ │ │ ├── contents.plist │ │ │ │ ├── uniF_000.glif │ │ │ │ ├── uniF_001.glif │ │ │ │ ├── uniF_002.glif │ │ │ │ ├── uniF_003.glif │ │ │ │ ├── uniF_004.glif │ │ │ │ ├── uniF_005.glif │ │ │ │ ├── uniF_006.glif │ │ │ │ ├── uniF_007.glif │ │ │ │ ├── uniF_008.glif │ │ │ │ ├── uniF_009.glif │ │ │ │ ├── uniF_00A_.glif │ │ │ │ ├── uniF_00B_.glif │ │ │ │ ├── uniF_00C_.glif │ │ │ │ ├── uniF_00D_.glif │ │ │ │ ├── uniF_00E_.glif │ │ │ │ ├── uniF_010.glif │ │ │ │ ├── uniF_011.glif │ │ │ │ ├── uniF_012.glif │ │ │ │ ├── uniF_013.glif │ │ │ │ ├── uniF_014.glif │ │ │ │ ├── uniF_015.glif │ │ │ │ ├── uniF_016.glif │ │ │ │ ├── uniF_017.glif │ │ │ │ ├── uniF_018.glif │ │ │ │ ├── uniF_019.glif │ │ │ │ ├── uniF_01A_.glif │ │ │ │ ├── uniF_01B_.glif │ │ │ │ ├── uniF_01C_.glif │ │ │ │ ├── uniF_01D_.glif │ │ │ │ ├── uniF_01E_.glif │ │ │ │ ├── uniF_021.glif │ │ │ │ ├── uniF_022.glif │ │ │ │ ├── uniF_023.glif │ │ │ │ ├── uniF_024.glif │ │ │ │ ├── uniF_025.glif │ │ │ │ ├── uniF_026.glif │ │ │ │ ├── uniF_027.glif │ │ │ │ ├── uniF_028.glif │ │ │ │ ├── uniF_029.glif │ │ │ │ ├── uniF_02A_.glif │ │ │ │ ├── uniF_02B_.glif │ │ │ │ ├── uniF_02C_.glif │ │ │ │ ├── uniF_02D_.glif │ │ │ │ ├── uniF_02E_.glif │ │ │ │ ├── uniF_02F_.glif │ │ │ │ ├── uniF_030.glif │ │ │ │ ├── uniF_031.glif │ │ │ │ ├── uniF_032.glif │ │ │ │ ├── uniF_033.glif │ │ │ │ ├── uniF_034.glif │ │ │ │ ├── uniF_035.glif │ │ │ │ ├── uniF_036.glif │ │ │ │ ├── uniF_037.glif │ │ │ │ ├── uniF_038.glif │ │ │ │ ├── uniF_039.glif │ │ │ │ ├── uniF_03A_.glif │ │ │ │ ├── uniF_03B_.glif │ │ │ │ ├── uniF_03C_.glif │ │ │ │ ├── uniF_03D_.glif │ │ │ │ ├── uniF_03E_.glif │ │ │ │ ├── uniF_040.glif │ │ │ │ ├── uniF_041.glif │ │ │ │ ├── uniF_042.glif │ │ │ │ ├── uniF_043.glif │ │ │ │ ├── uniF_044.glif │ │ │ │ ├── uniF_045.glif │ │ │ │ ├── uniF_046.glif │ │ │ │ ├── uniF_047.glif │ │ │ │ ├── uniF_048.glif │ │ │ │ ├── uniF_049.glif │ │ │ │ ├── uniF_04A_.glif │ │ │ │ ├── uniF_04B_.glif │ │ │ │ ├── uniF_04C_.glif │ │ │ │ ├── uniF_04D_.glif │ │ │ │ ├── uniF_04E_.glif │ │ │ │ ├── uniF_050.glif │ │ │ │ ├── uniF_051.glif │ │ │ │ ├── uniF_052.glif │ │ │ │ ├── uniF_053.glif │ │ │ │ ├── uniF_054.glif │ │ │ │ ├── uniF_055.glif │ │ │ │ ├── uniF_056.glif │ │ │ │ ├── uniF_057.glif │ │ │ │ ├── uniF_058.glif │ │ │ │ ├── uniF_059.glif │ │ │ │ ├── uniF_05A_.glif │ │ │ │ ├── uniF_05B_.glif │ │ │ │ ├── uniF_05C_.glif │ │ │ │ ├── uniF_05D_.glif │ │ │ │ ├── uniF_05E_.glif │ │ │ │ ├── uniF_060.glif │ │ │ │ ├── uniF_061.glif │ │ │ │ ├── uniF_062.glif │ │ │ │ ├── uniF_063.glif │ │ │ │ ├── uniF_064.glif │ │ │ │ ├── uniF_065.glif │ │ │ │ ├── uniF_066.glif │ │ │ │ ├── uniF_067.glif │ │ │ │ ├── uniF_068.glif │ │ │ │ ├── uniF_069.glif │ │ │ │ ├── uniF_06A_.glif │ │ │ │ ├── uniF_06B_.glif │ │ │ │ ├── uniF_06C_.glif │ │ │ │ ├── uniF_06D_.glif │ │ │ │ ├── uniF_06E_.glif │ │ │ │ ├── uniF_070.glif │ │ │ │ ├── uniF_071.glif │ │ │ │ ├── uniF_072.glif │ │ │ │ ├── uniF_073.glif │ │ │ │ ├── uniF_074.glif │ │ │ │ ├── uniF_075.glif │ │ │ │ ├── uniF_076.glif │ │ │ │ ├── uniF_077.glif │ │ │ │ ├── uniF_078.glif │ │ │ │ ├── uniF_079.glif │ │ │ │ ├── uniF_07A_.glif │ │ │ │ ├── uniF_07B_.glif │ │ │ │ ├── uniF_07C_.glif │ │ │ │ ├── uniF_07D_.glif │ │ │ │ ├── uniF_07E_.glif │ │ │ │ ├── uniF_080.glif │ │ │ │ ├── uniF_081.glif │ │ │ │ ├── uniF_082.glif │ │ │ │ ├── uniF_083.glif │ │ │ │ ├── uniF_084.glif │ │ │ │ ├── uniF_085.glif │ │ │ │ ├── uniF_086.glif │ │ │ │ ├── uniF_087.glif │ │ │ │ ├── uniF_088.glif │ │ │ │ ├── uniF_089.glif │ │ │ │ ├── uniF_08A_.glif │ │ │ │ ├── uniF_08B_.glif │ │ │ │ ├── uniF_08C_.glif │ │ │ │ ├── uniF_08D_.glif │ │ │ │ ├── uniF_08E_.glif │ │ │ │ ├── uniF_08F_.glif │ │ │ │ ├── uniF_090.glif │ │ │ │ ├── uniF_091.glif │ │ │ │ ├── uniF_092.glif │ │ │ │ ├── uniF_093.glif │ │ │ │ ├── uniF_094.glif │ │ │ │ ├── uniF_095.glif │ │ │ │ ├── uniF_096.glif │ │ │ │ ├── uniF_097.glif │ │ │ │ ├── uniF_098.glif │ │ │ │ ├── uniF_099.glif │ │ │ │ ├── uniF_09A_.glif │ │ │ │ ├── uniF_09B_.glif │ │ │ │ ├── uniF_09C_.glif │ │ │ │ ├── uniF_09D_.glif │ │ │ │ ├── uniF_09E_.glif │ │ │ │ ├── uniF_09F_.glif │ │ │ │ ├── uniF_0A_0.glif │ │ │ │ ├── uniF_0A_1.glif │ │ │ │ ├── uniF_0A_2.glif │ │ │ │ ├── uniF_0A_3.glif │ │ │ │ ├── uniF_0A_4.glif │ │ │ │ ├── uniF_0A_5.glif │ │ │ │ ├── uniF_0A_6.glif │ │ │ │ ├── uniF_0A_7.glif │ │ │ │ ├── uniF_0A_8.glif │ │ │ │ ├── uniF_0A_9.glif │ │ │ │ ├── uniF_0A_A_.glif │ │ │ │ ├── uniF_0A_B_.glif │ │ │ │ ├── uniF_0A_C_.glif │ │ │ │ ├── uniF_0A_D_.glif │ │ │ │ ├── uniF_0A_E_.glif │ │ │ │ ├── uniF_0A_F_.glif │ │ │ │ ├── uniF_0B_0.glif │ │ │ │ ├── uniF_0B_1.glif │ │ │ │ ├── uniF_0B_2.glif │ │ │ │ ├── uniF_0B_3.glif │ │ │ │ ├── uniF_0B_4.glif │ │ │ │ ├── uniF_0B_5.glif │ │ │ │ ├── uniF_0B_6.glif │ │ │ │ ├── uniF_0B_7.glif │ │ │ │ ├── uniF_0B_8.glif │ │ │ │ ├── uniF_0B_9.glif │ │ │ │ ├── uniF_0B_A_.glif │ │ │ │ ├── uniF_0B_B_.glif │ │ │ │ ├── uniF_0B_C_.glif │ │ │ │ ├── uniF_0B_D_.glif │ │ │ │ ├── uniF_0B_E_.glif │ │ │ │ ├── uniF_0B_F_.glif │ │ │ │ ├── uniF_0C_0.glif │ │ │ │ ├── uniF_0C_1.glif │ │ │ │ ├── uniF_0C_2.glif │ │ │ │ ├── uniF_0C_3.glif │ │ │ │ ├── uniF_0C_4.glif │ │ │ │ ├── uniF_0C_5.glif │ │ │ │ ├── uniF_0C_6.glif │ │ │ │ ├── uniF_0C_7.glif │ │ │ │ ├── uniF_0C_8.glif │ │ │ │ ├── uniF_0C_9.glif │ │ │ │ ├── uniF_0C_A_.glif │ │ │ │ ├── uniF_0C_B_.glif │ │ │ │ ├── uniF_0C_C_.glif │ │ │ │ ├── uniF_0C_D_.glif │ │ │ │ ├── uniF_0C_E_.glif │ │ │ │ ├── uniF_0C_F_.glif │ │ │ │ ├── uniF_0D_0.glif │ │ │ │ ├── uniF_0D_1.glif │ │ │ │ ├── uniF_0D_2.glif │ │ │ │ ├── uniF_0D_3.glif │ │ │ │ ├── uniF_0D_4.glif │ │ │ │ ├── uniF_0D_5.glif │ │ │ │ ├── uniF_0D_6.glif │ │ │ │ ├── uniF_0D_7.glif │ │ │ │ ├── uniF_0D_8.glif │ │ │ │ ├── uniF_0D_9.glif │ │ │ │ ├── uniF_0D_A_.glif │ │ │ │ ├── uniF_0D_B_.glif │ │ │ │ ├── uniF_0D_C_.glif │ │ │ │ ├── uniF_0D_D_.glif │ │ │ │ ├── uniF_0D_E_.glif │ │ │ │ ├── uniF_0D_F_.glif │ │ │ │ ├── uniF_0E_0.glif │ │ │ │ ├── uniF_0E_1.glif │ │ │ │ ├── uniF_0E_2.glif │ │ │ │ ├── uniF_0E_3.glif │ │ │ │ ├── uniF_0E_4.glif │ │ │ │ ├── uniF_0E_5.glif │ │ │ │ ├── uniF_0E_6.glif │ │ │ │ ├── uniF_0E_7.glif │ │ │ │ ├── uniF_0E_8.glif │ │ │ │ ├── uniF_0E_9.glif │ │ │ │ ├── uniF_0E_A_.glif │ │ │ │ └── uniF_0E_B_.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ └── weathericons_OFL.txt │ ├── process.py │ └── processed/ │ ├── FontAwesome.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── _279.glif │ │ │ ├── _283.glif │ │ │ ├── _303.glif │ │ │ ├── _312.glif │ │ │ ├── _317.glif │ │ │ ├── _329.glif │ │ │ ├── _334.glif │ │ │ ├── _335.glif │ │ │ ├── _366.glif │ │ │ ├── _372.glif │ │ │ ├── _374.glif │ │ │ ├── _376.glif │ │ │ ├── _378.glif │ │ │ ├── _380.glif │ │ │ ├── _382.glif │ │ │ ├── _383.glif │ │ │ ├── _384.glif │ │ │ ├── _385.glif │ │ │ ├── _386.glif │ │ │ ├── _387.glif │ │ │ ├── _388.glif │ │ │ ├── _389.glif │ │ │ ├── _392.glif │ │ │ ├── _393.glif │ │ │ ├── _395.glif │ │ │ ├── _396.glif │ │ │ ├── _397.glif │ │ │ ├── _398.glif │ │ │ ├── _399.glif │ │ │ ├── _400.glif │ │ │ ├── _402.glif │ │ │ ├── _403.glif │ │ │ ├── _404.glif │ │ │ ├── _406.glif │ │ │ ├── _407.glif │ │ │ ├── _408.glif │ │ │ ├── _409.glif │ │ │ ├── _410.glif │ │ │ ├── _411.glif │ │ │ ├── _412.glif │ │ │ ├── _413.glif │ │ │ ├── _414.glif │ │ │ ├── _415.glif │ │ │ ├── _416.glif │ │ │ ├── _417.glif │ │ │ ├── _418.glif │ │ │ ├── _419.glif │ │ │ ├── _422.glif │ │ │ ├── _423.glif │ │ │ ├── _424.glif │ │ │ ├── _425.glif │ │ │ ├── _426.glif │ │ │ ├── _427.glif │ │ │ ├── _428.glif │ │ │ ├── _429.glif │ │ │ ├── _430.glif │ │ │ ├── _431.glif │ │ │ ├── _432.glif │ │ │ ├── _433.glif │ │ │ ├── _434.glif │ │ │ ├── _438.glif │ │ │ ├── _439.glif │ │ │ ├── _443.glif │ │ │ ├── _444.glif │ │ │ ├── _445.glif │ │ │ ├── _446.glif │ │ │ ├── _447.glif │ │ │ ├── _448.glif │ │ │ ├── _449.glif │ │ │ ├── _451.glif │ │ │ ├── _452.glif │ │ │ ├── _453.glif │ │ │ ├── _454.glif │ │ │ ├── _455.glif │ │ │ ├── _456.glif │ │ │ ├── _457.glif │ │ │ ├── _458.glif │ │ │ ├── _459.glif │ │ │ ├── _460.glif │ │ │ ├── _461.glif │ │ │ ├── _462.glif │ │ │ ├── _463.glif │ │ │ ├── _464.glif │ │ │ ├── _466.glif │ │ │ ├── _467.glif │ │ │ ├── _469.glif │ │ │ ├── _470.glif │ │ │ ├── _471.glif │ │ │ ├── _472.glif │ │ │ ├── _473.glif │ │ │ ├── _474.glif │ │ │ ├── _475.glif │ │ │ ├── _476.glif │ │ │ ├── _478.glif │ │ │ ├── _479.glif │ │ │ ├── _480.glif │ │ │ ├── _481.glif │ │ │ ├── _482.glif │ │ │ ├── _483.glif │ │ │ ├── _484.glif │ │ │ ├── _485.glif │ │ │ ├── _486.glif │ │ │ ├── _487.glif │ │ │ ├── _488.glif │ │ │ ├── _489.glif │ │ │ ├── _490.glif │ │ │ ├── _491.glif │ │ │ ├── _492.glif │ │ │ ├── _493.glif │ │ │ ├── _494.glif │ │ │ ├── _496.glif │ │ │ ├── _498.glif │ │ │ ├── _499.glif │ │ │ ├── _500.glif │ │ │ ├── _501.glif │ │ │ ├── _502.glif │ │ │ ├── _503.glif │ │ │ ├── _504.glif │ │ │ ├── _505.glif │ │ │ ├── _506.glif │ │ │ ├── _507.glif │ │ │ ├── _508.glif │ │ │ ├── _509.glif │ │ │ ├── _511.glif │ │ │ ├── _512.glif │ │ │ ├── _513.glif │ │ │ ├── _514.glif │ │ │ ├── _515.glif │ │ │ ├── _516.glif │ │ │ ├── _517.glif │ │ │ ├── _518.glif │ │ │ ├── _519.glif │ │ │ ├── _520.glif │ │ │ ├── _521.glif │ │ │ ├── _522.glif │ │ │ ├── _523.glif │ │ │ ├── _524.glif │ │ │ ├── _525.glif │ │ │ ├── _526.glif │ │ │ ├── _527.glif │ │ │ ├── _528.glif │ │ │ ├── _529.glif │ │ │ ├── _530.glif │ │ │ ├── _531.glif │ │ │ ├── _532.glif │ │ │ ├── _533.glif │ │ │ ├── _534.glif │ │ │ ├── _535.glif │ │ │ ├── _536.glif │ │ │ ├── _537.glif │ │ │ ├── _538.glif │ │ │ ├── _539.glif │ │ │ ├── _540.glif │ │ │ ├── _541.glif │ │ │ ├── _542.glif │ │ │ ├── _543.glif │ │ │ ├── _544.glif │ │ │ ├── _545.glif │ │ │ ├── _546.glif │ │ │ ├── _547.glif │ │ │ ├── _548.glif │ │ │ ├── _549.glif │ │ │ ├── _550.glif │ │ │ ├── _551.glif │ │ │ ├── _552.glif │ │ │ ├── _553.glif │ │ │ ├── _554.glif │ │ │ ├── _555.glif │ │ │ ├── _556.glif │ │ │ ├── _557.glif │ │ │ ├── _558.glif │ │ │ ├── _559.glif │ │ │ ├── _560.glif │ │ │ ├── _561.glif │ │ │ ├── _562.glif │ │ │ ├── _563.glif │ │ │ ├── _564.glif │ │ │ ├── _565.glif │ │ │ ├── _566.glif │ │ │ ├── _567.glif │ │ │ ├── _568.glif │ │ │ ├── _569.glif │ │ │ ├── _572.glif │ │ │ ├── _574.glif │ │ │ ├── _575.glif │ │ │ ├── _576.glif │ │ │ ├── _577.glif │ │ │ ├── _578.glif │ │ │ ├── _579.glif │ │ │ ├── _580.glif │ │ │ ├── _581.glif │ │ │ ├── _582.glif │ │ │ ├── _583.glif │ │ │ ├── _584.glif │ │ │ ├── _585.glif │ │ │ ├── _586.glif │ │ │ ├── _587.glif │ │ │ ├── _588.glif │ │ │ ├── _589.glif │ │ │ ├── _590.glif │ │ │ ├── _591.glif │ │ │ ├── _592.glif │ │ │ ├── _593.glif │ │ │ ├── _594.glif │ │ │ ├── _595.glif │ │ │ ├── _596.glif │ │ │ ├── _597.glif │ │ │ ├── _598.glif │ │ │ ├── _602.glif │ │ │ ├── _603.glif │ │ │ ├── _604.glif │ │ │ ├── _607.glif │ │ │ ├── _608.glif │ │ │ ├── _609.glif │ │ │ ├── _610.glif │ │ │ ├── _611.glif │ │ │ ├── _612.glif │ │ │ ├── _613.glif │ │ │ ├── _614.glif │ │ │ ├── _615.glif │ │ │ ├── _616.glif │ │ │ ├── _617.glif │ │ │ ├── _618.glif │ │ │ ├── _619.glif │ │ │ ├── _620.glif │ │ │ ├── _621.glif │ │ │ ├── _622.glif │ │ │ ├── _623.glif │ │ │ ├── _624.glif │ │ │ ├── _625.glif │ │ │ ├── _626.glif │ │ │ ├── _627.glif │ │ │ ├── _628.glif │ │ │ ├── _629.glif │ │ │ ├── adjust.glif │ │ │ ├── adn.glif │ │ │ ├── align_center.glif │ │ │ ├── align_justify.glif │ │ │ ├── align_left.glif │ │ │ ├── align_right.glif │ │ │ ├── ambulance.glif │ │ │ ├── anchor.glif │ │ │ ├── android.glif │ │ │ ├── angle_down.glif │ │ │ ├── angle_left.glif │ │ │ ├── angle_right.glif │ │ │ ├── angle_up.glif │ │ │ ├── apple.glif │ │ │ ├── archive.glif │ │ │ ├── arrow_circle_alt_left.glif │ │ │ ├── arrow_down.glif │ │ │ ├── arrow_left.glif │ │ │ ├── arrow_right.glif │ │ │ ├── arrow_up.glif │ │ │ ├── asterisk.glif │ │ │ ├── backward.glif │ │ │ ├── ban_circle.glif │ │ │ ├── bar_chart.glif │ │ │ ├── barcode.glif │ │ │ ├── beaker.glif │ │ │ ├── beer.glif │ │ │ ├── bell.glif │ │ │ ├── bell_alt.glif │ │ │ ├── bitbucket_sign.glif │ │ │ ├── bold.glif │ │ │ ├── bolt.glif │ │ │ ├── book.glif │ │ │ ├── bookmark.glif │ │ │ ├── bookmark_empty.glif │ │ │ ├── briefcase.glif │ │ │ ├── btc.glif │ │ │ ├── bug.glif │ │ │ ├── building.glif │ │ │ ├── bullhorn.glif │ │ │ ├── bullseye.glif │ │ │ ├── calendar.glif │ │ │ ├── calendar_empty.glif │ │ │ ├── camera.glif │ │ │ ├── camera_retro.glif │ │ │ ├── caret_down.glif │ │ │ ├── caret_left.glif │ │ │ ├── caret_right.glif │ │ │ ├── caret_up.glif │ │ │ ├── certificate.glif │ │ │ ├── check.glif │ │ │ ├── check_empty.glif │ │ │ ├── check_minus.glif │ │ │ ├── check_sign.glif │ │ │ ├── chevron_down.glif │ │ │ ├── chevron_left.glif │ │ │ ├── chevron_right.glif │ │ │ ├── chevron_sign_down.glif │ │ │ ├── chevron_sign_left.glif │ │ │ ├── chevron_sign_right.glif │ │ │ ├── chevron_sign_up.glif │ │ │ ├── chevron_up.glif │ │ │ ├── circle.glif │ │ │ ├── circle_arrow_down.glif │ │ │ ├── circle_arrow_left.glif │ │ │ ├── circle_arrow_right.glif │ │ │ ├── circle_arrow_up.glif │ │ │ ├── circle_blank.glif │ │ │ ├── cloud.glif │ │ │ ├── cloud_download.glif │ │ │ ├── cloud_upload.glif │ │ │ ├── code.glif │ │ │ ├── code_fork.glif │ │ │ ├── coffee.glif │ │ │ ├── cog.glif │ │ │ ├── cogs.glif │ │ │ ├── collapse.glif │ │ │ ├── collapse_alt.glif │ │ │ ├── collapse_top.glif │ │ │ ├── columns.glif │ │ │ ├── comment.glif │ │ │ ├── comment_alt.glif │ │ │ ├── comments.glif │ │ │ ├── comments_alt.glif │ │ │ ├── compass.glif │ │ │ ├── contents.plist │ │ │ ├── copy.glif │ │ │ ├── credit_card.glif │ │ │ ├── crop.glif │ │ │ ├── css3.glif │ │ │ ├── cut.glif │ │ │ ├── dashboard.glif │ │ │ ├── desktop.glif │ │ │ ├── dot_circle_alt.glif │ │ │ ├── double_angle_down.glif │ │ │ ├── double_angle_left.glif │ │ │ ├── double_angle_right.glif │ │ │ ├── double_angle_up.glif │ │ │ ├── download.glif │ │ │ ├── download_alt.glif │ │ │ ├── dribble.glif │ │ │ ├── dropbox.glif │ │ │ ├── edit.glif │ │ │ ├── edit_sign.glif │ │ │ ├── eject.glif │ │ │ ├── ellipsis_horizontal.glif │ │ │ ├── ellipsis_vertical.glif │ │ │ ├── envelope.glif │ │ │ ├── envelope_alt.glif │ │ │ ├── eur.glif │ │ │ ├── exchange.glif │ │ │ ├── exclamation.glif │ │ │ ├── exclamation_sign.glif │ │ │ ├── expand_alt.glif │ │ │ ├── external_link.glif │ │ │ ├── eye_close.glif │ │ │ ├── eye_open.glif │ │ │ ├── f0fe.glif │ │ │ ├── f171.glif │ │ │ ├── f1a1.glif │ │ │ ├── f1a4.glif │ │ │ ├── f1ab.glif │ │ │ ├── f1f3.glif │ │ │ ├── f1fc.glif │ │ │ ├── f210.glif │ │ │ ├── f212.glif │ │ │ ├── f260.glif │ │ │ ├── f261.glif │ │ │ ├── f263.glif │ │ │ ├── f27e.glif │ │ │ ├── facebook.glif │ │ │ ├── facebook_sign.glif │ │ │ ├── facetime_video.glif │ │ │ ├── fast_backward.glif │ │ │ ├── fast_forward.glif │ │ │ ├── female.glif │ │ │ ├── fighter_jet.glif │ │ │ ├── file.glif │ │ │ ├── file_alt.glif │ │ │ ├── file_text.glif │ │ │ ├── file_text_alt.glif │ │ │ ├── film.glif │ │ │ ├── filter.glif │ │ │ ├── fire.glif │ │ │ ├── fire_extinguisher.glif │ │ │ ├── flag.glif │ │ │ ├── flag_alt.glif │ │ │ ├── flag_checkered.glif │ │ │ ├── flickr.glif │ │ │ ├── folder_close.glif │ │ │ ├── folder_close_alt.glif │ │ │ ├── folder_open.glif │ │ │ ├── folder_open_alt.glif │ │ │ ├── font.glif │ │ │ ├── food.glif │ │ │ ├── forward.glif │ │ │ ├── foursquare.glif │ │ │ ├── frown.glif │ │ │ ├── fullscreen.glif │ │ │ ├── gamepad.glif │ │ │ ├── gbp.glif │ │ │ ├── gift.glif │ │ │ ├── github.glif │ │ │ ├── github_alt.glif │ │ │ ├── github_sign.glif │ │ │ ├── gittip.glif │ │ │ ├── glass.glif │ │ │ ├── globe.glif │ │ │ ├── google_plus.glif │ │ │ ├── google_plus_sign.glif │ │ │ ├── group.glif │ │ │ ├── h_sign.glif │ │ │ ├── hand_down.glif │ │ │ ├── hand_left.glif │ │ │ ├── hand_right.glif │ │ │ ├── hand_up.glif │ │ │ ├── hdd.glif │ │ │ ├── headphones.glif │ │ │ ├── heart.glif │ │ │ ├── heart_empty.glif │ │ │ ├── home.glif │ │ │ ├── hospital.glif │ │ │ ├── html5.glif │ │ │ ├── inbox.glif │ │ │ ├── indent_left.glif │ │ │ ├── indent_right.glif │ │ │ ├── info_sign.glif │ │ │ ├── inr.glif │ │ │ ├── instagram.glif │ │ │ ├── italic.glif │ │ │ ├── jpy.glif │ │ │ ├── key.glif │ │ │ ├── keyboard.glif │ │ │ ├── krw.glif │ │ │ ├── laptop.glif │ │ │ ├── leaf.glif │ │ │ ├── legal.glif │ │ │ ├── lemon.glif │ │ │ ├── level_down.glif │ │ │ ├── level_up.glif │ │ │ ├── light_bulb.glif │ │ │ ├── link.glif │ │ │ ├── linkedin.glif │ │ │ ├── linkedin_sign.glif │ │ │ ├── linux.glif │ │ │ ├── list.glif │ │ │ ├── list_alt.glif │ │ │ ├── location_arrow.glif │ │ │ ├── lock.glif │ │ │ ├── long_arrow_down.glif │ │ │ ├── long_arrow_left.glif │ │ │ ├── long_arrow_right.glif │ │ │ ├── long_arrow_up.glif │ │ │ ├── magic.glif │ │ │ ├── magnet.glif │ │ │ ├── male.glif │ │ │ ├── map_marker.glif │ │ │ ├── maxcdn.glif │ │ │ ├── medkit.glif │ │ │ ├── meh.glif │ │ │ ├── microphone.glif │ │ │ ├── microphone_off.glif │ │ │ ├── minus.glif │ │ │ ├── minus_sign.glif │ │ │ ├── minus_sign_alt.glif │ │ │ ├── mobile_phone.glif │ │ │ ├── money.glif │ │ │ ├── move.glif │ │ │ ├── music.glif │ │ │ ├── off.glif │ │ │ ├── ok.glif │ │ │ ├── ok_circle.glif │ │ │ ├── ok_sign.glif │ │ │ ├── ol.glif │ │ │ ├── paper_clip.glif │ │ │ ├── paste.glif │ │ │ ├── pause.glif │ │ │ ├── pencil.glif │ │ │ ├── phone.glif │ │ │ ├── phone_sign.glif │ │ │ ├── picture.glif │ │ │ ├── pinterest.glif │ │ │ ├── pinterest_sign.glif │ │ │ ├── plane.glif │ │ │ ├── play.glif │ │ │ ├── play_circle.glif │ │ │ ├── play_sign.glif │ │ │ ├── plus.glif │ │ │ ├── plus_sign.glif │ │ │ ├── plus_square_o.glif │ │ │ ├── print.glif │ │ │ ├── pushpin.glif │ │ │ ├── puzzle_piece.glif │ │ │ ├── qrcode.glif │ │ │ ├── question.glif │ │ │ ├── question_sign.glif │ │ │ ├── quote_left.glif │ │ │ ├── quote_right.glif │ │ │ ├── random.glif │ │ │ ├── refresh.glif │ │ │ ├── remove.glif │ │ │ ├── remove_circle.glif │ │ │ ├── remove_sign.glif │ │ │ ├── renren.glif │ │ │ ├── reorder.glif │ │ │ ├── repeat.glif │ │ │ ├── reply.glif │ │ │ ├── reply_all.glif │ │ │ ├── resize_full.glif │ │ │ ├── resize_horizontal.glif │ │ │ ├── resize_small.glif │ │ │ ├── resize_vertical.glif │ │ │ ├── retweet.glif │ │ │ ├── road.glif │ │ │ ├── rocket.glif │ │ │ ├── rss.glif │ │ │ ├── rub.glif │ │ │ ├── save.glif │ │ │ ├── screenshot.glif │ │ │ ├── search.glif │ │ │ ├── share.glif │ │ │ ├── share_alt.glif │ │ │ ├── share_sign.glif │ │ │ ├── shield.glif │ │ │ ├── shopping_cart.glif │ │ │ ├── sign_blank.glif │ │ │ ├── signal.glif │ │ │ ├── signin.glif │ │ │ ├── signout.glif │ │ │ ├── sitemap.glif │ │ │ ├── skype.glif │ │ │ ├── smile.glif │ │ │ ├── sort.glif │ │ │ ├── sort_by_alphabet.glif │ │ │ ├── sort_by_attributes.glif │ │ │ ├── sort_by_attributes_alt.glif │ │ │ ├── sort_by_order.glif │ │ │ ├── sort_by_order_alt.glif │ │ │ ├── sort_down.glif │ │ │ ├── sort_up.glif │ │ │ ├── spinner.glif │ │ │ ├── stack_exchange.glif │ │ │ ├── stackexchange.glif │ │ │ ├── star.glif │ │ │ ├── star_empty.glif │ │ │ ├── star_half.glif │ │ │ ├── star_half_empty.glif │ │ │ ├── step_backward.glif │ │ │ ├── step_forward.glif │ │ │ ├── stethoscope.glif │ │ │ ├── stop.glif │ │ │ ├── strikethrough.glif │ │ │ ├── subscript.glif │ │ │ ├── suitcase.glif │ │ │ ├── sun.glif │ │ │ ├── superscript.glif │ │ │ ├── table.glif │ │ │ ├── tablet.glif │ │ │ ├── tag.glif │ │ │ ├── tags.glif │ │ │ ├── tasks.glif │ │ │ ├── terminal.glif │ │ │ ├── text_height.glif │ │ │ ├── text_width.glif │ │ │ ├── th.glif │ │ │ ├── th_large.glif │ │ │ ├── th_list.glif │ │ │ ├── thumbs_down_alt.glif │ │ │ ├── thumbs_up_alt.glif │ │ │ ├── ticket.glif │ │ │ ├── time.glif │ │ │ ├── tint.glif │ │ │ ├── trash.glif │ │ │ ├── trello.glif │ │ │ ├── trophy.glif │ │ │ ├── truck.glif │ │ │ ├── tumblr.glif │ │ │ ├── tumblr_sign.glif │ │ │ ├── twitter.glif │ │ │ ├── twitter_sign.glif │ │ │ ├── ul.glif │ │ │ ├── umbrella.glif │ │ │ ├── underline.glif │ │ │ ├── undo.glif │ │ │ ├── uniF_1A_0.glif │ │ │ ├── uniF_1B_1.glif │ │ │ ├── uniF_1C_0.glif │ │ │ ├── uniF_1C_1.glif │ │ │ ├── uniF_1D_0.glif │ │ │ ├── uniF_1D_1.glif │ │ │ ├── uniF_1D_2.glif │ │ │ ├── uniF_1D_5.glif │ │ │ ├── uniF_1D_6.glif │ │ │ ├── uniF_1D_7.glif │ │ │ ├── uniF_1E_0.glif │ │ │ ├── uniF_1F_0.glif │ │ │ ├── uniF_280.glif │ │ │ ├── uniF_281.glif │ │ │ ├── uniF_285.glif │ │ │ ├── uniF_286.glif │ │ │ ├── uniF_2A_0.glif │ │ │ ├── uniF_2A_1.glif │ │ │ ├── uniF_2A_2.glif │ │ │ ├── uniF_2A_3.glif │ │ │ ├── uniF_2A_4.glif │ │ │ ├── uniF_2A_5.glif │ │ │ ├── uniF_2A_6.glif │ │ │ ├── uniF_2A_7.glif │ │ │ ├── uniF_2A_8.glif │ │ │ ├── uniF_2A_9.glif │ │ │ ├── uniF_2A_A_.glif │ │ │ ├── uniF_2A_B_.glif │ │ │ ├── uniF_2A_C_.glif │ │ │ ├── uniF_2A_D_.glif │ │ │ ├── uniF_2A_E_.glif │ │ │ ├── uniF_2B_0.glif │ │ │ ├── uniF_2B_1.glif │ │ │ ├── uniF_2B_2.glif │ │ │ ├── uniF_2B_3.glif │ │ │ ├── uniF_2B_4.glif │ │ │ ├── uniF_2B_5.glif │ │ │ ├── uniF_2B_6.glif │ │ │ ├── uniF_2B_7.glif │ │ │ ├── uniF_2B_8.glif │ │ │ ├── uniF_2B_9.glif │ │ │ ├── uniF_2B_A_.glif │ │ │ ├── uniF_2B_B_.glif │ │ │ ├── uniF_2B_C_.glif │ │ │ ├── uniF_2B_D_.glif │ │ │ ├── uniF_2B_E_.glif │ │ │ ├── uniF_2C_0.glif │ │ │ ├── uniF_2C_1.glif │ │ │ ├── uniF_2C_2.glif │ │ │ ├── uniF_2C_3.glif │ │ │ ├── uniF_2C_4.glif │ │ │ ├── uniF_2C_5.glif │ │ │ ├── uniF_2C_6.glif │ │ │ ├── uniF_2C_7.glif │ │ │ ├── uniF_2C_8.glif │ │ │ ├── uniF_2C_9.glif │ │ │ ├── uniF_2C_A_.glif │ │ │ ├── uniF_2C_B_.glif │ │ │ ├── uniF_2C_C_.glif │ │ │ ├── uniF_2C_D_.glif │ │ │ ├── uniF_2C_E_.glif │ │ │ ├── uniF_2D_0.glif │ │ │ ├── uniF_2D_1.glif │ │ │ ├── uniF_2D_2.glif │ │ │ ├── uniF_2D_3.glif │ │ │ ├── uniF_2D_4.glif │ │ │ ├── uniF_2D_5.glif │ │ │ ├── uniF_2D_6.glif │ │ │ ├── uniF_2D_7.glif │ │ │ ├── uniF_2D_8.glif │ │ │ ├── uniF_2D_9.glif │ │ │ ├── uniF_2D_A_.glif │ │ │ ├── uniF_2D_B_.glif │ │ │ ├── uniF_2D_C_.glif │ │ │ ├── uniF_2D_D_.glif │ │ │ ├── uniF_2D_E_.glif │ │ │ ├── uniF_2E_0.glif │ │ │ ├── unlink.glif │ │ │ ├── unlock.glif │ │ │ ├── unlock_alt.glif │ │ │ ├── upload.glif │ │ │ ├── upload_alt.glif │ │ │ ├── usd.glif │ │ │ ├── user.glif │ │ │ ├── user_md.glif │ │ │ ├── venus.glif │ │ │ ├── vimeo_square.glif │ │ │ ├── vk.glif │ │ │ ├── volume_down.glif │ │ │ ├── volume_off.glif │ │ │ ├── volume_up.glif │ │ │ ├── warning_sign.glif │ │ │ ├── weibo.glif │ │ │ ├── windows.glif │ │ │ ├── wrench.glif │ │ │ ├── xing.glif │ │ │ ├── xing_sign.glif │ │ │ ├── youtube.glif │ │ │ ├── youtube_play.glif │ │ │ ├── youtube_sign.glif │ │ │ ├── zoom_in.glif │ │ │ └── zoom_out.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── MaterialDesignIconsDesktop.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── ab-testing.glif │ │ │ ├── abacus.glif │ │ │ ├── abjad-arabic.glif │ │ │ ├── abjad-hebrew.glif │ │ │ ├── abugida-devanagari.glif │ │ │ ├── abugida-thai.glif │ │ │ ├── access-point-check.glif │ │ │ ├── access-point-minus.glif │ │ │ ├── access-point-network-off.glif │ │ │ ├── access-point-network.glif │ │ │ ├── access-point-off.glif │ │ │ ├── access-point-plus.glif │ │ │ ├── access-point-remove.glif │ │ │ ├── access-point.glif │ │ │ ├── account-alert-outline.glif │ │ │ ├── account-alert.glif │ │ │ ├── account-arrow-down-outline.glif │ │ │ ├── account-arrow-down.glif │ │ │ ├── account-arrow-left-outline.glif │ │ │ ├── account-arrow-left.glif │ │ │ ├── account-arrow-right-outline.glif │ │ │ ├── account-arrow-right.glif │ │ │ ├── account-arrow-up-outline.glif │ │ │ ├── account-arrow-up.glif │ │ │ ├── account-box-multiple-outline.glif │ │ │ ├── account-box-multiple.glif │ │ │ ├── account-box-outline.glif │ │ │ ├── account-box.glif │ │ │ ├── account-cancel-outline.glif │ │ │ ├── account-cancel.glif │ │ │ ├── account-cash-outline.glif │ │ │ ├── account-cash.glif │ │ │ ├── account-check-outline.glif │ │ │ ├── account-check.glif │ │ │ ├── account-child-circle.glif │ │ │ ├── account-child-outline.glif │ │ │ ├── account-child.glif │ │ │ ├── account-circle-outline.glif │ │ │ ├── account-circle.glif │ │ │ ├── account-clock-outline.glif │ │ │ ├── account-clock.glif │ │ │ ├── account-cog-outline.glif │ │ │ ├── account-cog.glif │ │ │ ├── account-convert-outline.glif │ │ │ ├── account-convert.glif │ │ │ ├── account-cowboy-hat-outline.glif │ │ │ ├── account-cowboy-hat.glif │ │ │ ├── account-details-outline.glif │ │ │ ├── account-details.glif │ │ │ ├── account-edit-outline.glif │ │ │ ├── account-edit.glif │ │ │ ├── account-eye-outline.glif │ │ │ ├── account-eye.glif │ │ │ ├── account-filter-outline.glif │ │ │ ├── account-filter.glif │ │ │ ├── account-group-outline.glif │ │ │ ├── account-group.glif │ │ │ ├── account-hard-hat-outline.glif │ │ │ ├── account-hard-hat.glif │ │ │ ├── account-heart-outline.glif │ │ │ ├── account-heart.glif │ │ │ ├── account-injury-outline.glif │ │ │ ├── account-injury.glif │ │ │ ├── account-key-outline.glif │ │ │ ├── account-key.glif │ │ │ ├── account-lock-open-outline.glif │ │ │ ├── account-lock-open.glif │ │ │ ├── account-lock-outline.glif │ │ │ ├── account-lock.glif │ │ │ ├── account-minus-outline.glif │ │ │ ├── account-minus.glif │ │ │ ├── account-multiple-check-outline.glif │ │ │ ├── account-multiple-check.glif │ │ │ ├── account-multiple-minus-outline.glif │ │ │ ├── account-multiple-minus.glif │ │ │ ├── account-multiple-outline.glif │ │ │ ├── account-multiple-plus-outline.glif │ │ │ ├── account-multiple-plus.glif │ │ │ ├── account-multiple-remove-outline.glif │ │ │ ├── account-multiple-remove.glif │ │ │ ├── account-multiple.glif │ │ │ ├── account-music-outline.glif │ │ │ ├── account-music.glif │ │ │ ├── account-network-outline.glif │ │ │ ├── account-network.glif │ │ │ ├── account-off-outline.glif │ │ │ ├── account-off.glif │ │ │ ├── account-outline.glif │ │ │ ├── account-plus-outline.glif │ │ │ ├── account-plus.glif │ │ │ ├── account-question-outline.glif │ │ │ ├── account-question.glif │ │ │ ├── account-reactivate-outline.glif │ │ │ ├── account-reactivate.glif │ │ │ ├── account-remove-outline.glif │ │ │ ├── account-remove.glif │ │ │ ├── account-school-outline.glif │ │ │ ├── account-school.glif │ │ │ ├── account-search-outline.glif │ │ │ ├── account-search.glif │ │ │ ├── account-settings-outline.glif │ │ │ ├── account-settings.glif │ │ │ ├── account-star-outline.glif │ │ │ ├── account-star.glif │ │ │ ├── account-supervisor-circle-outline.glif │ │ │ ├── account-supervisor-circle.glif │ │ │ ├── account-supervisor-outline.glif │ │ │ ├── account-supervisor.glif │ │ │ ├── account-switch-outline.glif │ │ │ ├── account-switch.glif │ │ │ ├── account-sync-outline.glif │ │ │ ├── account-sync.glif │ │ │ ├── account-tie-hat-outline.glif │ │ │ ├── account-tie-hat.glif │ │ │ ├── account-tie-outline.glif │ │ │ ├── account-tie-voice-off-outline.glif │ │ │ ├── account-tie-voice-off.glif │ │ │ ├── account-tie-voice-outline.glif │ │ │ ├── account-tie-voice.glif │ │ │ ├── account-tie-woman.glif │ │ │ ├── account-tie.glif │ │ │ ├── account-voice-off.glif │ │ │ ├── account-voice.glif │ │ │ ├── account-wrench-outline.glif │ │ │ ├── account-wrench.glif │ │ │ ├── account.glif │ │ │ ├── adjust.glif │ │ │ ├── advertisements-off.glif │ │ │ ├── advertisements.glif │ │ │ ├── air-conditioner.glif │ │ │ ├── air-filter.glif │ │ │ ├── air-horn.glif │ │ │ ├── air-humidifier-off.glif │ │ │ ├── air-humidifier.glif │ │ │ ├── air-purifier.glif │ │ │ ├── airbag.glif │ │ │ ├── airballoon-outline.glif │ │ │ ├── airballoon.glif │ │ │ ├── airplane-alert.glif │ │ │ ├── airplane-check.glif │ │ │ ├── airplane-clock.glif │ │ │ ├── airplane-cog.glif │ │ │ ├── airplane-edit.glif │ │ │ ├── airplane-landing.glif │ │ │ ├── airplane-marker.glif │ │ │ ├── airplane-minus.glif │ │ │ ├── airplane-off.glif │ │ │ ├── airplane-plus.glif │ │ │ ├── airplane-remove.glif │ │ │ ├── airplane-search.glif │ │ │ ├── airplane-settings.glif │ │ │ ├── airplane-takeoff.glif │ │ │ ├── airplane.glif │ │ │ ├── airport.glif │ │ │ ├── alarm-bell.glif │ │ │ ├── alarm-check.glif │ │ │ ├── alarm-light-off-outline.glif │ │ │ ├── alarm-light-off.glif │ │ │ ├── alarm-light-outline.glif │ │ │ ├── alarm-light.glif │ │ │ ├── alarm-multiple.glif │ │ │ ├── alarm-note-off.glif │ │ │ ├── alarm-note.glif │ │ │ ├── alarm-off.glif │ │ │ ├── alarm-panel-outline.glif │ │ │ ├── alarm-panel.glif │ │ │ ├── alarm-plus.glif │ │ │ ├── alarm-snooze.glif │ │ │ ├── alarm.glif │ │ │ ├── album.glif │ │ │ ├── alert-box-outline.glif │ │ │ ├── alert-box.glif │ │ │ ├── alert-circle-check-outline.glif │ │ │ ├── alert-circle-check.glif │ │ │ ├── alert-circle-outline.glif │ │ │ ├── alert-circle.glif │ │ │ ├── alert-decagram-outline.glif │ │ │ ├── alert-decagram.glif │ │ │ ├── alert-minus-outline.glif │ │ │ ├── alert-minus.glif │ │ │ ├── alert-octagon-outline.glif │ │ │ ├── alert-octagon.glif │ │ │ ├── alert-octagram-outline.glif │ │ │ ├── alert-octagram.glif │ │ │ ├── alert-outline.glif │ │ │ ├── alert-plus-outline.glif │ │ │ ├── alert-plus.glif │ │ │ ├── alert-remove-outline.glif │ │ │ ├── alert-remove.glif │ │ │ ├── alert-rhombus-outline.glif │ │ │ ├── alert-rhombus.glif │ │ │ ├── alert.glif │ │ │ ├── alien-outline.glif │ │ │ ├── alien.glif │ │ │ ├── align-horizontal-center.glif │ │ │ ├── align-horizontal-distribute.glif │ │ │ ├── align-horizontal-left.glif │ │ │ ├── align-horizontal-right.glif │ │ │ ├── align-vertical-bottom.glif │ │ │ ├── align-vertical-center.glif │ │ │ ├── align-vertical-distribute.glif │ │ │ ├── align-vertical-top.glif │ │ │ ├── all-inclusive-box-outline.glif │ │ │ ├── all-inclusive-box.glif │ │ │ ├── all-inclusive.glif │ │ │ ├── allergy.glif │ │ │ ├── alpha-a-box-outline.glif │ │ │ ├── alpha-a-box.glif │ │ │ ├── alpha-a-circle-outline.glif │ │ │ ├── alpha-a-circle.glif │ │ │ ├── alpha-a.glif │ │ │ ├── alpha-b-box-outline.glif │ │ │ ├── alpha-b-box.glif │ │ │ ├── alpha-b-circle-outline.glif │ │ │ ├── alpha-b-circle.glif │ │ │ ├── alpha-b.glif │ │ │ ├── alpha-c-box-outline.glif │ │ │ ├── alpha-c-box.glif │ │ │ ├── alpha-c-circle-outline.glif │ │ │ ├── alpha-c-circle.glif │ │ │ ├── alpha-c.glif │ │ │ ├── alpha-d-box-outline.glif │ │ │ ├── alpha-d-box.glif │ │ │ ├── alpha-d-circle-outline.glif │ │ │ ├── alpha-d-circle.glif │ │ │ ├── alpha-d.glif │ │ │ ├── alpha-e-box-outline.glif │ │ │ ├── alpha-e-box.glif │ │ │ ├── alpha-e-circle-outline.glif │ │ │ ├── alpha-e-circle.glif │ │ │ ├── alpha-e.glif │ │ │ ├── alpha-f-box-outline.glif │ │ │ ├── alpha-f-box.glif │ │ │ ├── alpha-f-circle-outline.glif │ │ │ ├── alpha-f-circle.glif │ │ │ ├── alpha-f.glif │ │ │ ├── alpha-g-box-outline.glif │ │ │ ├── alpha-g-box.glif │ │ │ ├── alpha-g-circle-outline.glif │ │ │ ├── alpha-g-circle.glif │ │ │ ├── alpha-g.glif │ │ │ ├── alpha-h-box-outline.glif │ │ │ ├── alpha-h-box.glif │ │ │ ├── alpha-h-circle-outline.glif │ │ │ ├── alpha-h-circle.glif │ │ │ ├── alpha-h.glif │ │ │ ├── alpha-i-box-outline.glif │ │ │ ├── alpha-i-box.glif │ │ │ ├── alpha-i-circle-outline.glif │ │ │ ├── alpha-i-circle.glif │ │ │ ├── alpha-i.glif │ │ │ ├── alpha-j-box-outline.glif │ │ │ ├── alpha-j-box.glif │ │ │ ├── alpha-j-circle-outline.glif │ │ │ ├── alpha-j-circle.glif │ │ │ ├── alpha-j.glif │ │ │ ├── alpha-k-box-outline.glif │ │ │ ├── alpha-k-box.glif │ │ │ ├── alpha-k-circle-outline.glif │ │ │ ├── alpha-k-circle.glif │ │ │ ├── alpha-k.glif │ │ │ ├── alpha-l-box-outline.glif │ │ │ ├── alpha-l-box.glif │ │ │ ├── alpha-l-circle-outline.glif │ │ │ ├── alpha-l-circle.glif │ │ │ ├── alpha-l.glif │ │ │ ├── alpha-m-box-outline.glif │ │ │ ├── alpha-m-box.glif │ │ │ ├── alpha-m-circle-outline.glif │ │ │ ├── alpha-m-circle.glif │ │ │ ├── alpha-m.glif │ │ │ ├── alpha-n-box-outline.glif │ │ │ ├── alpha-n-box.glif │ │ │ ├── alpha-n-circle-outline.glif │ │ │ ├── alpha-n-circle.glif │ │ │ ├── alpha-n.glif │ │ │ ├── alpha-o-box-outline.glif │ │ │ ├── alpha-o-box.glif │ │ │ ├── alpha-o-circle-outline.glif │ │ │ ├── alpha-o-circle.glif │ │ │ ├── alpha-o.glif │ │ │ ├── alpha-p-box-outline.glif │ │ │ ├── alpha-p-box.glif │ │ │ ├── alpha-p-circle-outline.glif │ │ │ ├── alpha-p-circle.glif │ │ │ ├── alpha-p.glif │ │ │ ├── alpha-q-box-outline.glif │ │ │ ├── alpha-q-box.glif │ │ │ ├── alpha-q-circle-outline.glif │ │ │ ├── alpha-q-circle.glif │ │ │ ├── alpha-q.glif │ │ │ ├── alpha-r-box-outline.glif │ │ │ ├── alpha-r-box.glif │ │ │ ├── alpha-r-circle-outline.glif │ │ │ ├── alpha-r-circle.glif │ │ │ ├── alpha-r.glif │ │ │ ├── alpha-s-box-outline.glif │ │ │ ├── alpha-s-box.glif │ │ │ ├── alpha-s-circle-outline.glif │ │ │ ├── alpha-s-circle.glif │ │ │ ├── alpha-s.glif │ │ │ ├── alpha-t-box-outline.glif │ │ │ ├── alpha-t-box.glif │ │ │ ├── alpha-t-circle-outline.glif │ │ │ ├── alpha-t-circle.glif │ │ │ ├── alpha-t.glif │ │ │ ├── alpha-u-box-outline.glif │ │ │ ├── alpha-u-box.glif │ │ │ ├── alpha-u-circle-outline.glif │ │ │ ├── alpha-u-circle.glif │ │ │ ├── alpha-u.glif │ │ │ ├── alpha-v-box-outline.glif │ │ │ ├── alpha-v-box.glif │ │ │ ├── alpha-v-circle-outline.glif │ │ │ ├── alpha-v-circle.glif │ │ │ ├── alpha-v.glif │ │ │ ├── alpha-w-box-outline.glif │ │ │ ├── alpha-w-box.glif │ │ │ ├── alpha-w-circle-outline.glif │ │ │ ├── alpha-w-circle.glif │ │ │ ├── alpha-w.glif │ │ │ ├── alpha-x-box-outline.glif │ │ │ ├── alpha-x-box.glif │ │ │ ├── alpha-x-circle-outline.glif │ │ │ ├── alpha-x-circle.glif │ │ │ ├── alpha-x.glif │ │ │ ├── alpha-y-box-outline.glif │ │ │ ├── alpha-y-box.glif │ │ │ ├── alpha-y-circle-outline.glif │ │ │ ├── alpha-y-circle.glif │ │ │ ├── alpha-y.glif │ │ │ ├── alpha-z-box-outline.glif │ │ │ ├── alpha-z-box.glif │ │ │ ├── alpha-z-circle-outline.glif │ │ │ ├── alpha-z-circle.glif │ │ │ ├── alpha-z.glif │ │ │ ├── alpha.glif │ │ │ ├── alphabet-aurebesh.glif │ │ │ ├── alphabet-cyrillic.glif │ │ │ ├── alphabet-greek.glif │ │ │ ├── alphabet-latin.glif │ │ │ ├── alphabet-piqad.glif │ │ │ ├── alphabet-tengwar.glif │ │ │ ├── alphabetical-off.glif │ │ │ ├── alphabetical-variant-off.glif │ │ │ ├── alphabetical-variant.glif │ │ │ ├── alphabetical.glif │ │ │ ├── altimeter.glif │ │ │ ├── ambulance.glif │ │ │ ├── ammunition.glif │ │ │ ├── ampersand.glif │ │ │ ├── amplifier-off.glif │ │ │ ├── amplifier.glif │ │ │ ├── anchor.glif │ │ │ ├── android-messages.glif │ │ │ ├── android-studio.glif │ │ │ ├── android.glif │ │ │ ├── angle-acute.glif │ │ │ ├── angle-obtuse.glif │ │ │ ├── angle-right.glif │ │ │ ├── angular.glif │ │ │ ├── angularjs.glif │ │ │ ├── animation-outline.glif │ │ │ ├── animation-play-outline.glif │ │ │ ├── animation-play.glif │ │ │ ├── animation.glif │ │ │ ├── ansible.glif │ │ │ ├── antenna.glif │ │ │ ├── anvil.glif │ │ │ ├── apache-kafka.glif │ │ │ ├── api-off.glif │ │ │ ├── api.glif │ │ │ ├── apple-finder.glif │ │ │ ├── apple-icloud.glif │ │ │ ├── apple-ios.glif │ │ │ ├── apple-keyboard-caps.glif │ │ │ ├── apple-keyboard-command.glif │ │ │ ├── apple-keyboard-control.glif │ │ │ ├── apple-keyboard-option.glif │ │ │ ├── apple-keyboard-shift.glif │ │ │ ├── apple-safari.glif │ │ │ ├── apple.glif │ │ │ ├── application-array-outline.glif │ │ │ ├── application-array.glif │ │ │ ├── application-braces-outline.glif │ │ │ ├── application-braces.glif │ │ │ ├── application-brackets-outline.glif │ │ │ ├── application-brackets.glif │ │ │ ├── application-cog-outline.glif │ │ │ ├── application-cog.glif │ │ │ ├── application-edit-outline.glif │ │ │ ├── application-edit.glif │ │ │ ├── application-export.glif │ │ │ ├── application-import.glif │ │ │ ├── application-outline.glif │ │ │ ├── application-parentheses-outline.glif │ │ │ ├── application-parentheses.glif │ │ │ ├── application-settings-outline.glif │ │ │ ├── application-settings.glif │ │ │ ├── application-variable-outline.glif │ │ │ ├── application-variable.glif │ │ │ ├── application.glif │ │ │ ├── approximately-equal-box.glif │ │ │ ├── approximately-equal.glif │ │ │ ├── apps-box.glif │ │ │ ├── apps.glif │ │ │ ├── arch.glif │ │ │ ├── archive-alert-outline.glif │ │ │ ├── archive-alert.glif │ │ │ ├── archive-arrow-down-outline.glif │ │ │ ├── archive-arrow-down.glif │ │ │ ├── archive-arrow-up-outline.glif │ │ │ ├── archive-arrow-up.glif │ │ │ ├── archive-cancel-outline.glif │ │ │ ├── archive-cancel.glif │ │ │ ├── archive-check-outline.glif │ │ │ ├── archive-check.glif │ │ │ ├── archive-clock-outline.glif │ │ │ ├── archive-clock.glif │ │ │ ├── archive-cog-outline.glif │ │ │ ├── archive-cog.glif │ │ │ ├── archive-edit-outline.glif │ │ │ ├── archive-edit.glif │ │ │ ├── archive-eye-outline.glif │ │ │ ├── archive-eye.glif │ │ │ ├── archive-lock-open-outline.glif │ │ │ ├── archive-lock-open.glif │ │ │ ├── archive-lock-outline.glif │ │ │ ├── archive-lock.glif │ │ │ ├── archive-marker-outline.glif │ │ │ ├── archive-marker.glif │ │ │ ├── archive-minus-outline.glif │ │ │ ├── archive-minus.glif │ │ │ ├── archive-music-outline.glif │ │ │ ├── archive-music.glif │ │ │ ├── archive-off-outline.glif │ │ │ ├── archive-off.glif │ │ │ ├── archive-outline.glif │ │ │ ├── archive-plus-outline.glif │ │ │ ├── archive-plus.glif │ │ │ ├── archive-refresh-outline.glif │ │ │ ├── archive-refresh.glif │ │ │ ├── archive-remove-outline.glif │ │ │ ├── archive-remove.glif │ │ │ ├── archive-search-outline.glif │ │ │ ├── archive-search.glif │ │ │ ├── archive-settings-outline.glif │ │ │ ├── archive-settings.glif │ │ │ ├── archive-star-outline.glif │ │ │ ├── archive-star.glif │ │ │ ├── archive-sync-outline.glif │ │ │ ├── archive-sync.glif │ │ │ ├── archive.glif │ │ │ ├── arm-flex-outline.glif │ │ │ ├── arm-flex.glif │ │ │ ├── arrange-bring-forward.glif │ │ │ ├── arrange-bring-to-front.glif │ │ │ ├── arrange-send-backward.glif │ │ │ ├── arrange-send-to-back.glif │ │ │ ├── arrow-all.glif │ │ │ ├── arrow-bottom-left-bold-box-outline.glif │ │ │ ├── arrow-bottom-left-bold-box.glif │ │ │ ├── arrow-bottom-left-bold-outline.glif │ │ │ ├── arrow-bottom-left-thick.glif │ │ │ ├── arrow-bottom-left-thin-circle-outline.glif │ │ │ ├── arrow-bottom-left-thin.glif │ │ │ ├── arrow-bottom-left.glif │ │ │ ├── arrow-bottom-right-bold-box-outline.glif │ │ │ ├── arrow-bottom-right-bold-box.glif │ │ │ ├── arrow-bottom-right-bold-outline.glif │ │ │ ├── arrow-bottom-right-thick.glif │ │ │ ├── arrow-bottom-right-thin-circle-outline.glif │ │ │ ├── arrow-bottom-right-thin.glif │ │ │ ├── arrow-bottom-right.glif │ │ │ ├── arrow-collapse-all.glif │ │ │ ├── arrow-collapse-down.glif │ │ │ ├── arrow-collapse-horizontal.glif │ │ │ ├── arrow-collapse-left.glif │ │ │ ├── arrow-collapse-right.glif │ │ │ ├── arrow-collapse-up.glif │ │ │ ├── arrow-collapse-vertical.glif │ │ │ ├── arrow-collapse.glif │ │ │ ├── arrow-decision-auto-outline.glif │ │ │ ├── arrow-decision-auto.glif │ │ │ ├── arrow-decision-outline.glif │ │ │ ├── arrow-decision.glif │ │ │ ├── arrow-down-bold-box-outline.glif │ │ │ ├── arrow-down-bold-box.glif │ │ │ ├── arrow-down-bold-circle-outline.glif │ │ │ ├── arrow-down-bold-circle.glif │ │ │ ├── arrow-down-bold-hexagon-outline.glif │ │ │ ├── arrow-down-bold-outline.glif │ │ │ ├── arrow-down-bold.glif │ │ │ ├── arrow-down-box.glif │ │ │ ├── arrow-down-circle-outline.glif │ │ │ ├── arrow-down-circle.glif │ │ │ ├── arrow-down-drop-circle-outline.glif │ │ │ ├── arrow-down-drop-circle.glif │ │ │ ├── arrow-down-left-bold.glif │ │ │ ├── arrow-down-left.glif │ │ │ ├── arrow-down-right-bold.glif │ │ │ ├── arrow-down-right.glif │ │ │ ├── arrow-down-thick.glif │ │ │ ├── arrow-down-thin-circle-outline.glif │ │ │ ├── arrow-down-thin.glif │ │ │ ├── arrow-down.glif │ │ │ ├── arrow-expand-all.glif │ │ │ ├── arrow-expand-down.glif │ │ │ ├── arrow-expand-horizontal.glif │ │ │ ├── arrow-expand-left.glif │ │ │ ├── arrow-expand-right.glif │ │ │ ├── arrow-expand-up.glif │ │ │ ├── arrow-expand-vertical.glif │ │ │ ├── arrow-expand.glif │ │ │ ├── arrow-horizontal-lock.glif │ │ │ ├── arrow-left-bold-box-outline.glif │ │ │ ├── arrow-left-bold-box.glif │ │ │ ├── arrow-left-bold-circle-outline.glif │ │ │ ├── arrow-left-bold-circle.glif │ │ │ ├── arrow-left-bold-hexagon-outline.glif │ │ │ ├── arrow-left-bold-outline.glif │ │ │ ├── arrow-left-bold.glif │ │ │ ├── arrow-left-bottom-bold.glif │ │ │ ├── arrow-left-bottom.glif │ │ │ ├── arrow-left-box.glif │ │ │ ├── arrow-left-circle-outline.glif │ │ │ ├── arrow-left-circle.glif │ │ │ ├── arrow-left-drop-circle-outline.glif │ │ │ ├── arrow-left-drop-circle.glif │ │ │ ├── arrow-left-right-bold-outline.glif │ │ │ ├── arrow-left-right-bold.glif │ │ │ ├── arrow-left-right.glif │ │ │ ├── arrow-left-thick.glif │ │ │ ├── arrow-left-thin-circle-outline.glif │ │ │ ├── arrow-left-thin.glif │ │ │ ├── arrow-left-top-bold.glif │ │ │ ├── arrow-left-top.glif │ │ │ ├── arrow-left.glif │ │ │ ├── arrow-projectile-multiple.glif │ │ │ ├── arrow-projectile.glif │ │ │ ├── arrow-right-bold-box-outline.glif │ │ │ ├── arrow-right-bold-box.glif │ │ │ ├── arrow-right-bold-circle-outline.glif │ │ │ ├── arrow-right-bold-circle.glif │ │ │ ├── arrow-right-bold-hexagon-outline.glif │ │ │ ├── arrow-right-bold-outline.glif │ │ │ ├── arrow-right-bold.glif │ │ │ ├── arrow-right-bottom-bold.glif │ │ │ ├── arrow-right-bottom.glif │ │ │ ├── arrow-right-box.glif │ │ │ ├── arrow-right-circle-outline.glif │ │ │ ├── arrow-right-circle.glif │ │ │ ├── arrow-right-drop-circle-outline.glif │ │ │ ├── arrow-right-drop-circle.glif │ │ │ ├── arrow-right-thick.glif │ │ │ ├── arrow-right-thin-circle-outline.glif │ │ │ ├── arrow-right-thin.glif │ │ │ ├── arrow-right-top-bold.glif │ │ │ ├── arrow-right-top.glif │ │ │ ├── arrow-right.glif │ │ │ ├── arrow-split-horizontal.glif │ │ │ ├── arrow-split-vertical.glif │ │ │ ├── arrow-top-left-bold-box-outline.glif │ │ │ ├── arrow-top-left-bold-box.glif │ │ │ ├── arrow-top-left-bold-outline.glif │ │ │ ├── arrow-top-left-bottom-right-bold.glif │ │ │ ├── arrow-top-left-bottom-right.glif │ │ │ ├── arrow-top-left-thick.glif │ │ │ ├── arrow-top-left-thin-circle-outline.glif │ │ │ ├── arrow-top-left-thin.glif │ │ │ ├── arrow-top-left.glif │ │ │ ├── arrow-top-right-bold-box-outline.glif │ │ │ ├── arrow-top-right-bold-box.glif │ │ │ ├── arrow-top-right-bold-outline.glif │ │ │ ├── arrow-top-right-bottom-left-bold.glif │ │ │ ├── arrow-top-right-bottom-left.glif │ │ │ ├── arrow-top-right-thick.glif │ │ │ ├── arrow-top-right-thin-circle-outline.glif │ │ │ ├── arrow-top-right-thin.glif │ │ │ ├── arrow-top-right.glif │ │ │ ├── arrow-u-down-left-bold.glif │ │ │ ├── arrow-u-down-left.glif │ │ │ ├── arrow-u-down-right-bold.glif │ │ │ ├── arrow-u-down-right.glif │ │ │ ├── arrow-u-left-bottom-bold.glif │ │ │ ├── arrow-u-left-bottom.glif │ │ │ ├── arrow-u-left-top-bold.glif │ │ │ ├── arrow-u-left-top.glif │ │ │ ├── arrow-u-right-bottom-bold.glif │ │ │ ├── arrow-u-right-bottom.glif │ │ │ ├── arrow-u-right-top-bold.glif │ │ │ ├── arrow-u-right-top.glif │ │ │ ├── arrow-u-up-left-bold.glif │ │ │ ├── arrow-u-up-left.glif │ │ │ ├── arrow-u-up-right-bold.glif │ │ │ ├── arrow-u-up-right.glif │ │ │ ├── arrow-up-bold-box-outline.glif │ │ │ ├── arrow-up-bold-box.glif │ │ │ ├── arrow-up-bold-circle-outline.glif │ │ │ ├── arrow-up-bold-circle.glif │ │ │ ├── arrow-up-bold-hexagon-outline.glif │ │ │ ├── arrow-up-bold-outline.glif │ │ │ ├── arrow-up-bold.glif │ │ │ ├── arrow-up-box.glif │ │ │ ├── arrow-up-circle-outline.glif │ │ │ ├── arrow-up-circle.glif │ │ │ ├── arrow-up-down-bold-outline.glif │ │ │ ├── arrow-up-down-bold.glif │ │ │ ├── arrow-up-down.glif │ │ │ ├── arrow-up-drop-circle-outline.glif │ │ │ ├── arrow-up-drop-circle.glif │ │ │ ├── arrow-up-left-bold.glif │ │ │ ├── arrow-up-left.glif │ │ │ ├── arrow-up-right-bold.glif │ │ │ ├── arrow-up-right.glif │ │ │ ├── arrow-up-thick.glif │ │ │ ├── arrow-up-thin-circle-outline.glif │ │ │ ├── arrow-up-thin.glif │ │ │ ├── arrow-up.glif │ │ │ ├── arrow-vertical-lock.glif │ │ │ ├── artstation.glif │ │ │ ├── aspect-ratio.glif │ │ │ ├── assistant.glif │ │ │ ├── asterisk-circle-outline.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atlassian.glif │ │ │ ├── atm.glif │ │ │ ├── atom-variant.glif │ │ │ ├── atom.glif │ │ │ ├── attachment-check.glif │ │ │ ├── attachment-lock.glif │ │ │ ├── attachment-minus.glif │ │ │ ├── attachment-off.glif │ │ │ ├── attachment-plus.glif │ │ │ ├── attachment-remove.glif │ │ │ ├── attachment.glif │ │ │ ├── audio-input-rca.glif │ │ │ ├── audio-input-stereo-minijack.glif │ │ │ ├── audio-input-xlr.glif │ │ │ ├── audio-video-off.glif │ │ │ ├── audio-video.glif │ │ │ ├── augmented-reality.glif │ │ │ ├── auto-download.glif │ │ │ ├── auto-fix.glif │ │ │ ├── auto-upload.glif │ │ │ ├── autorenew-off.glif │ │ │ ├── autorenew.glif │ │ │ ├── av-timer.glif │ │ │ ├── aws.glif │ │ │ ├── axe-battle.glif │ │ │ ├── axe.glif │ │ │ ├── axis-arrow-info.glif │ │ │ ├── axis-arrow-lock.glif │ │ │ ├── axis-arrow.glif │ │ │ ├── axis-lock.glif │ │ │ ├── axis-x-arrow-lock.glif │ │ │ ├── axis-x-arrow.glif │ │ │ ├── axis-x-rotate-clockwise.glif │ │ │ ├── axis-x-rotate-counterclockwise.glif │ │ │ ├── axis-x-y-arrow-lock.glif │ │ │ ├── axis-y-arrow-lock.glif │ │ │ ├── axis-y-arrow.glif │ │ │ ├── axis-y-rotate-clockwise.glif │ │ │ ├── axis-y-rotate-counterclockwise.glif │ │ │ ├── axis-z-arrow-lock.glif │ │ │ ├── axis-z-arrow.glif │ │ │ ├── axis-z-rotate-clockwise.glif │ │ │ ├── axis-z-rotate-counterclockwise.glif │ │ │ ├── axis.glif │ │ │ ├── babel.glif │ │ │ ├── baby-bottle-outline.glif │ │ │ ├── baby-bottle.glif │ │ │ ├── baby-buggy.glif │ │ │ ├── baby-carriage-off.glif │ │ │ ├── baby-carriage.glif │ │ │ ├── baby-face-outline.glif │ │ │ ├── baby-face.glif │ │ │ ├── baby.glif │ │ │ ├── backburger.glif │ │ │ ├── backspace-outline.glif │ │ │ ├── backspace-reverse-outline.glif │ │ │ ├── backspace-reverse.glif │ │ │ ├── backspace.glif │ │ │ ├── backup-restore.glif │ │ │ ├── bacteria-outline.glif │ │ │ ├── bacteria.glif │ │ │ ├── badge-account-alert-outline.glif │ │ │ ├── badge-account-alert.glif │ │ │ ├── badge-account-horizontal-outline.glif │ │ │ ├── badge-account-horizontal.glif │ │ │ ├── badge-account-outline.glif │ │ │ ├── badge-account.glif │ │ │ ├── badminton.glif │ │ │ ├── bag-carry-on-check.glif │ │ │ ├── bag-carry-on-off.glif │ │ │ ├── bag-carry-on.glif │ │ │ ├── bag-checked.glif │ │ │ ├── bag-personal-off-outline.glif │ │ │ ├── bag-personal-off.glif │ │ │ ├── bag-personal-outline.glif │ │ │ ├── bag-personal.glif │ │ │ ├── bag-suitcase-off-outline.glif │ │ │ ├── bag-suitcase-off.glif │ │ │ ├── bag-suitcase-outline.glif │ │ │ ├── bag-suitcase.glif │ │ │ ├── baguette.glif │ │ │ ├── balcony.glif │ │ │ ├── balloon.glif │ │ │ ├── ballot-outline.glif │ │ │ ├── ballot-recount-outline.glif │ │ │ ├── ballot-recount.glif │ │ │ ├── ballot.glif │ │ │ ├── bandage.glif │ │ │ ├── bank-check.glif │ │ │ ├── bank-minus.glif │ │ │ ├── bank-off-outline.glif │ │ │ ├── bank-off.glif │ │ │ ├── bank-outline.glif │ │ │ ├── bank-plus.glif │ │ │ ├── bank-remove.glif │ │ │ ├── bank-transfer-in.glif │ │ │ ├── bank-transfer-out.glif │ │ │ ├── bank-transfer.glif │ │ │ ├── bank.glif │ │ │ ├── barcode-off.glif │ │ │ ├── barcode-scan.glif │ │ │ ├── barcode.glif │ │ │ ├── barley-off.glif │ │ │ ├── barley.glif │ │ │ ├── barn.glif │ │ │ ├── barrel-outline.glif │ │ │ ├── barrel.glif │ │ │ ├── baseball-bat.glif │ │ │ ├── baseball-diamond-outline.glif │ │ │ ├── baseball-diamond.glif │ │ │ ├── baseball.glif │ │ │ ├── bash.glif │ │ │ ├── basket-check-outline.glif │ │ │ ├── basket-check.glif │ │ │ ├── basket-fill.glif │ │ │ ├── basket-minus-outline.glif │ │ │ ├── basket-minus.glif │ │ │ ├── basket-off-outline.glif │ │ │ ├── basket-off.glif │ │ │ ├── basket-outline.glif │ │ │ ├── basket-plus-outline.glif │ │ │ ├── basket-plus.glif │ │ │ ├── basket-remove-outline.glif │ │ │ ├── basket-remove.glif │ │ │ ├── basket-unfill.glif │ │ │ ├── basket.glif │ │ │ ├── basketball-hoop-outline.glif │ │ │ ├── basketball-hoop.glif │ │ │ ├── basketball.glif │ │ │ ├── bat.glif │ │ │ ├── bathtub-outline.glif │ │ │ ├── bathtub.glif │ │ │ ├── battery-10-bluetooth.glif │ │ │ ├── battery-10.glif │ │ │ ├── battery-20-bluetooth.glif │ │ │ ├── battery-20.glif │ │ │ ├── battery-30-bluetooth.glif │ │ │ ├── battery-30.glif │ │ │ ├── battery-40-bluetooth.glif │ │ │ ├── battery-40.glif │ │ │ ├── battery-50-bluetooth.glif │ │ │ ├── battery-50.glif │ │ │ ├── battery-60-bluetooth.glif │ │ │ ├── battery-60.glif │ │ │ ├── battery-70-bluetooth.glif │ │ │ ├── battery-70.glif │ │ │ ├── battery-80-bluetooth.glif │ │ │ ├── battery-80.glif │ │ │ ├── battery-90-bluetooth.glif │ │ │ ├── battery-90.glif │ │ │ ├── battery-alert-bluetooth.glif │ │ │ ├── battery-alert-variant-outline.glif │ │ │ ├── battery-alert-variant.glif │ │ │ ├── battery-alert.glif │ │ │ ├── battery-arrow-down-outline.glif │ │ │ ├── battery-arrow-down.glif │ │ │ ├── battery-arrow-up-outline.glif │ │ │ ├── battery-arrow-up.glif │ │ │ ├── battery-bluetooth-variant.glif │ │ │ ├── battery-bluetooth.glif │ │ │ ├── battery-charging-10.glif │ │ │ ├── battery-charging-100.glif │ │ │ ├── battery-charging-20.glif │ │ │ ├── battery-charging-30.glif │ │ │ ├── battery-charging-40.glif │ │ │ ├── battery-charging-50.glif │ │ │ ├── battery-charging-60.glif │ │ │ ├── battery-charging-70.glif │ │ │ ├── battery-charging-80.glif │ │ │ ├── battery-charging-90.glif │ │ │ ├── battery-charging-high.glif │ │ │ ├── battery-charging-low.glif │ │ │ ├── battery-charging-medium.glif │ │ │ ├── battery-charging-outline.glif │ │ │ ├── battery-charging-wireless-10.glif │ │ │ ├── battery-charging-wireless-20.glif │ │ │ ├── battery-charging-wireless-30.glif │ │ │ ├── battery-charging-wireless-40.glif │ │ │ ├── battery-charging-wireless-50.glif │ │ │ ├── battery-charging-wireless-60.glif │ │ │ ├── battery-charging-wireless-70.glif │ │ │ ├── battery-charging-wireless-80.glif │ │ │ ├── battery-charging-wireless-90.glif │ │ │ ├── battery-charging-wireless-alert.glif │ │ │ ├── battery-charging-wireless-outline.glif │ │ │ ├── battery-charging-wireless.glif │ │ │ ├── battery-charging.glif │ │ │ ├── battery-check-outline.glif │ │ │ ├── battery-check.glif │ │ │ ├── battery-clock-outline.glif │ │ │ ├── battery-clock.glif │ │ │ ├── battery-heart-outline.glif │ │ │ ├── battery-heart-variant.glif │ │ │ ├── battery-heart.glif │ │ │ ├── battery-high.glif │ │ │ ├── battery-lock-open.glif │ │ │ ├── battery-lock.glif │ │ │ ├── battery-low.glif │ │ │ ├── battery-medium.glif │ │ │ ├── battery-minus-outline.glif │ │ │ ├── battery-minus-variant.glif │ │ │ ├── battery-minus.glif │ │ │ ├── battery-negative.glif │ │ │ ├── battery-off-outline.glif │ │ │ ├── battery-off.glif │ │ │ ├── battery-outline.glif │ │ │ ├── battery-plus-outline.glif │ │ │ ├── battery-plus-variant.glif │ │ │ ├── battery-plus.glif │ │ │ ├── battery-positive.glif │ │ │ ├── battery-remove-outline.glif │ │ │ ├── battery-remove.glif │ │ │ ├── battery-sync-outline.glif │ │ │ ├── battery-sync.glif │ │ │ ├── battery-unknown-bluetooth.glif │ │ │ ├── battery-unknown.glif │ │ │ ├── battery.glif │ │ │ ├── beach.glif │ │ │ ├── beaker-alert-outline.glif │ │ │ ├── beaker-alert.glif │ │ │ ├── beaker-check-outline.glif │ │ │ ├── beaker-check.glif │ │ │ ├── beaker-minus-outline.glif │ │ │ ├── beaker-minus.glif │ │ │ ├── beaker-outline.glif │ │ │ ├── beaker-plus-outline.glif │ │ │ ├── beaker-plus.glif │ │ │ ├── beaker-question-outline.glif │ │ │ ├── beaker-question.glif │ │ │ ├── beaker-remove-outline.glif │ │ │ ├── beaker-remove.glif │ │ │ ├── beaker.glif │ │ │ ├── bed-double-outline.glif │ │ │ ├── bed-double.glif │ │ │ ├── bed-empty.glif │ │ │ ├── bed-king-outline.glif │ │ │ ├── bed-king.glif │ │ │ ├── bed-outline.glif │ │ │ ├── bed-queen-outline.glif │ │ │ ├── bed-queen.glif │ │ │ ├── bed-single-outline.glif │ │ │ ├── bed-single.glif │ │ │ ├── bed.glif │ │ │ ├── bee-flower.glif │ │ │ ├── bee.glif │ │ │ ├── beehive-off-outline.glif │ │ │ ├── beehive-outline.glif │ │ │ ├── beekeeper.glif │ │ │ ├── beer-outline.glif │ │ │ ├── beer.glif │ │ │ ├── bell-alert-outline.glif │ │ │ ├── bell-alert.glif │ │ │ ├── bell-badge-outline.glif │ │ │ ├── bell-badge.glif │ │ │ ├── bell-cancel-outline.glif │ │ │ ├── bell-cancel.glif │ │ │ ├── bell-check-outline.glif │ │ │ ├── bell-check.glif │ │ │ ├── bell-circle-outline.glif │ │ │ ├── bell-circle.glif │ │ │ ├── bell-cog-outline.glif │ │ │ ├── bell-cog.glif │ │ │ ├── bell-minus-outline.glif │ │ │ ├── bell-minus.glif │ │ │ ├── bell-off-outline.glif │ │ │ ├── bell-off.glif │ │ │ ├── bell-outline.glif │ │ │ ├── bell-plus-outline.glif │ │ │ ├── bell-plus.glif │ │ │ ├── bell-remove-outline.glif │ │ │ ├── bell-remove.glif │ │ │ ├── bell-ring-outline.glif │ │ │ ├── bell-ring.glif │ │ │ ├── bell-sleep-outline.glif │ │ │ ├── bell-sleep.glif │ │ │ ├── bell.glif │ │ │ ├── beta.glif │ │ │ ├── betamax.glif │ │ │ ├── biathlon.glif │ │ │ ├── bicycle-basket.glif │ │ │ ├── bicycle-cargo.glif │ │ │ ├── bicycle-electric.glif │ │ │ ├── bicycle-penny-farthing.glif │ │ │ ├── bicycle.glif │ │ │ ├── bike-fast.glif │ │ │ ├── bike.glif │ │ │ ├── billboard.glif │ │ │ ├── billiards-rack.glif │ │ │ ├── billiards.glif │ │ │ ├── binoculars.glif │ │ │ ├── bio.glif │ │ │ ├── biohazard.glif │ │ │ ├── bird.glif │ │ │ ├── bitbucket.glif │ │ │ ├── bitcoin.glif │ │ │ ├── black-mesa.glif │ │ │ ├── blender-outline.glif │ │ │ ├── blender-software.glif │ │ │ ├── blender.glif │ │ │ ├── blinds-horizontal-closed.glif │ │ │ ├── blinds-horizontal.glif │ │ │ ├── blinds-open.glif │ │ │ ├── blinds-vertical-closed.glif │ │ │ ├── blinds-vertical.glif │ │ │ ├── blinds.glif │ │ │ ├── block-helper.glif │ │ │ ├── blood-bag.glif │ │ │ ├── bluetooth-audio.glif │ │ │ ├── bluetooth-connect.glif │ │ │ ├── bluetooth-off.glif │ │ │ ├── bluetooth-settings.glif │ │ │ ├── bluetooth-transfer.glif │ │ │ ├── bluetooth.glif │ │ │ ├── blur-linear.glif │ │ │ ├── blur-off.glif │ │ │ ├── blur-radial.glif │ │ │ ├── blur.glif │ │ │ ├── bolt.glif │ │ │ ├── bomb-off.glif │ │ │ ├── bomb.glif │ │ │ ├── bone-off.glif │ │ │ ├── bone.glif │ │ │ ├── book-account-outline.glif │ │ │ ├── book-account.glif │ │ │ ├── book-alert-outline.glif │ │ │ ├── book-alert.glif │ │ │ ├── book-alphabet.glif │ │ │ ├── book-arrow-down-outline.glif │ │ │ ├── book-arrow-down.glif │ │ │ ├── book-arrow-left-outline.glif │ │ │ ├── book-arrow-left.glif │ │ │ ├── book-arrow-right-outline.glif │ │ │ ├── book-arrow-right.glif │ │ │ ├── book-arrow-up-outline.glif │ │ │ ├── book-arrow-up.glif │ │ │ ├── book-cancel-outline.glif │ │ │ ├── book-cancel.glif │ │ │ ├── book-check-outline.glif │ │ │ ├── book-check.glif │ │ │ ├── book-clock-outline.glif │ │ │ ├── book-clock.glif │ │ │ ├── book-cog-outline.glif │ │ │ ├── book-cog.glif │ │ │ ├── book-cross.glif │ │ │ ├── book-edit-outline.glif │ │ │ ├── book-edit.glif │ │ │ ├── book-education-outline.glif │ │ │ ├── book-education.glif │ │ │ ├── book-heart-outline.glif │ │ │ ├── book-heart.glif │ │ │ ├── book-information-variant.glif │ │ │ ├── book-lock-open-outline.glif │ │ │ ├── book-lock-open.glif │ │ │ ├── book-lock-outline.glif │ │ │ ├── book-lock.glif │ │ │ ├── book-marker-outline.glif │ │ │ ├── book-marker.glif │ │ │ ├── book-minus-multiple-outline.glif │ │ │ ├── book-minus-multiple.glif │ │ │ ├── book-minus-outline.glif │ │ │ ├── book-minus.glif │ │ │ ├── book-multiple-outline.glif │ │ │ ├── book-multiple.glif │ │ │ ├── book-music-outline.glif │ │ │ ├── book-music.glif │ │ │ ├── book-off-outline.glif │ │ │ ├── book-off.glif │ │ │ ├── book-open-blank-variant.glif │ │ │ ├── book-open-outline.glif │ │ │ ├── book-open-page-variant-outline.glif │ │ │ ├── book-open-page-variant.glif │ │ │ ├── book-open-variant.glif │ │ │ ├── book-open.glif │ │ │ ├── book-outline.glif │ │ │ ├── book-play-outline.glif │ │ │ ├── book-play.glif │ │ │ ├── book-plus-multiple-outline.glif │ │ │ ├── book-plus-multiple.glif │ │ │ ├── book-plus-outline.glif │ │ │ ├── book-plus.glif │ │ │ ├── book-refresh-outline.glif │ │ │ ├── book-refresh.glif │ │ │ ├── book-remove-multiple-outline.glif │ │ │ ├── book-remove-multiple.glif │ │ │ ├── book-remove-outline.glif │ │ │ ├── book-remove.glif │ │ │ ├── book-search-outline.glif │ │ │ ├── book-search.glif │ │ │ ├── book-settings-outline.glif │ │ │ ├── book-settings.glif │ │ │ ├── book-sync-outline.glif │ │ │ ├── book-sync.glif │ │ │ ├── book-variant-multiple.glif │ │ │ ├── book-variant.glif │ │ │ ├── book.glif │ │ │ ├── bookmark-box-multiple-outline.glif │ │ │ ├── bookmark-box-multiple.glif │ │ │ ├── bookmark-check-outline.glif │ │ │ ├── bookmark-check.glif │ │ │ ├── bookmark-minus-outline.glif │ │ │ ├── bookmark-minus.glif │ │ │ ├── bookmark-multiple-outline.glif │ │ │ ├── bookmark-multiple.glif │ │ │ ├── bookmark-music-outline.glif │ │ │ ├── bookmark-music.glif │ │ │ ├── bookmark-off-outline.glif │ │ │ ├── bookmark-off.glif │ │ │ ├── bookmark-outline.glif │ │ │ ├── bookmark-plus-outline.glif │ │ │ ├── bookmark-plus.glif │ │ │ ├── bookmark-remove-outline.glif │ │ │ ├── bookmark-remove.glif │ │ │ ├── bookmark.glif │ │ │ ├── bookshelf.glif │ │ │ ├── boom-gate-alert-outline.glif │ │ │ ├── boom-gate-alert.glif │ │ │ ├── boom-gate-arrow-down-outline.glif │ │ │ ├── boom-gate-arrow-down.glif │ │ │ ├── boom-gate-arrow-up-outline.glif │ │ │ ├── boom-gate-arrow-up.glif │ │ │ ├── boom-gate-outline.glif │ │ │ ├── boom-gate-up-outline.glif │ │ │ ├── boom-gate-up.glif │ │ │ ├── boom-gate.glif │ │ │ ├── boombox.glif │ │ │ ├── boomerang.glif │ │ │ ├── bootstrap.glif │ │ │ ├── border-all-variant.glif │ │ │ ├── border-all.glif │ │ │ ├── border-bottom-variant.glif │ │ │ ├── border-bottom.glif │ │ │ ├── border-color.glif │ │ │ ├── border-horizontal.glif │ │ │ ├── border-inside.glif │ │ │ ├── border-left-variant.glif │ │ │ ├── border-left.glif │ │ │ ├── border-none-variant.glif │ │ │ ├── border-none.glif │ │ │ ├── border-outside.glif │ │ │ ├── border-right-variant.glif │ │ │ ├── border-right.glif │ │ │ ├── border-style.glif │ │ │ ├── border-top-variant.glif │ │ │ ├── border-top.glif │ │ │ ├── border-vertical.glif │ │ │ ├── bottle-soda-classic-outline.glif │ │ │ ├── bottle-soda-classic.glif │ │ │ ├── bottle-soda-outline.glif │ │ │ ├── bottle-soda.glif │ │ │ ├── bottle-tonic-outline.glif │ │ │ ├── bottle-tonic-plus-outline.glif │ │ │ ├── bottle-tonic-plus.glif │ │ │ ├── bottle-tonic-skull-outline.glif │ │ │ ├── bottle-tonic-skull.glif │ │ │ ├── bottle-tonic.glif │ │ │ ├── bottle-wine-outline.glif │ │ │ ├── bottle-wine.glif │ │ │ ├── bow-arrow.glif │ │ │ ├── bow-tie.glif │ │ │ ├── bowl-mix-outline.glif │ │ │ ├── bowl-mix.glif │ │ │ ├── bowl-outline.glif │ │ │ ├── bowl.glif │ │ │ ├── bowling.glif │ │ │ ├── box-cutter-off.glif │ │ │ ├── box-cutter.glif │ │ │ ├── box-shadow.glif │ │ │ ├── box.glif │ │ │ ├── boxing-glove.glif │ │ │ ├── braille.glif │ │ │ ├── brain.glif │ │ │ ├── bread-slice-outline.glif │ │ │ ├── bread-slice.glif │ │ │ ├── bridge.glif │ │ │ ├── briefcase-account-outline.glif │ │ │ ├── briefcase-account.glif │ │ │ ├── briefcase-arrow-left-right-outline.glif │ │ │ ├── briefcase-arrow-left-right.glif │ │ │ ├── briefcase-arrow-up-down-outline.glif │ │ │ ├── briefcase-arrow-up-down.glif │ │ │ ├── briefcase-check-outline.glif │ │ │ ├── briefcase-check.glif │ │ │ ├── briefcase-clock-outline.glif │ │ │ ├── briefcase-clock.glif │ │ │ ├── briefcase-download-outline.glif │ │ │ ├── briefcase-download.glif │ │ │ ├── briefcase-edit-outline.glif │ │ │ ├── briefcase-edit.glif │ │ │ ├── briefcase-eye-outline.glif │ │ │ ├── briefcase-eye.glif │ │ │ ├── briefcase-minus-outline.glif │ │ │ ├── briefcase-minus.glif │ │ │ ├── briefcase-off-outline.glif │ │ │ ├── briefcase-off.glif │ │ │ ├── briefcase-outline.glif │ │ │ ├── briefcase-plus-outline.glif │ │ │ ├── briefcase-plus.glif │ │ │ ├── briefcase-remove-outline.glif │ │ │ ├── briefcase-remove.glif │ │ │ ├── briefcase-search-outline.glif │ │ │ ├── briefcase-search.glif │ │ │ ├── briefcase-upload-outline.glif │ │ │ ├── briefcase-upload.glif │ │ │ ├── briefcase-variant-off-outline.glif │ │ │ ├── briefcase-variant-off.glif │ │ │ ├── briefcase-variant-outline.glif │ │ │ ├── briefcase-variant.glif │ │ │ ├── briefcase.glif │ │ │ ├── brightness-1.glif │ │ │ ├── brightness-2.glif │ │ │ ├── brightness-3.glif │ │ │ ├── brightness-4.glif │ │ │ ├── brightness-5.glif │ │ │ ├── brightness-6.glif │ │ │ ├── brightness-7.glif │ │ │ ├── brightness-auto.glif │ │ │ ├── brightness-percent.glif │ │ │ ├── broadcast-off.glif │ │ │ ├── broadcast.glif │ │ │ ├── broom.glif │ │ │ ├── brush-off.glif │ │ │ ├── brush-outline.glif │ │ │ ├── brush-variant.glif │ │ │ ├── brush.glif │ │ │ ├── bucket-outline.glif │ │ │ ├── bucket.glif │ │ │ ├── buffet.glif │ │ │ ├── bug-check-outline.glif │ │ │ ├── bug-check.glif │ │ │ ├── bug-outline.glif │ │ │ ├── bug.glif │ │ │ ├── bugle.glif │ │ │ ├── bulkhead-light.glif │ │ │ ├── bulldozer.glif │ │ │ ├── bullet.glif │ │ │ ├── bulletin-board.glif │ │ │ ├── bullhorn-outline.glif │ │ │ ├── bullhorn-variant-outline.glif │ │ │ ├── bullhorn-variant.glif │ │ │ ├── bullhorn.glif │ │ │ ├── bullseye-arrow.glif │ │ │ ├── bullseye.glif │ │ │ ├── bulma.glif │ │ │ ├── bunk-bed-outline.glif │ │ │ ├── bunk-bed.glif │ │ │ ├── bus-alert.glif │ │ │ ├── bus-articulated-end.glif │ │ │ ├── bus-articulated-front.glif │ │ │ ├── bus-clock.glif │ │ │ ├── bus-double-decker.glif │ │ │ ├── bus-electric.glif │ │ │ ├── bus-marker.glif │ │ │ ├── bus-multiple.glif │ │ │ ├── bus-school.glif │ │ │ ├── bus-side.glif │ │ │ ├── bus-stop-covered.glif │ │ │ ├── bus-stop-uncovered.glif │ │ │ ├── bus-stop.glif │ │ │ ├── bus.glif │ │ │ ├── butterfly-outline.glif │ │ │ ├── butterfly.glif │ │ │ ├── cabin-a-frame.glif │ │ │ ├── cable-data.glif │ │ │ ├── cached.glif │ │ │ ├── cactus.glif │ │ │ ├── cake-layered.glif │ │ │ ├── cake-variant-outline.glif │ │ │ ├── cake-variant.glif │ │ │ ├── cake.glif │ │ │ ├── calculator-variant-outline.glif │ │ │ ├── calculator-variant.glif │ │ │ ├── calculator.glif │ │ │ ├── calendar-account-outline.glif │ │ │ ├── calendar-account.glif │ │ │ ├── calendar-alert.glif │ │ │ ├── calendar-arrow-left.glif │ │ │ ├── calendar-arrow-right.glif │ │ │ ├── calendar-blank-multiple.glif │ │ │ ├── calendar-blank-outline.glif │ │ │ ├── calendar-blank.glif │ │ │ ├── calendar-check-outline.glif │ │ │ ├── calendar-check.glif │ │ │ ├── calendar-clock-outline.glif │ │ │ ├── calendar-clock.glif │ │ │ ├── calendar-collapse-horizontal.glif │ │ │ ├── calendar-cursor.glif │ │ │ ├── calendar-edit.glif │ │ │ ├── calendar-end.glif │ │ │ ├── calendar-expand-horizontal.glif │ │ │ ├── calendar-export.glif │ │ │ ├── calendar-heart.glif │ │ │ ├── calendar-import.glif │ │ │ ├── calendar-lock-outline.glif │ │ │ ├── calendar-lock.glif │ │ │ ├── calendar-minus.glif │ │ │ ├── calendar-month-outline.glif │ │ │ ├── calendar-month.glif │ │ │ ├── calendar-multiple-check.glif │ │ │ ├── calendar-multiple.glif │ │ │ ├── calendar-multiselect.glif │ │ │ ├── calendar-outline.glif │ │ │ ├── calendar-plus.glif │ │ │ ├── calendar-question.glif │ │ │ ├── calendar-range-outline.glif │ │ │ ├── calendar-range.glif │ │ │ ├── calendar-refresh-outline.glif │ │ │ ├── calendar-refresh.glif │ │ │ ├── calendar-remove-outline.glif │ │ │ ├── calendar-remove.glif │ │ │ ├── calendar-search.glif │ │ │ ├── calendar-star.glif │ │ │ ├── calendar-start.glif │ │ │ ├── calendar-sync-outline.glif │ │ │ ├── calendar-sync.glif │ │ │ ├── calendar-text-outline.glif │ │ │ ├── calendar-text.glif │ │ │ ├── calendar-today-outline.glif │ │ │ ├── calendar-today.glif │ │ │ ├── calendar-week-begin-outline.glif │ │ │ ├── calendar-week-begin.glif │ │ │ ├── calendar-week-end-outline.glif │ │ │ ├── calendar-week-end.glif │ │ │ ├── calendar-week-outline.glif │ │ │ ├── calendar-week.glif │ │ │ ├── calendar-weekend-outline.glif │ │ │ ├── calendar-weekend.glif │ │ │ ├── calendar.glif │ │ │ ├── call-made.glif │ │ │ ├── call-merge.glif │ │ │ ├── call-missed.glif │ │ │ ├── call-received.glif │ │ │ ├── call-split.glif │ │ │ ├── camcorder-off.glif │ │ │ ├── camcorder.glif │ │ │ ├── camera-account.glif │ │ │ ├── camera-burst.glif │ │ │ ├── camera-control.glif │ │ │ ├── camera-document-off.glif │ │ │ ├── camera-document.glif │ │ │ ├── camera-enhance-outline.glif │ │ │ ├── camera-enhance.glif │ │ │ ├── camera-flip-outline.glif │ │ │ ├── camera-flip.glif │ │ │ ├── camera-front-variant.glif │ │ │ ├── camera-front.glif │ │ │ ├── camera-gopro.glif │ │ │ ├── camera-image.glif │ │ │ ├── camera-iris.glif │ │ │ ├── camera-lock-outline.glif │ │ │ ├── camera-lock.glif │ │ │ ├── camera-marker-outline.glif │ │ │ ├── camera-marker.glif │ │ │ ├── camera-metering-center.glif │ │ │ ├── camera-metering-matrix.glif │ │ │ ├── camera-metering-partial.glif │ │ │ ├── camera-metering-spot.glif │ │ │ ├── camera-off-outline.glif │ │ │ ├── camera-off.glif │ │ │ ├── camera-outline.glif │ │ │ ├── camera-party-mode.glif │ │ │ ├── camera-plus-outline.glif │ │ │ ├── camera-plus.glif │ │ │ ├── camera-rear-variant.glif │ │ │ ├── camera-rear.glif │ │ │ ├── camera-retake-outline.glif │ │ │ ├── camera-retake.glif │ │ │ ├── camera-switch-outline.glif │ │ │ ├── camera-switch.glif │ │ │ ├── camera-timer.glif │ │ │ ├── camera-wireless-outline.glif │ │ │ ├── camera-wireless.glif │ │ │ ├── camera.glif │ │ │ ├── campfire.glif │ │ │ ├── cancel.glif │ │ │ ├── candelabra-fire.glif │ │ │ ├── candelabra.glif │ │ │ ├── candle.glif │ │ │ ├── candy-off-outline.glif │ │ │ ├── candy-off.glif │ │ │ ├── candy-outline.glif │ │ │ ├── candy.glif │ │ │ ├── candycane.glif │ │ │ ├── cannabis-off.glif │ │ │ ├── cannabis.glif │ │ │ ├── caps-lock.glif │ │ │ ├── car-2-plus.glif │ │ │ ├── car-3-plus.glif │ │ │ ├── car-arrow-left.glif │ │ │ ├── car-arrow-right.glif │ │ │ ├── car-back.glif │ │ │ ├── car-battery.glif │ │ │ ├── car-brake-abs.glif │ │ │ ├── car-brake-alert.glif │ │ │ ├── car-brake-fluid-level.glif │ │ │ ├── car-brake-hold.glif │ │ │ ├── car-brake-low-pressure.glif │ │ │ ├── car-brake-parking.glif │ │ │ ├── car-brake-retarder.glif │ │ │ ├── car-brake-temperature.glif │ │ │ ├── car-brake-worn-linings.glif │ │ │ ├── car-child-seat.glif │ │ │ ├── car-clock.glif │ │ │ ├── car-clutch.glif │ │ │ ├── car-cog.glif │ │ │ ├── car-connected.glif │ │ │ ├── car-convertible.glif │ │ │ ├── car-coolant-level.glif │ │ │ ├── car-cruise-control.glif │ │ │ ├── car-defrost-front.glif │ │ │ ├── car-defrost-rear.glif │ │ │ ├── car-door-lock.glif │ │ │ ├── car-door.glif │ │ │ ├── car-electric-outline.glif │ │ │ ├── car-electric.glif │ │ │ ├── car-emergency.glif │ │ │ ├── car-esp.glif │ │ │ ├── car-estate.glif │ │ │ ├── car-hatchback.glif │ │ │ ├── car-info.glif │ │ │ ├── car-key.glif │ │ │ ├── car-lifted-pickup.glif │ │ │ ├── car-light-alert.glif │ │ │ ├── car-light-dimmed.glif │ │ │ ├── car-light-fog.glif │ │ │ ├── car-light-high.glif │ │ │ ├── car-limousine.glif │ │ │ ├── car-multiple.glif │ │ │ ├── car-off.glif │ │ │ ├── car-outline.glif │ │ │ ├── car-parking-lights.glif │ │ │ ├── car-pickup.glif │ │ │ ├── car-seat-cooler.glif │ │ │ ├── car-seat-heater.glif │ │ │ ├── car-seat.glif │ │ │ ├── car-select.glif │ │ │ ├── car-settings.glif │ │ │ ├── car-shift-pattern.glif │ │ │ ├── car-side.glif │ │ │ ├── car-speed-limiter.glif │ │ │ ├── car-sports.glif │ │ │ ├── car-tire-alert.glif │ │ │ ├── car-traction-control.glif │ │ │ ├── car-turbocharger.glif │ │ │ ├── car-wash.glif │ │ │ ├── car-windshield-outline.glif │ │ │ ├── car-windshield.glif │ │ │ ├── car-wireless.glif │ │ │ ├── car-wrench.glif │ │ │ ├── car.glif │ │ │ ├── carabiner.glif │ │ │ ├── caravan.glif │ │ │ ├── card-account-details-outline.glif │ │ │ ├── card-account-details-star-outline.glif │ │ │ ├── card-account-details-star.glif │ │ │ ├── card-account-details.glif │ │ │ ├── card-account-mail-outline.glif │ │ │ ├── card-account-mail.glif │ │ │ ├── card-account-phone-outline.glif │ │ │ ├── card-account-phone.glif │ │ │ ├── card-bulleted-off-outline.glif │ │ │ ├── card-bulleted-off.glif │ │ │ ├── card-bulleted-outline.glif │ │ │ ├── card-bulleted-settings-outline.glif │ │ │ ├── card-bulleted-settings.glif │ │ │ ├── card-bulleted.glif │ │ │ ├── card-minus-outline.glif │ │ │ ├── card-minus.glif │ │ │ ├── card-multiple-outline.glif │ │ │ ├── card-multiple.glif │ │ │ ├── card-off-outline.glif │ │ │ ├── card-off.glif │ │ │ ├── card-outline.glif │ │ │ ├── card-plus-outline.glif │ │ │ ├── card-plus.glif │ │ │ ├── card-remove-outline.glif │ │ │ ├── card-remove.glif │ │ │ ├── card-search-outline.glif │ │ │ ├── card-search.glif │ │ │ ├── card-text-outline.glif │ │ │ ├── card-text.glif │ │ │ ├── card.glif │ │ │ ├── cards-club-outline.glif │ │ │ ├── cards-club.glif │ │ │ ├── cards-diamond-outline.glif │ │ │ ├── cards-diamond.glif │ │ │ ├── cards-outline.glif │ │ │ ├── cards-playing-club-multiple-outline.glif │ │ │ ├── cards-playing-club-multiple.glif │ │ │ ├── cards-playing-club-outline.glif │ │ │ ├── cards-playing-club.glif │ │ │ ├── cards-playing-diamond-multiple-outline.glif │ │ │ ├── cards-playing-diamond-multiple.glif │ │ │ ├── cards-playing-diamond-outline.glif │ │ │ ├── cards-playing-diamond.glif │ │ │ ├── cards-playing-heart-multiple-outline.glif │ │ │ ├── cards-playing-heart-multiple.glif │ │ │ ├── cards-playing-heart-outline.glif │ │ │ ├── cards-playing-heart.glif │ │ │ ├── cards-playing-outline.glif │ │ │ ├── cards-playing-spade-multiple-outline.glif │ │ │ ├── cards-playing-spade-multiple.glif │ │ │ ├── cards-playing-spade-outline.glif │ │ │ ├── cards-playing-spade.glif │ │ │ ├── cards-playing.glif │ │ │ ├── cards-spade-outline.glif │ │ │ ├── cards-spade.glif │ │ │ ├── cards-variant.glif │ │ │ ├── cards.glif │ │ │ ├── carrot.glif │ │ │ ├── cart-arrow-down.glif │ │ │ ├── cart-arrow-right.glif │ │ │ ├── cart-arrow-up.glif │ │ │ ├── cart-check.glif │ │ │ ├── cart-heart.glif │ │ │ ├── cart-minus.glif │ │ │ ├── cart-off.glif │ │ │ ├── cart-outline.glif │ │ │ ├── cart-plus.glif │ │ │ ├── cart-remove.glif │ │ │ ├── cart-variant.glif │ │ │ ├── cart.glif │ │ │ ├── case-sensitive-alt.glif │ │ │ ├── cash-100.glif │ │ │ ├── cash-check.glif │ │ │ ├── cash-clock.glif │ │ │ ├── cash-fast.glif │ │ │ ├── cash-lock-open.glif │ │ │ ├── cash-lock.glif │ │ │ ├── cash-marker.glif │ │ │ ├── cash-minus.glif │ │ │ ├── cash-multiple.glif │ │ │ ├── cash-plus.glif │ │ │ ├── cash-refund.glif │ │ │ ├── cash-register.glif │ │ │ ├── cash-remove.glif │ │ │ ├── cash-sync.glif │ │ │ ├── cash.glif │ │ │ ├── cassette.glif │ │ │ ├── cast-audio-variant.glif │ │ │ ├── cast-audio.glif │ │ │ ├── cast-connected.glif │ │ │ ├── cast-education.glif │ │ │ ├── cast-off.glif │ │ │ ├── cast-variant.glif │ │ │ ├── cast.glif │ │ │ ├── castle.glif │ │ │ ├── cat.glif │ │ │ ├── cctv-off.glif │ │ │ ├── cctv.glif │ │ │ ├── ceiling-fan-light.glif │ │ │ ├── ceiling-fan.glif │ │ │ ├── ceiling-light-multiple-outline.glif │ │ │ ├── ceiling-light-multiple.glif │ │ │ ├── ceiling-light-outline.glif │ │ │ ├── ceiling-light.glif │ │ │ ├── cellphone-arrow-down-variant.glif │ │ │ ├── cellphone-arrow-down.glif │ │ │ ├── cellphone-basic.glif │ │ │ ├── cellphone-charging.glif │ │ │ ├── cellphone-check.glif │ │ │ ├── cellphone-cog.glif │ │ │ ├── cellphone-dock.glif │ │ │ ├── cellphone-information.glif │ │ │ ├── cellphone-key.glif │ │ │ ├── cellphone-link-off.glif │ │ │ ├── cellphone-link.glif │ │ │ ├── cellphone-lock.glif │ │ │ ├── cellphone-marker.glif │ │ │ ├── cellphone-message-off.glif │ │ │ ├── cellphone-message.glif │ │ │ ├── cellphone-nfc-off.glif │ │ │ ├── cellphone-nfc.glif │ │ │ ├── cellphone-off.glif │ │ │ ├── cellphone-play.glif │ │ │ ├── cellphone-remove.glif │ │ │ ├── cellphone-screenshot.glif │ │ │ ├── cellphone-settings.glif │ │ │ ├── cellphone-sound.glif │ │ │ ├── cellphone-text.glif │ │ │ ├── cellphone-wireless.glif │ │ │ ├── cellphone.glif │ │ │ ├── centos.glif │ │ │ ├── certificate-outline.glif │ │ │ ├── certificate.glif │ │ │ ├── chair-rolling.glif │ │ │ ├── chair-school.glif │ │ │ ├── chandelier.glif │ │ │ ├── charity.glif │ │ │ ├── chart-arc.glif │ │ │ ├── chart-areaspline-variant.glif │ │ │ ├── chart-areaspline.glif │ │ │ ├── chart-bar-stacked.glif │ │ │ ├── chart-bar.glif │ │ │ ├── chart-bell-curve-cumulative.glif │ │ │ ├── chart-bell-curve.glif │ │ │ ├── chart-box-outline.glif │ │ │ ├── chart-box-plus-outline.glif │ │ │ ├── chart-box.glif │ │ │ ├── chart-bubble.glif │ │ │ ├── chart-donut-variant.glif │ │ │ ├── chart-donut.glif │ │ │ ├── chart-gantt.glif │ │ │ ├── chart-histogram.glif │ │ │ ├── chart-line-stacked.glif │ │ │ ├── chart-line-variant.glif │ │ │ ├── chart-line.glif │ │ │ ├── chart-multiline.glif │ │ │ ├── chart-multiple.glif │ │ │ ├── chart-pie.glif │ │ │ ├── chart-ppf.glif │ │ │ ├── chart-sankey-variant.glif │ │ │ ├── chart-sankey.glif │ │ │ ├── chart-scatter-plot-hexbin.glif │ │ │ ├── chart-scatter-plot.glif │ │ │ ├── chart-timeline-variant-shimmer.glif │ │ │ ├── chart-timeline-variant.glif │ │ │ ├── chart-timeline.glif │ │ │ ├── chart-tree.glif │ │ │ ├── chart-waterfall.glif │ │ │ ├── chat-alert-outline.glif │ │ │ ├── chat-alert.glif │ │ │ ├── chat-minus-outline.glif │ │ │ ├── chat-minus.glif │ │ │ ├── chat-outline.glif │ │ │ ├── chat-plus-outline.glif │ │ │ ├── chat-plus.glif │ │ │ ├── chat-processing-outline.glif │ │ │ ├── chat-processing.glif │ │ │ ├── chat-question-outline.glif │ │ │ ├── chat-question.glif │ │ │ ├── chat-remove-outline.glif │ │ │ ├── chat-remove.glif │ │ │ ├── chat-sleep-outline.glif │ │ │ ├── chat-sleep.glif │ │ │ ├── chat.glif │ │ │ ├── check-all.glif │ │ │ ├── check-bold.glif │ │ │ ├── check-circle-outline.glif │ │ │ ├── check-circle.glif │ │ │ ├── check-decagram-outline.glif │ │ │ ├── check-decagram.glif │ │ │ ├── check-network-outline.glif │ │ │ ├── check-network.glif │ │ │ ├── check-outline.glif │ │ │ ├── check-underline-circle-outline.glif │ │ │ ├── check-underline-circle.glif │ │ │ ├── check-underline.glif │ │ │ ├── check.glif │ │ │ ├── checkbook.glif │ │ │ ├── checkbox-blank-badge-outline.glif │ │ │ ├── checkbox-blank-badge.glif │ │ │ ├── checkbox-blank-circle-outline.glif │ │ │ ├── checkbox-blank-circle.glif │ │ │ ├── checkbox-blank-off-outline.glif │ │ │ ├── checkbox-blank-off.glif │ │ │ ├── checkbox-blank-outline.glif │ │ │ ├── checkbox-blank.glif │ │ │ ├── checkbox-intermediate.glif │ │ │ ├── checkbox-marked-circle-outline.glif │ │ │ ├── checkbox-marked-circle-plus-outline.glif │ │ │ ├── checkbox-marked-circle.glif │ │ │ ├── checkbox-marked-outline.glif │ │ │ ├── checkbox-marked.glif │ │ │ ├── checkbox-multiple-blank-circle-outline.glif │ │ │ ├── checkbox-multiple-blank-circle.glif │ │ │ ├── checkbox-multiple-blank-outline.glif │ │ │ ├── checkbox-multiple-blank.glif │ │ │ ├── checkbox-multiple-marked-circle-outline.glif │ │ │ ├── checkbox-multiple-marked-circle.glif │ │ │ ├── checkbox-multiple-marked-outline.glif │ │ │ ├── checkbox-multiple-marked.glif │ │ │ ├── checkbox-multiple-outline.glif │ │ │ ├── checkbox-outline.glif │ │ │ ├── checkerboard-minus.glif │ │ │ ├── checkerboard-plus.glif │ │ │ ├── checkerboard-remove.glif │ │ │ ├── checkerboard.glif │ │ │ ├── cheese-off.glif │ │ │ ├── cheese.glif │ │ │ ├── chef-hat.glif │ │ │ ├── chemical-weapon.glif │ │ │ ├── chess-bishop.glif │ │ │ ├── chess-king.glif │ │ │ ├── chess-knight.glif │ │ │ ├── chess-pawn.glif │ │ │ ├── chess-queen.glif │ │ │ ├── chess-rook.glif │ │ │ ├── chevron-double-down.glif │ │ │ ├── chevron-double-left.glif │ │ │ ├── chevron-double-right.glif │ │ │ ├── chevron-double-up.glif │ │ │ ├── chevron-down-box-outline.glif │ │ │ ├── chevron-down-box.glif │ │ │ ├── chevron-down-circle-outline.glif │ │ │ ├── chevron-down-circle.glif │ │ │ ├── chevron-down.glif │ │ │ ├── chevron-left-box-outline.glif │ │ │ ├── chevron-left-box.glif │ │ │ ├── chevron-left-circle-outline.glif │ │ │ ├── chevron-left-circle.glif │ │ │ ├── chevron-left.glif │ │ │ ├── chevron-right-box-outline.glif │ │ │ ├── chevron-right-box.glif │ │ │ ├── chevron-right-circle-outline.glif │ │ │ ├── chevron-right-circle.glif │ │ │ ├── chevron-right.glif │ │ │ ├── chevron-triple-down.glif │ │ │ ├── chevron-triple-left.glif │ │ │ ├── chevron-triple-right.glif │ │ │ ├── chevron-triple-up.glif │ │ │ ├── chevron-up-box-outline.glif │ │ │ ├── chevron-up-box.glif │ │ │ ├── chevron-up-circle-outline.glif │ │ │ ├── chevron-up-circle.glif │ │ │ ├── chevron-up.glif │ │ │ ├── chili-alert-outline.glif │ │ │ ├── chili-alert.glif │ │ │ ├── chili-hot-outline.glif │ │ │ ├── chili-hot.glif │ │ │ ├── chili-medium-outline.glif │ │ │ ├── chili-medium.glif │ │ │ ├── chili-mild-outline.glif │ │ │ ├── chili-mild.glif │ │ │ ├── chili-off-outline.glif │ │ │ ├── chili-off.glif │ │ │ ├── chip.glif │ │ │ ├── church.glif │ │ │ ├── cigar-off.glif │ │ │ ├── cigar.glif │ │ │ ├── circle-box-outline.glif │ │ │ ├── circle-box.glif │ │ │ ├── circle-double.glif │ │ │ ├── circle-edit-outline.glif │ │ │ ├── circle-expand.glif │ │ │ ├── circle-half-full.glif │ │ │ ├── circle-half.glif │ │ │ ├── circle-medium.glif │ │ │ ├── circle-multiple-outline.glif │ │ │ ├── circle-multiple.glif │ │ │ ├── circle-off-outline.glif │ │ │ ├── circle-opacity.glif │ │ │ ├── circle-slice-1.glif │ │ │ ├── circle-slice-2.glif │ │ │ ├── circle-slice-3.glif │ │ │ ├── circle-slice-4.glif │ │ │ ├── circle-slice-5.glif │ │ │ ├── circle-slice-6.glif │ │ │ ├── circle-slice-7.glif │ │ │ ├── circle-slice-8.glif │ │ │ ├── circle-small.glif │ │ │ ├── circular-saw.glif │ │ │ ├── city-variant-outline.glif │ │ │ ├── city-variant.glif │ │ │ ├── city.glif │ │ │ ├── clipboard-account-outline.glif │ │ │ ├── clipboard-account.glif │ │ │ ├── clipboard-alert-outline.glif │ │ │ ├── clipboard-alert.glif │ │ │ ├── clipboard-arrow-down-outline.glif │ │ │ ├── clipboard-arrow-down.glif │ │ │ ├── clipboard-arrow-left-outline.glif │ │ │ ├── clipboard-arrow-left.glif │ │ │ ├── clipboard-arrow-right-outline.glif │ │ │ ├── clipboard-arrow-right.glif │ │ │ ├── clipboard-arrow-up-outline.glif │ │ │ ├── clipboard-arrow-up.glif │ │ │ ├── clipboard-check-multiple-outline.glif │ │ │ ├── clipboard-check-multiple.glif │ │ │ ├── clipboard-check-outline.glif │ │ │ ├── clipboard-check.glif │ │ │ ├── clipboard-clock-outline.glif │ │ │ ├── clipboard-clock.glif │ │ │ ├── clipboard-edit-outline.glif │ │ │ ├── clipboard-edit.glif │ │ │ ├── clipboard-file-outline.glif │ │ │ ├── clipboard-file.glif │ │ │ ├── clipboard-flow-outline.glif │ │ │ ├── clipboard-flow.glif │ │ │ ├── clipboard-list-outline.glif │ │ │ ├── clipboard-list.glif │ │ │ ├── clipboard-minus-outline.glif │ │ │ ├── clipboard-minus.glif │ │ │ ├── clipboard-multiple-outline.glif │ │ │ ├── clipboard-multiple.glif │ │ │ ├── clipboard-off-outline.glif │ │ │ ├── clipboard-off.glif │ │ │ ├── clipboard-outline.glif │ │ │ ├── clipboard-play-multiple-outline.glif │ │ │ ├── clipboard-play-multiple.glif │ │ │ ├── clipboard-play-outline.glif │ │ │ ├── clipboard-play.glif │ │ │ ├── clipboard-plus-outline.glif │ │ │ ├── clipboard-plus.glif │ │ │ ├── clipboard-pulse-outline.glif │ │ │ ├── clipboard-pulse.glif │ │ │ ├── clipboard-remove-outline.glif │ │ │ ├── clipboard-remove.glif │ │ │ ├── clipboard-search-outline.glif │ │ │ ├── clipboard-search.glif │ │ │ ├── clipboard-text-clock-outline.glif │ │ │ ├── clipboard-text-clock.glif │ │ │ ├── clipboard-text-multiple-outline.glif │ │ │ ├── clipboard-text-multiple.glif │ │ │ ├── clipboard-text-off-outline.glif │ │ │ ├── clipboard-text-off.glif │ │ │ ├── clipboard-text-outline.glif │ │ │ ├── clipboard-text-play-outline.glif │ │ │ ├── clipboard-text-play.glif │ │ │ ├── clipboard-text-search-outline.glif │ │ │ ├── clipboard-text-search.glif │ │ │ ├── clipboard-text.glif │ │ │ ├── clipboard.glif │ │ │ ├── clippy.glif │ │ │ ├── clock-alert-outline.glif │ │ │ ├── clock-alert.glif │ │ │ ├── clock-check-outline.glif │ │ │ ├── clock-check.glif │ │ │ ├── clock-digital.glif │ │ │ ├── clock-edit-outline.glif │ │ │ ├── clock-edit.glif │ │ │ ├── clock-end.glif │ │ │ ├── clock-fast.glif │ │ │ ├── clock-in.glif │ │ │ ├── clock-minus-outline.glif │ │ │ ├── clock-minus.glif │ │ │ ├── clock-out.glif │ │ │ ├── clock-outline.glif │ │ │ ├── clock-plus-outline.glif │ │ │ ├── clock-plus.glif │ │ │ ├── clock-remove-outline.glif │ │ │ ├── clock-remove.glif │ │ │ ├── clock-start.glif │ │ │ ├── clock-time-eight-outline.glif │ │ │ ├── clock-time-eight.glif │ │ │ ├── clock-time-eleven-outline.glif │ │ │ ├── clock-time-eleven.glif │ │ │ ├── clock-time-five-outline.glif │ │ │ ├── clock-time-five.glif │ │ │ ├── clock-time-four-outline.glif │ │ │ ├── clock-time-four.glif │ │ │ ├── clock-time-nine-outline.glif │ │ │ ├── clock-time-nine.glif │ │ │ ├── clock-time-one-outline.glif │ │ │ ├── clock-time-one.glif │ │ │ ├── clock-time-seven-outline.glif │ │ │ ├── clock-time-seven.glif │ │ │ ├── clock-time-six-outline.glif │ │ │ ├── clock-time-six.glif │ │ │ ├── clock-time-ten-outline.glif │ │ │ ├── clock-time-ten.glif │ │ │ ├── clock-time-three-outline.glif │ │ │ ├── clock-time-three.glif │ │ │ ├── clock-time-twelve-outline.glif │ │ │ ├── clock-time-twelve.glif │ │ │ ├── clock-time-two-outline.glif │ │ │ ├── clock-time-two.glif │ │ │ ├── clock.glif │ │ │ ├── close-box-multiple-outline.glif │ │ │ ├── close-box-multiple.glif │ │ │ ├── close-box-outline.glif │ │ │ ├── close-box.glif │ │ │ ├── close-circle-multiple-outline.glif │ │ │ ├── close-circle-multiple.glif │ │ │ ├── close-circle-outline.glif │ │ │ ├── close-circle.glif │ │ │ ├── close-network-outline.glif │ │ │ ├── close-network.glif │ │ │ ├── close-octagon-outline.glif │ │ │ ├── close-octagon.glif │ │ │ ├── close-outline.glif │ │ │ ├── close-thick.glif │ │ │ ├── close.glif │ │ │ ├── closed-caption-outline.glif │ │ │ ├── closed-caption.glif │ │ │ ├── cloud-alert.glif │ │ │ ├── cloud-braces.glif │ │ │ ├── cloud-check-outline.glif │ │ │ ├── cloud-check.glif │ │ │ ├── cloud-circle.glif │ │ │ ├── cloud-download-outline.glif │ │ │ ├── cloud-download.glif │ │ │ ├── cloud-lock-outline.glif │ │ │ ├── cloud-lock.glif │ │ │ ├── cloud-off-outline.glif │ │ │ ├── cloud-outline.glif │ │ │ ├── cloud-percent-outline.glif │ │ │ ├── cloud-percent.glif │ │ │ ├── cloud-print-outline.glif │ │ │ ├── cloud-print.glif │ │ │ ├── cloud-question.glif │ │ │ ├── cloud-refresh.glif │ │ │ ├── cloud-search-outline.glif │ │ │ ├── cloud-search.glif │ │ │ ├── cloud-sync-outline.glif │ │ │ ├── cloud-sync.glif │ │ │ ├── cloud-tags.glif │ │ │ ├── cloud-upload-outline.glif │ │ │ ├── cloud-upload.glif │ │ │ ├── cloud.glif │ │ │ ├── clover.glif │ │ │ ├── coach-lamp-variant.glif │ │ │ ├── coach-lamp.glif │ │ │ ├── coat-rack.glif │ │ │ ├── code-array.glif │ │ │ ├── code-braces-box.glif │ │ │ ├── code-braces.glif │ │ │ ├── code-brackets.glif │ │ │ ├── code-equal.glif │ │ │ ├── code-greater-than-or-equal.glif │ │ │ ├── code-greater-than.glif │ │ │ ├── code-json.glif │ │ │ ├── code-less-than-or-equal.glif │ │ │ ├── code-less-than.glif │ │ │ ├── code-not-equal-variant.glif │ │ │ ├── code-not-equal.glif │ │ │ ├── code-parentheses-box.glif │ │ │ ├── code-parentheses.glif │ │ │ ├── code-string.glif │ │ │ ├── code-tags-check.glif │ │ │ ├── code-tags.glif │ │ │ ├── codepen.glif │ │ │ ├── coffee-maker-check-outline.glif │ │ │ ├── coffee-maker-check.glif │ │ │ ├── coffee-maker-outline.glif │ │ │ ├── coffee-maker.glif │ │ │ ├── coffee-off-outline.glif │ │ │ ├── coffee-off.glif │ │ │ ├── coffee-outline.glif │ │ │ ├── coffee-to-go-outline.glif │ │ │ ├── coffee-to-go.glif │ │ │ ├── coffee.glif │ │ │ ├── coffin.glif │ │ │ ├── cog-box.glif │ │ │ ├── cog-clockwise.glif │ │ │ ├── cog-counterclockwise.glif │ │ │ ├── cog-off-outline.glif │ │ │ ├── cog-off.glif │ │ │ ├── cog-outline.glif │ │ │ ├── cog-pause-outline.glif │ │ │ ├── cog-pause.glif │ │ │ ├── cog-play-outline.glif │ │ │ ├── cog-play.glif │ │ │ ├── cog-refresh-outline.glif │ │ │ ├── cog-refresh.glif │ │ │ ├── cog-stop-outline.glif │ │ │ ├── cog-stop.glif │ │ │ ├── cog-sync-outline.glif │ │ │ ├── cog-sync.glif │ │ │ ├── cog-transfer-outline.glif │ │ │ ├── cog-transfer.glif │ │ │ ├── cog.glif │ │ │ ├── cogs.glif │ │ │ ├── collage.glif │ │ │ ├── collapse-all-outline.glif │ │ │ ├── collapse-all.glif │ │ │ ├── color-helper.glif │ │ │ ├── comma-box-outline.glif │ │ │ ├── comma-box.glif │ │ │ ├── comma-circle-outline.glif │ │ │ ├── comma-circle.glif │ │ │ ├── comma.glif │ │ │ ├── comment-account-outline.glif │ │ │ ├── comment-account.glif │ │ │ ├── comment-alert-outline.glif │ │ │ ├── comment-alert.glif │ │ │ ├── comment-arrow-left-outline.glif │ │ │ ├── comment-arrow-left.glif │ │ │ ├── comment-arrow-right-outline.glif │ │ │ ├── comment-arrow-right.glif │ │ │ ├── comment-bookmark-outline.glif │ │ │ ├── comment-bookmark.glif │ │ │ ├── comment-check-outline.glif │ │ │ ├── comment-check.glif │ │ │ ├── comment-edit-outline.glif │ │ │ ├── comment-edit.glif │ │ │ ├── comment-eye-outline.glif │ │ │ ├── comment-eye.glif │ │ │ ├── comment-flash-outline.glif │ │ │ ├── comment-flash.glif │ │ │ ├── comment-minus-outline.glif │ │ │ ├── comment-minus.glif │ │ │ ├── comment-multiple-outline.glif │ │ │ ├── comment-multiple.glif │ │ │ ├── comment-off-outline.glif │ │ │ ├── comment-off.glif │ │ │ ├── comment-outline.glif │ │ │ ├── comment-plus-outline.glif │ │ │ ├── comment-plus.glif │ │ │ ├── comment-processing-outline.glif │ │ │ ├── comment-processing.glif │ │ │ ├── comment-question-outline.glif │ │ │ ├── comment-question.glif │ │ │ ├── comment-quote-outline.glif │ │ │ ├── comment-quote.glif │ │ │ ├── comment-remove-outline.glif │ │ │ ├── comment-remove.glif │ │ │ ├── comment-search-outline.glif │ │ │ ├── comment-search.glif │ │ │ ├── comment-text-multiple-outline.glif │ │ │ ├── comment-text-multiple.glif │ │ │ ├── comment-text-outline.glif │ │ │ ├── comment-text.glif │ │ │ ├── comment.glif │ │ │ ├── compare-horizontal.glif │ │ │ ├── compare-remove.glif │ │ │ ├── compare-vertical.glif │ │ │ ├── compare.glif │ │ │ ├── compass-off-outline.glif │ │ │ ├── compass-off.glif │ │ │ ├── compass-outline.glif │ │ │ ├── compass-rose.glif │ │ │ ├── compass.glif │ │ │ ├── compost.glif │ │ │ ├── cone-off.glif │ │ │ ├── cone.glif │ │ │ ├── connection.glif │ │ │ ├── console-line.glif │ │ │ ├── console-network-outline.glif │ │ │ ├── console-network.glif │ │ │ ├── console.glif │ │ │ ├── consolidate.glif │ │ │ ├── contactless-payment-circle-outline.glif │ │ │ ├── contactless-payment-circle.glif │ │ │ ├── contactless-payment.glif │ │ │ ├── contacts-outline.glif │ │ │ ├── contacts.glif │ │ │ ├── contain-end.glif │ │ │ ├── contain-start.glif │ │ │ ├── contain.glif │ │ │ ├── content-copy.glif │ │ │ ├── content-cut.glif │ │ │ ├── content-duplicate.glif │ │ │ ├── content-paste.glif │ │ │ ├── content-save-alert-outline.glif │ │ │ ├── content-save-alert.glif │ │ │ ├── content-save-all-outline.glif │ │ │ ├── content-save-all.glif │ │ │ ├── content-save-check-outline.glif │ │ │ ├── content-save-check.glif │ │ │ ├── content-save-cog-outline.glif │ │ │ ├── content-save-cog.glif │ │ │ ├── content-save-edit-outline.glif │ │ │ ├── content-save-edit.glif │ │ │ ├── content-save-move-outline.glif │ │ │ ├── content-save-move.glif │ │ │ ├── content-save-off-outline.glif │ │ │ ├── content-save-off.glif │ │ │ ├── content-save-outline.glif │ │ │ ├── content-save-settings-outline.glif │ │ │ ├── content-save-settings.glif │ │ │ ├── content-save.glif │ │ │ ├── contents.plist │ │ │ ├── contrast-box.glif │ │ │ ├── contrast-circle.glif │ │ │ ├── contrast.glif │ │ │ ├── controller-classic-outline.glif │ │ │ ├── controller-classic.glif │ │ │ ├── cookie-alert-outline.glif │ │ │ ├── cookie-alert.glif │ │ │ ├── cookie-check-outline.glif │ │ │ ├── cookie-check.glif │ │ │ ├── cookie-clock-outline.glif │ │ │ ├── cookie-clock.glif │ │ │ ├── cookie-cog-outline.glif │ │ │ ├── cookie-cog.glif │ │ │ ├── cookie-edit-outline.glif │ │ │ ├── cookie-edit.glif │ │ │ ├── cookie-lock-outline.glif │ │ │ ├── cookie-lock.glif │ │ │ ├── cookie-minus-outline.glif │ │ │ ├── cookie-minus.glif │ │ │ ├── cookie-off-outline.glif │ │ │ ├── cookie-off.glif │ │ │ ├── cookie-outline.glif │ │ │ ├── cookie-plus-outline.glif │ │ │ ├── cookie-plus.glif │ │ │ ├── cookie-refresh-outline.glif │ │ │ ├── cookie-refresh.glif │ │ │ ├── cookie-remove-outline.glif │ │ │ ├── cookie-remove.glif │ │ │ ├── cookie-settings-outline.glif │ │ │ ├── cookie-settings.glif │ │ │ ├── cookie.glif │ │ │ ├── coolant-temperature.glif │ │ │ ├── copyleft.glif │ │ │ ├── copyright.glif │ │ │ ├── cordova.glif │ │ │ ├── corn-off.glif │ │ │ ├── corn.glif │ │ │ ├── cosine-wave.glif │ │ │ ├── counter.glif │ │ │ ├── countertop-outline.glif │ │ │ ├── countertop.glif │ │ │ ├── cow-off.glif │ │ │ ├── cow.glif │ │ │ ├── cpu-32-bit.glif │ │ │ ├── cpu-64-bit.glif │ │ │ ├── cradle-outline.glif │ │ │ ├── cradle.glif │ │ │ ├── crane.glif │ │ │ ├── creation.glif │ │ │ ├── creative-commons.glif │ │ │ ├── credit-card-check-outline.glif │ │ │ ├── credit-card-check.glif │ │ │ ├── credit-card-chip-outline.glif │ │ │ ├── credit-card-chip.glif │ │ │ ├── credit-card-clock-outline.glif │ │ │ ├── credit-card-clock.glif │ │ │ ├── credit-card-edit-outline.glif │ │ │ ├── credit-card-edit.glif │ │ │ ├── credit-card-fast-outline.glif │ │ │ ├── credit-card-fast.glif │ │ │ ├── credit-card-lock-outline.glif │ │ │ ├── credit-card-lock.glif │ │ │ ├── credit-card-marker-outline.glif │ │ │ ├── credit-card-marker.glif │ │ │ ├── credit-card-minus-outline.glif │ │ │ ├── credit-card-minus.glif │ │ │ ├── credit-card-multiple-outline.glif │ │ │ ├── credit-card-multiple.glif │ │ │ ├── credit-card-off-outline.glif │ │ │ ├── credit-card-off.glif │ │ │ ├── credit-card-outline.glif │ │ │ ├── credit-card-plus-outline.glif │ │ │ ├── credit-card-plus.glif │ │ │ ├── credit-card-refresh-outline.glif │ │ │ ├── credit-card-refresh.glif │ │ │ ├── credit-card-refund-outline.glif │ │ │ ├── credit-card-refund.glif │ │ │ ├── credit-card-remove-outline.glif │ │ │ ├── credit-card-remove.glif │ │ │ ├── credit-card-scan-outline.glif │ │ │ ├── credit-card-scan.glif │ │ │ ├── credit-card-search-outline.glif │ │ │ ├── credit-card-search.glif │ │ │ ├── credit-card-settings-outline.glif │ │ │ ├── credit-card-settings.glif │ │ │ ├── credit-card-sync-outline.glif │ │ │ ├── credit-card-sync.glif │ │ │ ├── credit-card-wireless-off-outline.glif │ │ │ ├── credit-card-wireless-off.glif │ │ │ ├── credit-card-wireless-outline.glif │ │ │ ├── credit-card-wireless.glif │ │ │ ├── credit-card.glif │ │ │ ├── cricket.glif │ │ │ ├── crop-free.glif │ │ │ ├── crop-landscape.glif │ │ │ ├── crop-portrait.glif │ │ │ ├── crop-rotate.glif │ │ │ ├── crop-square.glif │ │ │ ├── crop.glif │ │ │ ├── cross-bolnisi.glif │ │ │ ├── cross-celtic.glif │ │ │ ├── cross-outline.glif │ │ │ ├── cross.glif │ │ │ ├── crosshairs-gps.glif │ │ │ ├── crosshairs-off.glif │ │ │ ├── crosshairs-question.glif │ │ │ ├── crosshairs.glif │ │ │ ├── crowd.glif │ │ │ ├── crown-circle-outline.glif │ │ │ ├── crown-circle.glif │ │ │ ├── crown-outline.glif │ │ │ ├── crown.glif │ │ │ ├── cryengine.glif │ │ │ ├── crystal-ball.glif │ │ │ ├── cube-off-outline.glif │ │ │ ├── cube-off.glif │ │ │ ├── cube-outline.glif │ │ │ ├── cube-scan.glif │ │ │ ├── cube-send.glif │ │ │ ├── cube-unfolded.glif │ │ │ ├── cube.glif │ │ │ ├── cup-off-outline.glif │ │ │ ├── cup-off.glif │ │ │ ├── cup-outline.glif │ │ │ ├── cup-water.glif │ │ │ ├── cup.glif │ │ │ ├── cupboard-outline.glif │ │ │ ├── cupboard.glif │ │ │ ├── cupcake.glif │ │ │ ├── curling.glif │ │ │ ├── currency-bdt.glif │ │ │ ├── currency-brl.glif │ │ │ ├── currency-btc.glif │ │ │ ├── currency-cny.glif │ │ │ ├── currency-eth.glif │ │ │ ├── currency-eur-off.glif │ │ │ ├── currency-eur.glif │ │ │ ├── currency-fra.glif │ │ │ ├── currency-gbp.glif │ │ │ ├── currency-ils.glif │ │ │ ├── currency-inr.glif │ │ │ ├── currency-jpy.glif │ │ │ ├── currency-krw.glif │ │ │ ├── currency-kzt.glif │ │ │ ├── currency-mnt.glif │ │ │ ├── currency-ngn.glif │ │ │ ├── currency-php.glif │ │ │ ├── currency-rial.glif │ │ │ ├── currency-rub.glif │ │ │ ├── currency-rupee.glif │ │ │ ├── currency-sign.glif │ │ │ ├── currency-try.glif │ │ │ ├── currency-twd.glif │ │ │ ├── currency-usd-off.glif │ │ │ ├── currency-usd.glif │ │ │ ├── current-ac.glif │ │ │ ├── current-dc.glif │ │ │ ├── cursor-default-click-outline.glif │ │ │ ├── cursor-default-click.glif │ │ │ ├── cursor-default-gesture-outline.glif │ │ │ ├── cursor-default-gesture.glif │ │ │ ├── cursor-default-outline.glif │ │ │ ├── cursor-default.glif │ │ │ ├── cursor-move.glif │ │ │ ├── cursor-pointer.glif │ │ │ ├── cursor-text.glif │ │ │ ├── curtains-closed.glif │ │ │ ├── curtains.glif │ │ │ ├── cylinder-off.glif │ │ │ ├── cylinder.glif │ │ │ ├── dance-ballroom.glif │ │ │ ├── dance-pole.glif │ │ │ ├── data-matrix-edit.glif │ │ │ ├── data-matrix-minus.glif │ │ │ ├── data-matrix-plus.glif │ │ │ ├── data-matrix-remove.glif │ │ │ ├── data-matrix-scan.glif │ │ │ ├── data-matrix.glif │ │ │ ├── database-alert-outline.glif │ │ │ ├── database-alert.glif │ │ │ ├── database-arrow-down-outline.glif │ │ │ ├── database-arrow-down.glif │ │ │ ├── database-arrow-left-outline.glif │ │ │ ├── database-arrow-left.glif │ │ │ ├── database-arrow-right-outline.glif │ │ │ ├── database-arrow-right.glif │ │ │ ├── database-arrow-up-outline.glif │ │ │ ├── database-arrow-up.glif │ │ │ ├── database-check-outline.glif │ │ │ ├── database-check.glif │ │ │ ├── database-clock-outline.glif │ │ │ ├── database-clock.glif │ │ │ ├── database-cog-outline.glif │ │ │ ├── database-cog.glif │ │ │ ├── database-edit-outline.glif │ │ │ ├── database-edit.glif │ │ │ ├── database-export-outline.glif │ │ │ ├── database-export.glif │ │ │ ├── database-eye-off-outline.glif │ │ │ ├── database-eye-off.glif │ │ │ ├── database-eye-outline.glif │ │ │ ├── database-eye.glif │ │ │ ├── database-import-outline.glif │ │ │ ├── database-import.glif │ │ │ ├── database-lock-outline.glif │ │ │ ├── database-lock.glif │ │ │ ├── database-marker-outline.glif │ │ │ ├── database-marker.glif │ │ │ ├── database-minus-outline.glif │ │ │ ├── database-minus.glif │ │ │ ├── database-off-outline.glif │ │ │ ├── database-off.glif │ │ │ ├── database-outline.glif │ │ │ ├── database-plus-outline.glif │ │ │ ├── database-plus.glif │ │ │ ├── database-refresh-outline.glif │ │ │ ├── database-refresh.glif │ │ │ ├── database-remove-outline.glif │ │ │ ├── database-remove.glif │ │ │ ├── database-search-outline.glif │ │ │ ├── database-search.glif │ │ │ ├── database-settings-outline.glif │ │ │ ├── database-settings.glif │ │ │ ├── database-sync-outline.glif │ │ │ ├── database-sync.glif │ │ │ ├── database.glif │ │ │ ├── death-star-variant.glif │ │ │ ├── death-star.glif │ │ │ ├── deathly-hallows.glif │ │ │ ├── debian.glif │ │ │ ├── debug-step-into.glif │ │ │ ├── debug-step-out.glif │ │ │ ├── debug-step-over.glif │ │ │ ├── decagram-outline.glif │ │ │ ├── decagram.glif │ │ │ ├── decimal-comma-decrease.glif │ │ │ ├── decimal-comma-increase.glif │ │ │ ├── decimal-comma.glif │ │ │ ├── decimal-decrease.glif │ │ │ ├── decimal-increase.glif │ │ │ ├── decimal.glif │ │ │ ├── delete-alert-outline.glif │ │ │ ├── delete-alert.glif │ │ │ ├── delete-circle-outline.glif │ │ │ ├── delete-circle.glif │ │ │ ├── delete-clock-outline.glif │ │ │ ├── delete-clock.glif │ │ │ ├── delete-empty-outline.glif │ │ │ ├── delete-empty.glif │ │ │ ├── delete-forever-outline.glif │ │ │ ├── delete-forever.glif │ │ │ ├── delete-off-outline.glif │ │ │ ├── delete-off.glif │ │ │ ├── delete-outline.glif │ │ │ ├── delete-restore.glif │ │ │ ├── delete-sweep-outline.glif │ │ │ ├── delete-sweep.glif │ │ │ ├── delete-variant.glif │ │ │ ├── delete.glif │ │ │ ├── delta.glif │ │ │ ├── desk-lamp.glif │ │ │ ├── desk.glif │ │ │ ├── deskphone.glif │ │ │ ├── desktop-classic.glif │ │ │ ├── desktop-mac-dashboard.glif │ │ │ ├── desktop-mac.glif │ │ │ ├── desktop-tower-monitor.glif │ │ │ ├── desktop-tower.glif │ │ │ ├── details.glif │ │ │ ├── dev-to.glif │ │ │ ├── developer-board.glif │ │ │ ├── deviantart.glif │ │ │ ├── devices.glif │ │ │ ├── dharmachakra.glif │ │ │ ├── diabetes.glif │ │ │ ├── dialpad.glif │ │ │ ├── diameter-outline.glif │ │ │ ├── diameter-variant.glif │ │ │ ├── diameter.glif │ │ │ ├── diamond-outline.glif │ │ │ ├── diamond-stone.glif │ │ │ ├── diamond.glif │ │ │ ├── dice-1-outline.glif │ │ │ ├── dice-1.glif │ │ │ ├── dice-2-outline.glif │ │ │ ├── dice-2.glif │ │ │ ├── dice-3-outline.glif │ │ │ ├── dice-3.glif │ │ │ ├── dice-4-outline.glif │ │ │ ├── dice-4.glif │ │ │ ├── dice-5-outline.glif │ │ │ ├── dice-5.glif │ │ │ ├── dice-6-outline.glif │ │ │ ├── dice-6.glif │ │ │ ├── dice-d10-outline.glif │ │ │ ├── dice-d10.glif │ │ │ ├── dice-d12-outline.glif │ │ │ ├── dice-d12.glif │ │ │ ├── dice-d20-outline.glif │ │ │ ├── dice-d20.glif │ │ │ ├── dice-d4-outline.glif │ │ │ ├── dice-d4.glif │ │ │ ├── dice-d6-outline.glif │ │ │ ├── dice-d6.glif │ │ │ ├── dice-d8-outline.glif │ │ │ ├── dice-d8.glif │ │ │ ├── dice-multiple-outline.glif │ │ │ ├── dice-multiple.glif │ │ │ ├── digital-ocean.glif │ │ │ ├── dip-switch.glif │ │ │ ├── directions-fork.glif │ │ │ ├── directions.glif │ │ │ ├── disc-alert.glif │ │ │ ├── disc-player.glif │ │ │ ├── disc.glif │ │ │ ├── discord.glif │ │ │ ├── dishwasher-alert.glif │ │ │ ├── dishwasher-off.glif │ │ │ ├── dishwasher.glif │ │ │ ├── disqus.glif │ │ │ ├── distribute-horizontal-center.glif │ │ │ ├── distribute-horizontal-left.glif │ │ │ ├── distribute-horizontal-right.glif │ │ │ ├── distribute-vertical-bottom.glif │ │ │ ├── distribute-vertical-center.glif │ │ │ ├── distribute-vertical-top.glif │ │ │ ├── diversify.glif │ │ │ ├── diving-flippers.glif │ │ │ ├── diving-helmet.glif │ │ │ ├── diving-scuba-flag.glif │ │ │ ├── diving-scuba-tank-multiple.glif │ │ │ ├── diving-scuba-tank.glif │ │ │ ├── diving-scuba.glif │ │ │ ├── diving-snorkel.glif │ │ │ ├── diving.glif │ │ │ ├── division-box.glif │ │ │ ├── division.glif │ │ │ ├── dlna.glif │ │ │ ├── dna.glif │ │ │ ├── dns-outline.glif │ │ │ ├── dns.glif │ │ │ ├── dock-bottom.glif │ │ │ ├── dock-left.glif │ │ │ ├── dock-right.glif │ │ │ ├── dock-top.glif │ │ │ ├── dock-window.glif │ │ │ ├── docker.glif │ │ │ ├── doctor.glif │ │ │ ├── dog-service.glif │ │ │ ├── dog-side-off.glif │ │ │ ├── dog-side.glif │ │ │ ├── dog.glif │ │ │ ├── dolby.glif │ │ │ ├── dolly.glif │ │ │ ├── dolphin.glif │ │ │ ├── domain-off.glif │ │ │ ├── domain-plus.glif │ │ │ ├── domain-remove.glif │ │ │ ├── domain.glif │ │ │ ├── dome-light.glif │ │ │ ├── domino-mask.glif │ │ │ ├── donkey.glif │ │ │ ├── door-closed-lock.glif │ │ │ ├── door-closed.glif │ │ │ ├── door-open.glif │ │ │ ├── door-sliding-lock.glif │ │ │ ├── door-sliding-open.glif │ │ │ ├── door-sliding.glif │ │ │ ├── door.glif │ │ │ ├── doorbell-video.glif │ │ │ ├── doorbell.glif │ │ │ ├── dot-net.glif │ │ │ ├── dots-circle.glif │ │ │ ├── dots-grid.glif │ │ │ ├── dots-hexagon.glif │ │ │ ├── dots-horizontal-circle-outline.glif │ │ │ ├── dots-horizontal-circle.glif │ │ │ ├── dots-horizontal.glif │ │ │ ├── dots-square.glif │ │ │ ├── dots-triangle.glif │ │ │ ├── dots-vertical-circle-outline.glif │ │ │ ├── dots-vertical-circle.glif │ │ │ ├── dots-vertical.glif │ │ │ ├── download-box-outline.glif │ │ │ ├── download-box.glif │ │ │ ├── download-circle-outline.glif │ │ │ ├── download-circle.glif │ │ │ ├── download-lock-outline.glif │ │ │ ├── download-lock.glif │ │ │ ├── download-multiple.glif │ │ │ ├── download-network-outline.glif │ │ │ ├── download-network.glif │ │ │ ├── download-off-outline.glif │ │ │ ├── download-off.glif │ │ │ ├── download-outline.glif │ │ │ ├── download.glif │ │ │ ├── drag-horizontal-variant.glif │ │ │ ├── drag-horizontal.glif │ │ │ ├── drag-variant.glif │ │ │ ├── drag-vertical-variant.glif │ │ │ ├── drag-vertical.glif │ │ │ ├── drag.glif │ │ │ ├── drama-masks.glif │ │ │ ├── draw-pen.glif │ │ │ ├── draw.glif │ │ │ ├── drawing-box.glif │ │ │ ├── drawing.glif │ │ │ ├── dresser-outline.glif │ │ │ ├── dresser.glif │ │ │ ├── drone.glif │ │ │ ├── dropbox.glif │ │ │ ├── drupal.glif │ │ │ ├── duck.glif │ │ │ ├── dumbbell.glif │ │ │ ├── dump-truck.glif │ │ │ ├── ear-hearing-loop.glif │ │ │ ├── ear-hearing-off.glif │ │ │ ├── ear-hearing.glif │ │ │ ├── earbuds-off-outline.glif │ │ │ ├── earbuds-off.glif │ │ │ ├── earbuds-outline.glif │ │ │ ├── earbuds.glif │ │ │ ├── earth-arrow-right.glif │ │ │ ├── earth-box-minus.glif │ │ │ ├── earth-box-off.glif │ │ │ ├── earth-box-plus.glif │ │ │ ├── earth-box-remove.glif │ │ │ ├── earth-box.glif │ │ │ ├── earth-minus.glif │ │ │ ├── earth-off.glif │ │ │ ├── earth-plus.glif │ │ │ ├── earth-remove.glif │ │ │ ├── earth.glif │ │ │ ├── egg-easter.glif │ │ │ ├── egg-fried.glif │ │ │ ├── egg-off-outline.glif │ │ │ ├── egg-off.glif │ │ │ ├── egg-outline.glif │ │ │ ├── egg.glif │ │ │ ├── eiffel-tower.glif │ │ │ ├── eight-track.glif │ │ │ ├── eject-outline.glif │ │ │ ├── eject.glif │ │ │ ├── electric-switch-closed.glif │ │ │ ├── electric-switch.glif │ │ │ ├── electron-framework.glif │ │ │ ├── elephant.glif │ │ │ ├── elevation-decline.glif │ │ │ ├── elevation-rise.glif │ │ │ ├── elevator-down.glif │ │ │ ├── elevator-passenger-off-outline.glif │ │ │ ├── elevator-passenger-off.glif │ │ │ ├── elevator-passenger-outline.glif │ │ │ ├── elevator-passenger.glif │ │ │ ├── elevator-up.glif │ │ │ ├── elevator.glif │ │ │ ├── ellipse-outline.glif │ │ │ ├── ellipse.glif │ │ │ ├── email-alert-outline.glif │ │ │ ├── email-alert.glif │ │ │ ├── email-box.glif │ │ │ ├── email-check-outline.glif │ │ │ ├── email-check.glif │ │ │ ├── email-edit-outline.glif │ │ │ ├── email-edit.glif │ │ │ ├── email-fast-outline.glif │ │ │ ├── email-fast.glif │ │ │ ├── email-lock.glif │ │ │ ├── email-mark-as-unread.glif │ │ │ ├── email-minus-outline.glif │ │ │ ├── email-minus.glif │ │ │ ├── email-multiple-outline.glif │ │ │ ├── email-multiple.glif │ │ │ ├── email-newsletter.glif │ │ │ ├── email-off-outline.glif │ │ │ ├── email-off.glif │ │ │ ├── email-open-multiple-outline.glif │ │ │ ├── email-open-multiple.glif │ │ │ ├── email-open-outline.glif │ │ │ ├── email-open.glif │ │ │ ├── email-outline.glif │ │ │ ├── email-plus-outline.glif │ │ │ ├── email-plus.glif │ │ │ ├── email-receive-outline.glif │ │ │ ├── email-receive.glif │ │ │ ├── email-remove-outline.glif │ │ │ ├── email-remove.glif │ │ │ ├── email-seal-outline.glif │ │ │ ├── email-seal.glif │ │ │ ├── email-search-outline.glif │ │ │ ├── email-search.glif │ │ │ ├── email-send-outline.glif │ │ │ ├── email-send.glif │ │ │ ├── email-sync-outline.glif │ │ │ ├── email-sync.glif │ │ │ ├── email-variant.glif │ │ │ ├── email.glif │ │ │ ├── ember.glif │ │ │ ├── emby.glif │ │ │ ├── emoticon-angry-outline.glif │ │ │ ├── emoticon-angry.glif │ │ │ ├── emoticon-confused-outline.glif │ │ │ ├── emoticon-confused.glif │ │ │ ├── emoticon-cool-outline.glif │ │ │ ├── emoticon-cool.glif │ │ │ ├── emoticon-cry-outline.glif │ │ │ ├── emoticon-cry.glif │ │ │ ├── emoticon-dead-outline.glif │ │ │ ├── emoticon-dead.glif │ │ │ ├── emoticon-devil-outline.glif │ │ │ ├── emoticon-devil.glif │ │ │ ├── emoticon-excited-outline.glif │ │ │ ├── emoticon-excited.glif │ │ │ ├── emoticon-frown-outline.glif │ │ │ ├── emoticon-frown.glif │ │ │ ├── emoticon-happy-outline.glif │ │ │ ├── emoticon-happy.glif │ │ │ ├── emoticon-kiss-outline.glif │ │ │ ├── emoticon-kiss.glif │ │ │ ├── emoticon-lol-outline.glif │ │ │ ├── emoticon-lol.glif │ │ │ ├── emoticon-neutral-outline.glif │ │ │ ├── emoticon-neutral.glif │ │ │ ├── emoticon-outline.glif │ │ │ ├── emoticon-poop-outline.glif │ │ │ ├── emoticon-poop.glif │ │ │ ├── emoticon-sad-outline.glif │ │ │ ├── emoticon-sad.glif │ │ │ ├── emoticon-sick-outline.glif │ │ │ ├── emoticon-sick.glif │ │ │ ├── emoticon-tongue-outline.glif │ │ │ ├── emoticon-tongue.glif │ │ │ ├── emoticon-wink-outline.glif │ │ │ ├── emoticon-wink.glif │ │ │ ├── emoticon.glif │ │ │ ├── engine-off-outline.glif │ │ │ ├── engine-off.glif │ │ │ ├── engine-outline.glif │ │ │ ├── engine.glif │ │ │ ├── epsilon.glif │ │ │ ├── equal-box.glif │ │ │ ├── equal.glif │ │ │ ├── equalizer-outline.glif │ │ │ ├── equalizer.glif │ │ │ ├── eraser-variant.glif │ │ │ ├── eraser.glif │ │ │ ├── escalator-box.glif │ │ │ ├── escalator-down.glif │ │ │ ├── escalator-up.glif │ │ │ ├── escalator.glif │ │ │ ├── eslint.glif │ │ │ ├── et.glif │ │ │ ├── ethereum.glif │ │ │ ├── ethernet-cable-off.glif │ │ │ ├── ethernet-cable.glif │ │ │ ├── ethernet.glif │ │ │ ├── ev-plug-ccs1.glif │ │ │ ├── ev-plug-ccs2.glif │ │ │ ├── ev-plug-chademo.glif │ │ │ ├── ev-plug-tesla.glif │ │ │ ├── ev-plug-type1.glif │ │ │ ├── ev-plug-type2.glif │ │ │ ├── ev-station.glif │ │ │ ├── evernote.glif │ │ │ ├── excavator.glif │ │ │ ├── exclamation-thick.glif │ │ │ ├── exclamation.glif │ │ │ ├── exit-run.glif │ │ │ ├── exit-to-app.glif │ │ │ ├── expand-all-outline.glif │ │ │ ├── expand-all.glif │ │ │ ├── expansion-card-variant.glif │ │ │ ├── expansion-card.glif │ │ │ ├── exponent-box.glif │ │ │ ├── exponent.glif │ │ │ ├── export-variant.glif │ │ │ ├── export.glif │ │ │ ├── eye-arrow-left-outline.glif │ │ │ ├── eye-arrow-left.glif │ │ │ ├── eye-arrow-right-outline.glif │ │ │ ├── eye-arrow-right.glif │ │ │ ├── eye-check-outline.glif │ │ │ ├── eye-check.glif │ │ │ ├── eye-circle-outline.glif │ │ │ ├── eye-circle.glif │ │ │ ├── eye-minus-outline.glif │ │ │ ├── eye-minus.glif │ │ │ ├── eye-off-outline.glif │ │ │ ├── eye-off.glif │ │ │ ├── eye-outline.glif │ │ │ ├── eye-plus-outline.glif │ │ │ ├── eye-plus.glif │ │ │ ├── eye-refresh-outline.glif │ │ │ ├── eye-refresh.glif │ │ │ ├── eye-remove-outline.glif │ │ │ ├── eye-remove.glif │ │ │ ├── eye-settings-outline.glif │ │ │ ├── eye-settings.glif │ │ │ ├── eye.glif │ │ │ ├── eyedropper-minus.glif │ │ │ ├── eyedropper-off.glif │ │ │ ├── eyedropper-plus.glif │ │ │ ├── eyedropper-remove.glif │ │ │ ├── eyedropper-variant.glif │ │ │ ├── eyedropper.glif │ │ │ ├── face-agent.glif │ │ │ ├── face-man-outline.glif │ │ │ ├── face-man-profile.glif │ │ │ ├── face-man-shimmer-outline.glif │ │ │ ├── face-man-shimmer.glif │ │ │ ├── face-man.glif │ │ │ ├── face-mask-outline.glif │ │ │ ├── face-mask.glif │ │ │ ├── face-recognition.glif │ │ │ ├── face-woman-outline.glif │ │ │ ├── face-woman-profile.glif │ │ │ ├── face-woman-shimmer-outline.glif │ │ │ ├── face-woman-shimmer.glif │ │ │ ├── face-woman.glif │ │ │ ├── facebook-gaming.glif │ │ │ ├── facebook-messenger.glif │ │ │ ├── facebook-workplace.glif │ │ │ ├── facebook.glif │ │ │ ├── factory.glif │ │ │ ├── family-tree.glif │ │ │ ├── fan-alert.glif │ │ │ ├── fan-auto.glif │ │ │ ├── fan-chevron-down.glif │ │ │ ├── fan-chevron-up.glif │ │ │ ├── fan-clock.glif │ │ │ ├── fan-minus.glif │ │ │ ├── fan-off.glif │ │ │ ├── fan-plus.glif │ │ │ ├── fan-remove.glif │ │ │ ├── fan-speed-1.glif │ │ │ ├── fan-speed-2.glif │ │ │ ├── fan-speed-3.glif │ │ │ ├── fan.glif │ │ │ ├── fast-forward-10.glif │ │ │ ├── fast-forward-15.glif │ │ │ ├── fast-forward-30.glif │ │ │ ├── fast-forward-5.glif │ │ │ ├── fast-forward-60.glif │ │ │ ├── fast-forward-outline.glif │ │ │ ├── fast-forward.glif │ │ │ ├── fax.glif │ │ │ ├── feather.glif │ │ │ ├── feature-search-outline.glif │ │ │ ├── feature-search.glif │ │ │ ├── fedora.glif │ │ │ ├── fence-electric.glif │ │ │ ├── fence.glif │ │ │ ├── fencing.glif │ │ │ ├── ferris-wheel.glif │ │ │ ├── ferry.glif │ │ │ ├── file-account-outline.glif │ │ │ ├── file-account.glif │ │ │ ├── file-alert-outline.glif │ │ │ ├── file-alert.glif │ │ │ ├── file-arrow-left-right-outline.glif │ │ │ ├── file-arrow-left-right.glif │ │ │ ├── file-arrow-up-down-outline.glif │ │ │ ├── file-arrow-up-down.glif │ │ │ ├── file-cabinet.glif │ │ │ ├── file-cad-box.glif │ │ │ ├── file-cad.glif │ │ │ ├── file-cancel-outline.glif │ │ │ ├── file-cancel.glif │ │ │ ├── file-certificate-outline.glif │ │ │ ├── file-certificate.glif │ │ │ ├── file-chart-check-outline.glif │ │ │ ├── file-chart-check.glif │ │ │ ├── file-chart-outline.glif │ │ │ ├── file-chart.glif │ │ │ ├── file-check-outline.glif │ │ │ ├── file-check.glif │ │ │ ├── file-clock-outline.glif │ │ │ ├── file-clock.glif │ │ │ ├── file-cloud-outline.glif │ │ │ ├── file-cloud.glif │ │ │ ├── file-code-outline.glif │ │ │ ├── file-code.glif │ │ │ ├── file-cog-outline.glif │ │ │ ├── file-cog.glif │ │ │ ├── file-compare.glif │ │ │ ├── file-delimited-outline.glif │ │ │ ├── file-delimited.glif │ │ │ ├── file-document-alert-outline.glif │ │ │ ├── file-document-alert.glif │ │ │ ├── file-document-check-outline.glif │ │ │ ├── file-document-check.glif │ │ │ ├── file-document-edit-outline.glif │ │ │ ├── file-document-edit.glif │ │ │ ├── file-document-minus-outline.glif │ │ │ ├── file-document-minus.glif │ │ │ ├── file-document-multiple-outline.glif │ │ │ ├── file-document-multiple.glif │ │ │ ├── file-document-outline.glif │ │ │ ├── file-document-plus-outline.glif │ │ │ ├── file-document-plus.glif │ │ │ ├── file-document-remove-outline.glif │ │ │ ├── file-document-remove.glif │ │ │ ├── file-document.glif │ │ │ ├── file-download-outline.glif │ │ │ ├── file-download.glif │ │ │ ├── file-edit-outline.glif │ │ │ ├── file-edit.glif │ │ │ ├── file-excel-box-outline.glif │ │ │ ├── file-excel-box.glif │ │ │ ├── file-excel-outline.glif │ │ │ ├── file-excel.glif │ │ │ ├── file-export-outline.glif │ │ │ ├── file-export.glif │ │ │ ├── file-eye-outline.glif │ │ │ ├── file-eye.glif │ │ │ ├── file-find-outline.glif │ │ │ ├── file-find.glif │ │ │ ├── file-gif-box.glif │ │ │ ├── file-hidden.glif │ │ │ ├── file-image-marker-outline.glif │ │ │ ├── file-image-marker.glif │ │ │ ├── file-image-minus-outline.glif │ │ │ ├── file-image-minus.glif │ │ │ ├── file-image-outline.glif │ │ │ ├── file-image-plus-outline.glif │ │ │ ├── file-image-plus.glif │ │ │ ├── file-image-remove-outline.glif │ │ │ ├── file-image-remove.glif │ │ │ ├── file-image.glif │ │ │ ├── file-import-outline.glif │ │ │ ├── file-import.glif │ │ │ ├── file-jpg-box.glif │ │ │ ├── file-key-outline.glif │ │ │ ├── file-key.glif │ │ │ ├── file-link-outline.glif │ │ │ ├── file-link.glif │ │ │ ├── file-lock-open-outline.glif │ │ │ ├── file-lock-open.glif │ │ │ ├── file-lock-outline.glif │ │ │ ├── file-lock.glif │ │ │ ├── file-marker-outline.glif │ │ │ ├── file-marker.glif │ │ │ ├── file-minus-outline.glif │ │ │ ├── file-minus.glif │ │ │ ├── file-move-outline.glif │ │ │ ├── file-move.glif │ │ │ ├── file-multiple-outline.glif │ │ │ ├── file-multiple.glif │ │ │ ├── file-music-outline.glif │ │ │ ├── file-music.glif │ │ │ ├── file-outline.glif │ │ │ ├── file-pdf-box.glif │ │ │ ├── file-percent-outline.glif │ │ │ ├── file-percent.glif │ │ │ ├── file-phone-outline.glif │ │ │ ├── file-phone.glif │ │ │ ├── file-plus-outline.glif │ │ │ ├── file-plus.glif │ │ │ ├── file-png-box.glif │ │ │ ├── file-powerpoint-box-outline.glif │ │ │ ├── file-powerpoint-box.glif │ │ │ ├── file-powerpoint-outline.glif │ │ │ ├── file-powerpoint.glif │ │ │ ├── file-presentation-box.glif │ │ │ ├── file-question-outline.glif │ │ │ ├── file-question.glif │ │ │ ├── file-refresh-outline.glif │ │ │ ├── file-refresh.glif │ │ │ ├── file-remove-outline.glif │ │ │ ├── file-remove.glif │ │ │ ├── file-replace-outline.glif │ │ │ ├── file-replace.glif │ │ │ ├── file-restore-outline.glif │ │ │ ├── file-restore.glif │ │ │ ├── file-rotate-left-outline.glif │ │ │ ├── file-rotate-left.glif │ │ │ ├── file-rotate-right-outline.glif │ │ │ ├── file-rotate-right.glif │ │ │ ├── file-search-outline.glif │ │ │ ├── file-search.glif │ │ │ ├── file-send-outline.glif │ │ │ ├── file-send.glif │ │ │ ├── file-settings-outline.glif │ │ │ ├── file-settings.glif │ │ │ ├── file-sign.glif │ │ │ ├── file-star-outline.glif │ │ │ ├── file-star.glif │ │ │ ├── file-swap-outline.glif │ │ │ ├── file-swap.glif │ │ │ ├── file-sync-outline.glif │ │ │ ├── file-sync.glif │ │ │ ├── file-table-box-multiple-outline.glif │ │ │ ├── file-table-box-multiple.glif │ │ │ ├── file-table-box-outline.glif │ │ │ ├── file-table-box.glif │ │ │ ├── file-table-outline.glif │ │ │ ├── file-table.glif │ │ │ ├── file-tree-outline.glif │ │ │ ├── file-tree.glif │ │ │ ├── file-undo-outline.glif │ │ │ ├── file-undo.glif │ │ │ ├── file-upload-outline.glif │ │ │ ├── file-upload.glif │ │ │ ├── file-video-outline.glif │ │ │ ├── file-video.glif │ │ │ ├── file-word-box-outline.glif │ │ │ ├── file-word-box.glif │ │ │ ├── file-word-outline.glif │ │ │ ├── file-word.glif │ │ │ ├── file.glif │ │ │ ├── film.glif │ │ │ ├── filmstrip-box-multiple.glif │ │ │ ├── filmstrip-box.glif │ │ │ ├── filmstrip-off.glif │ │ │ ├── filmstrip.glif │ │ │ ├── filter-check-outline.glif │ │ │ ├── filter-check.glif │ │ │ ├── filter-cog-outline.glif │ │ │ ├── filter-cog.glif │ │ │ ├── filter-menu-outline.glif │ │ │ ├── filter-menu.glif │ │ │ ├── filter-minus-outline.glif │ │ │ ├── filter-minus.glif │ │ │ ├── filter-multiple-outline.glif │ │ │ ├── filter-multiple.glif │ │ │ ├── filter-off-outline.glif │ │ │ ├── filter-off.glif │ │ │ ├── filter-outline.glif │ │ │ ├── filter-plus-outline.glif │ │ │ ├── filter-plus.glif │ │ │ ├── filter-remove-outline.glif │ │ │ ├── filter-remove.glif │ │ │ ├── filter-settings-outline.glif │ │ │ ├── filter-settings.glif │ │ │ ├── filter-variant-minus.glif │ │ │ ├── filter-variant-plus.glif │ │ │ ├── filter-variant-remove.glif │ │ │ ├── filter-variant.glif │ │ │ ├── filter.glif │ │ │ ├── finance.glif │ │ │ ├── find-replace.glif │ │ │ ├── fingerprint-off.glif │ │ │ ├── fingerprint.glif │ │ │ ├── fire-alert.glif │ │ │ ├── fire-circle.glif │ │ │ ├── fire-extinguisher.glif │ │ │ ├── fire-hydrant-alert.glif │ │ │ ├── fire-hydrant-off.glif │ │ │ ├── fire-hydrant.glif │ │ │ ├── fire-off.glif │ │ │ ├── fire-truck.glif │ │ │ ├── fire.glif │ │ │ ├── firebase.glif │ │ │ ├── firefox.glif │ │ │ ├── fireplace-off.glif │ │ │ ├── fireplace.glif │ │ │ ├── firewire.glif │ │ │ ├── firework-off.glif │ │ │ ├── firework.glif │ │ │ ├── fish-off.glif │ │ │ ├── fish.glif │ │ │ ├── fishbowl-outline.glif │ │ │ ├── fishbowl.glif │ │ │ ├── fit-to-page-outline.glif │ │ │ ├── fit-to-page.glif │ │ │ ├── fit-to-screen-outline.glif │ │ │ ├── fit-to-screen.glif │ │ │ ├── flag-checkered.glif │ │ │ ├── flag-minus-outline.glif │ │ │ ├── flag-minus.glif │ │ │ ├── flag-off-outline.glif │ │ │ ├── flag-off.glif │ │ │ ├── flag-outline.glif │ │ │ ├── flag-plus-outline.glif │ │ │ ├── flag-plus.glif │ │ │ ├── flag-remove-outline.glif │ │ │ ├── flag-remove.glif │ │ │ ├── flag-triangle.glif │ │ │ ├── flag-variant-outline.glif │ │ │ ├── flag-variant.glif │ │ │ ├── flag.glif │ │ │ ├── flare.glif │ │ │ ├── flash-alert-outline.glif │ │ │ ├── flash-alert.glif │ │ │ ├── flash-auto.glif │ │ │ ├── flash-off.glif │ │ │ ├── flash-outline.glif │ │ │ ├── flash-red-eye.glif │ │ │ ├── flash.glif │ │ │ ├── flashlight-off.glif │ │ │ ├── flashlight.glif │ │ │ ├── flask-empty-minus-outline.glif │ │ │ ├── flask-empty-minus.glif │ │ │ ├── flask-empty-off-outline.glif │ │ │ ├── flask-empty-off.glif │ │ │ ├── flask-empty-outline.glif │ │ │ ├── flask-empty-plus-outline.glif │ │ │ ├── flask-empty-plus.glif │ │ │ ├── flask-empty-remove-outline.glif │ │ │ ├── flask-empty-remove.glif │ │ │ ├── flask-empty.glif │ │ │ ├── flask-minus-outline.glif │ │ │ ├── flask-minus.glif │ │ │ ├── flask-off-outline.glif │ │ │ ├── flask-off.glif │ │ │ ├── flask-outline.glif │ │ │ ├── flask-plus-outline.glif │ │ │ ├── flask-plus.glif │ │ │ ├── flask-remove-outline.glif │ │ │ ├── flask-remove.glif │ │ │ ├── flask-round-bottom-empty-outline.glif │ │ │ ├── flask-round-bottom-empty.glif │ │ │ ├── flask-round-bottom-outline.glif │ │ │ ├── flask-round-bottom.glif │ │ │ ├── flask.glif │ │ │ ├── fleur-de-lis.glif │ │ │ ├── flip-horizontal.glif │ │ │ ├── flip-to-back.glif │ │ │ ├── flip-to-front.glif │ │ │ ├── flip-vertical.glif │ │ │ ├── floor-lamp-dual-outline.glif │ │ │ ├── floor-lamp-dual.glif │ │ │ ├── floor-lamp-outline.glif │ │ │ ├── floor-lamp-torchiere-outline.glif │ │ │ ├── floor-lamp-torchiere-variant-outline.glif │ │ │ ├── floor-lamp-torchiere-variant.glif │ │ │ ├── floor-lamp-torchiere.glif │ │ │ ├── floor-lamp.glif │ │ │ ├── floor-plan.glif │ │ │ ├── floppy-variant.glif │ │ │ ├── floppy.glif │ │ │ ├── flower-outline.glif │ │ │ ├── flower-pollen-outline.glif │ │ │ ├── flower-pollen.glif │ │ │ ├── flower-poppy.glif │ │ │ ├── flower-tulip-outline.glif │ │ │ ├── flower-tulip.glif │ │ │ ├── flower.glif │ │ │ ├── focus-auto.glif │ │ │ ├── focus-field-horizontal.glif │ │ │ ├── focus-field-vertical.glif │ │ │ ├── focus-field.glif │ │ │ ├── folder-account-outline.glif │ │ │ ├── folder-account.glif │ │ │ ├── folder-alert-outline.glif │ │ │ ├── folder-alert.glif │ │ │ ├── folder-arrow-down-outline.glif │ │ │ ├── folder-arrow-down.glif │ │ │ ├── folder-arrow-left-outline.glif │ │ │ ├── folder-arrow-left-right-outline.glif │ │ │ ├── folder-arrow-left-right.glif │ │ │ ├── folder-arrow-left.glif │ │ │ ├── folder-arrow-right-outline.glif │ │ │ ├── folder-arrow-right.glif │ │ │ ├── folder-arrow-up-down-outline.glif │ │ │ ├── folder-arrow-up-down.glif │ │ │ ├── folder-arrow-up-outline.glif │ │ │ ├── folder-arrow-up.glif │ │ │ ├── folder-cancel-outline.glif │ │ │ ├── folder-cancel.glif │ │ │ ├── folder-check-outline.glif │ │ │ ├── folder-check.glif │ │ │ ├── folder-clock-outline.glif │ │ │ ├── folder-clock.glif │ │ │ ├── folder-cog-outline.glif │ │ │ ├── folder-cog.glif │ │ │ ├── folder-download-outline.glif │ │ │ ├── folder-download.glif │ │ │ ├── folder-edit-outline.glif │ │ │ ├── folder-edit.glif │ │ │ ├── folder-eye-outline.glif │ │ │ ├── folder-eye.glif │ │ │ ├── folder-file-outline.glif │ │ │ ├── folder-file.glif │ │ │ ├── folder-google-drive.glif │ │ │ ├── folder-heart-outline.glif │ │ │ ├── folder-heart.glif │ │ │ ├── folder-hidden.glif │ │ │ ├── folder-home-outline.glif │ │ │ ├── folder-home.glif │ │ │ ├── folder-image.glif │ │ │ ├── folder-information-outline.glif │ │ │ ├── folder-information.glif │ │ │ ├── folder-key-network-outline.glif │ │ │ ├── folder-key-network.glif │ │ │ ├── folder-key-outline.glif │ │ │ ├── folder-key.glif │ │ │ ├── folder-lock-open-outline.glif │ │ │ ├── folder-lock-open.glif │ │ │ ├── folder-lock-outline.glif │ │ │ ├── folder-lock.glif │ │ │ ├── folder-marker-outline.glif │ │ │ ├── folder-marker.glif │ │ │ ├── folder-move-outline.glif │ │ │ ├── folder-move.glif │ │ │ ├── folder-multiple-image.glif │ │ │ ├── folder-multiple-outline.glif │ │ │ ├── folder-multiple-plus-outline.glif │ │ │ ├── folder-multiple-plus.glif │ │ │ ├── folder-multiple.glif │ │ │ ├── folder-music-outline.glif │ │ │ ├── folder-music.glif │ │ │ ├── folder-network-outline.glif │ │ │ ├── folder-network.glif │ │ │ ├── folder-off-outline.glif │ │ │ ├── folder-off.glif │ │ │ ├── folder-open-outline.glif │ │ │ ├── folder-open.glif │ │ │ ├── folder-outline.glif │ │ │ ├── folder-play-outline.glif │ │ │ ├── folder-play.glif │ │ │ ├── folder-plus-outline.glif │ │ │ ├── folder-plus.glif │ │ │ ├── folder-pound-outline.glif │ │ │ ├── folder-pound.glif │ │ │ ├── folder-question-outline.glif │ │ │ ├── folder-question.glif │ │ │ ├── folder-refresh-outline.glif │ │ │ ├── folder-refresh.glif │ │ │ ├── folder-remove-outline.glif │ │ │ ├── folder-remove.glif │ │ │ ├── folder-search-outline.glif │ │ │ ├── folder-search.glif │ │ │ ├── folder-settings-outline.glif │ │ │ ├── folder-settings.glif │ │ │ ├── folder-star-multiple-outline.glif │ │ │ ├── folder-star-multiple.glif │ │ │ ├── folder-star-outline.glif │ │ │ ├── folder-star.glif │ │ │ ├── folder-swap-outline.glif │ │ │ ├── folder-swap.glif │ │ │ ├── folder-sync-outline.glif │ │ │ ├── folder-sync.glif │ │ │ ├── folder-table-outline.glif │ │ │ ├── folder-table.glif │ │ │ ├── folder-text-outline.glif │ │ │ ├── folder-text.glif │ │ │ ├── folder-upload-outline.glif │ │ │ ├── folder-upload.glif │ │ │ ├── folder-wrench-outline.glif │ │ │ ├── folder-wrench.glif │ │ │ ├── folder-zip-outline.glif │ │ │ ├── folder-zip.glif │ │ │ ├── folder.glif │ │ │ ├── font-awesome.glif │ │ │ ├── food-apple-outline.glif │ │ │ ├── food-apple.glif │ │ │ ├── food-croissant.glif │ │ │ ├── food-drumstick-off-outline.glif │ │ │ ├── food-drumstick-off.glif │ │ │ ├── food-drumstick-outline.glif │ │ │ ├── food-drumstick.glif │ │ │ ├── food-fork-drink.glif │ │ │ ├── food-halal.glif │ │ │ ├── food-hot-dog.glif │ │ │ ├── food-kosher.glif │ │ │ ├── food-off-outline.glif │ │ │ ├── food-off.glif │ │ │ ├── food-outline.glif │ │ │ ├── food-steak-off.glif │ │ │ ├── food-steak.glif │ │ │ ├── food-takeout-box-outline.glif │ │ │ ├── food-takeout-box.glif │ │ │ ├── food-turkey.glif │ │ │ ├── food-variant-off.glif │ │ │ ├── food-variant.glif │ │ │ ├── food.glif │ │ │ ├── foot-print.glif │ │ │ ├── football-australian.glif │ │ │ ├── football-helmet.glif │ │ │ ├── football.glif │ │ │ ├── forest.glif │ │ │ ├── forklift.glif │ │ │ ├── form-dropdown.glif │ │ │ ├── form-select.glif │ │ │ ├── form-textarea.glif │ │ │ ├── form-textbox-lock.glif │ │ │ ├── form-textbox-password.glif │ │ │ ├── form-textbox.glif │ │ │ ├── format-align-bottom.glif │ │ │ ├── format-align-center.glif │ │ │ ├── format-align-justify.glif │ │ │ ├── format-align-left.glif │ │ │ ├── format-align-middle.glif │ │ │ ├── format-align-right.glif │ │ │ ├── format-align-top.glif │ │ │ ├── format-annotation-minus.glif │ │ │ ├── format-annotation-plus.glif │ │ │ ├── format-bold.glif │ │ │ ├── format-clear.glif │ │ │ ├── format-color-fill.glif │ │ │ ├── format-color-highlight.glif │ │ │ ├── format-color-marker-cancel.glif │ │ │ ├── format-color-text.glif │ │ │ ├── format-columns.glif │ │ │ ├── format-float-center.glif │ │ │ ├── format-float-left.glif │ │ │ ├── format-float-none.glif │ │ │ ├── format-float-right.glif │ │ │ ├── format-font-size-decrease.glif │ │ │ ├── format-font-size-increase.glif │ │ │ ├── format-font.glif │ │ │ ├── format-header-1.glif │ │ │ ├── format-header-2.glif │ │ │ ├── format-header-3.glif │ │ │ ├── format-header-4.glif │ │ │ ├── format-header-5.glif │ │ │ ├── format-header-6.glif │ │ │ ├── format-header-decrease.glif │ │ │ ├── format-header-equal.glif │ │ │ ├── format-header-increase.glif │ │ │ ├── format-header-pound.glif │ │ │ ├── format-horizontal-align-center.glif │ │ │ ├── format-horizontal-align-left.glif │ │ │ ├── format-horizontal-align-right.glif │ │ │ ├── format-indent-decrease.glif │ │ │ ├── format-indent-increase.glif │ │ │ ├── format-italic.glif │ │ │ ├── format-letter-case-lower.glif │ │ │ ├── format-letter-case-upper.glif │ │ │ ├── format-letter-case.glif │ │ │ ├── format-letter-ends-with.glif │ │ │ ├── format-letter-matches.glif │ │ │ ├── format-letter-spacing.glif │ │ │ ├── format-letter-starts-with.glif │ │ │ ├── format-line-spacing.glif │ │ │ ├── format-line-style.glif │ │ │ ├── format-line-weight.glif │ │ │ ├── format-list-bulleted-square.glif │ │ │ ├── format-list-bulleted-triangle.glif │ │ │ ├── format-list-bulleted-type.glif │ │ │ ├── format-list-bulleted.glif │ │ │ ├── format-list-checkbox.glif │ │ │ ├── format-list-checks.glif │ │ │ ├── format-list-group.glif │ │ │ ├── format-list-numbered-rtl.glif │ │ │ ├── format-list-numbered.glif │ │ │ ├── format-list-text.glif │ │ │ ├── format-overline.glif │ │ │ ├── format-page-break.glif │ │ │ ├── format-page-split.glif │ │ │ ├── format-paint.glif │ │ │ ├── format-paragraph.glif │ │ │ ├── format-pilcrow.glif │ │ │ ├── format-quote-close-outline.glif │ │ │ ├── format-quote-close.glif │ │ │ ├── format-quote-open-outline.glif │ │ │ ├── format-quote-open.glif │ │ │ ├── format-rotate-90.glif │ │ │ ├── format-section.glif │ │ │ ├── format-size.glif │ │ │ ├── format-strikethrough-variant.glif │ │ │ ├── format-strikethrough.glif │ │ │ ├── format-subscript.glif │ │ │ ├── format-superscript.glif │ │ │ ├── format-text-rotation-angle-down.glif │ │ │ ├── format-text-rotation-angle-up.glif │ │ │ ├── format-text-rotation-down-vertical.glif │ │ │ ├── format-text-rotation-down.glif │ │ │ ├── format-text-rotation-none.glif │ │ │ ├── format-text-rotation-up.glif │ │ │ ├── format-text-rotation-vertical.glif │ │ │ ├── format-text-variant-outline.glif │ │ │ ├── format-text-variant.glif │ │ │ ├── format-text-wrapping-clip.glif │ │ │ ├── format-text-wrapping-overflow.glif │ │ │ ├── format-text-wrapping-wrap.glif │ │ │ ├── format-text.glif │ │ │ ├── format-textbox.glif │ │ │ ├── format-textdirection-l-to-r.glif │ │ │ ├── format-textdirection-r-to-l.glif │ │ │ ├── format-title.glif │ │ │ ├── format-underline-wavy.glif │ │ │ ├── format-underline.glif │ │ │ ├── format-vertical-align-bottom.glif │ │ │ ├── format-vertical-align-center.glif │ │ │ ├── format-vertical-align-top.glif │ │ │ ├── format-wrap-inline.glif │ │ │ ├── format-wrap-square.glif │ │ │ ├── format-wrap-tight.glif │ │ │ ├── format-wrap-top-bottom.glif │ │ │ ├── forum-minus-outline.glif │ │ │ ├── forum-minus.glif │ │ │ ├── forum-outline.glif │ │ │ ├── forum-plus-outline.glif │ │ │ ├── forum-plus.glif │ │ │ ├── forum-remove-outline.glif │ │ │ ├── forum-remove.glif │ │ │ ├── forum.glif │ │ │ ├── forward.glif │ │ │ ├── forwardburger.glif │ │ │ ├── fountain-pen-tip.glif │ │ │ ├── fountain-pen.glif │ │ │ ├── fountain.glif │ │ │ ├── fraction-one-half.glif │ │ │ ├── freebsd.glif │ │ │ ├── french-fries.glif │ │ │ ├── frequently-asked-questions.glif │ │ │ ├── fridge-alert-outline.glif │ │ │ ├── fridge-alert.glif │ │ │ ├── fridge-bottom.glif │ │ │ ├── fridge-industrial-alert-outline.glif │ │ │ ├── fridge-industrial-alert.glif │ │ │ ├── fridge-industrial-off-outline.glif │ │ │ ├── fridge-industrial-off.glif │ │ │ ├── fridge-industrial-outline.glif │ │ │ ├── fridge-industrial.glif │ │ │ ├── fridge-off-outline.glif │ │ │ ├── fridge-off.glif │ │ │ ├── fridge-outline.glif │ │ │ ├── fridge-top.glif │ │ │ ├── fridge-variant-alert-outline.glif │ │ │ ├── fridge-variant-alert.glif │ │ │ ├── fridge-variant-off-outline.glif │ │ │ ├── fridge-variant-off.glif │ │ │ ├── fridge-variant-outline.glif │ │ │ ├── fridge-variant.glif │ │ │ ├── fridge.glif │ │ │ ├── fruit-cherries-off.glif │ │ │ ├── fruit-cherries.glif │ │ │ ├── fruit-citrus-off.glif │ │ │ ├── fruit-citrus.glif │ │ │ ├── fruit-grapes-outline.glif │ │ │ ├── fruit-grapes.glif │ │ │ ├── fruit-pear.glif │ │ │ ├── fruit-pineapple.glif │ │ │ ├── fruit-watermelon.glif │ │ │ ├── fuel-cell.glif │ │ │ ├── fuel.glif │ │ │ ├── fullscreen-exit.glif │ │ │ ├── fullscreen.glif │ │ │ ├── function-variant.glif │ │ │ ├── function.glif │ │ │ ├── furigana-horizontal.glif │ │ │ ├── furigana-vertical.glif │ │ │ ├── fuse-alert.glif │ │ │ ├── fuse-blade.glif │ │ │ ├── fuse-off.glif │ │ │ ├── fuse.glif │ │ │ ├── gamepad-circle-down.glif │ │ │ ├── gamepad-circle-left.glif │ │ │ ├── gamepad-circle-outline.glif │ │ │ ├── gamepad-circle-right.glif │ │ │ ├── gamepad-circle-up.glif │ │ │ ├── gamepad-circle.glif │ │ │ ├── gamepad-down.glif │ │ │ ├── gamepad-left.glif │ │ │ ├── gamepad-outline.glif │ │ │ ├── gamepad-right.glif │ │ │ ├── gamepad-round-down.glif │ │ │ ├── gamepad-round-left.glif │ │ │ ├── gamepad-round-outline.glif │ │ │ ├── gamepad-round-right.glif │ │ │ ├── gamepad-round-up.glif │ │ │ ├── gamepad-round.glif │ │ │ ├── gamepad-square-outline.glif │ │ │ ├── gamepad-square.glif │ │ │ ├── gamepad-up.glif │ │ │ ├── gamepad-variant-outline.glif │ │ │ ├── gamepad-variant.glif │ │ │ ├── gamepad.glif │ │ │ ├── gamma.glif │ │ │ ├── gantry-crane.glif │ │ │ ├── garage-alert-variant.glif │ │ │ ├── garage-alert.glif │ │ │ ├── garage-lock.glif │ │ │ ├── garage-open-variant.glif │ │ │ ├── garage-open.glif │ │ │ ├── garage-variant-lock.glif │ │ │ ├── garage-variant.glif │ │ │ ├── garage.glif │ │ │ ├── gas-burner.glif │ │ │ ├── gas-cylinder.glif │ │ │ ├── gas-station-off-outline.glif │ │ │ ├── gas-station-off.glif │ │ │ ├── gas-station-outline.glif │ │ │ ├── gas-station.glif │ │ │ ├── gate-alert.glif │ │ │ ├── gate-and.glif │ │ │ ├── gate-arrow-left.glif │ │ │ ├── gate-arrow-right.glif │ │ │ ├── gate-nand.glif │ │ │ ├── gate-nor.glif │ │ │ ├── gate-not.glif │ │ │ ├── gate-open.glif │ │ │ ├── gate-or.glif │ │ │ ├── gate-xnor.glif │ │ │ ├── gate-xor.glif │ │ │ ├── gate.glif │ │ │ ├── gatsby.glif │ │ │ ├── gauge-empty.glif │ │ │ ├── gauge-full.glif │ │ │ ├── gauge-low.glif │ │ │ ├── gauge.glif │ │ │ ├── gavel.glif │ │ │ ├── gender-female.glif │ │ │ ├── gender-male-female-variant.glif │ │ │ ├── gender-male-female.glif │ │ │ ├── gender-male.glif │ │ │ ├── gender-non-binary.glif │ │ │ ├── gender-transgender.glif │ │ │ ├── gentoo.glif │ │ │ ├── gesture-double-tap.glif │ │ │ ├── gesture-pinch.glif │ │ │ ├── gesture-spread.glif │ │ │ ├── gesture-swipe-down.glif │ │ │ ├── gesture-swipe-horizontal.glif │ │ │ ├── gesture-swipe-left.glif │ │ │ ├── gesture-swipe-right.glif │ │ │ ├── gesture-swipe-up.glif │ │ │ ├── gesture-swipe-vertical.glif │ │ │ ├── gesture-swipe.glif │ │ │ ├── gesture-tap-box.glif │ │ │ ├── gesture-tap-button.glif │ │ │ ├── gesture-tap-hold.glif │ │ │ ├── gesture-tap.glif │ │ │ ├── gesture-two-double-tap.glif │ │ │ ├── gesture-two-tap.glif │ │ │ ├── gesture.glif │ │ │ ├── ghost-off-outline.glif │ │ │ ├── ghost-off.glif │ │ │ ├── ghost-outline.glif │ │ │ ├── ghost.glif │ │ │ ├── gift-off-outline.glif │ │ │ ├── gift-off.glif │ │ │ ├── gift-open-outline.glif │ │ │ ├── gift-open.glif │ │ │ ├── gift-outline.glif │ │ │ ├── gift.glif │ │ │ ├── git.glif │ │ │ ├── github.glif │ │ │ ├── gitlab.glif │ │ │ ├── glass-cocktail-off.glif │ │ │ ├── glass-cocktail.glif │ │ │ ├── glass-flute.glif │ │ │ ├── glass-fragile.glif │ │ │ ├── glass-mug-off.glif │ │ │ ├── glass-mug-variant-off.glif │ │ │ ├── glass-mug-variant.glif │ │ │ ├── glass-mug.glif │ │ │ ├── glass-pint-outline.glif │ │ │ ├── glass-stange.glif │ │ │ ├── glass-tulip.glif │ │ │ ├── glass-wine.glif │ │ │ ├── glasses.glif │ │ │ ├── globe-light.glif │ │ │ ├── globe-model.glif │ │ │ ├── gmail.glif │ │ │ ├── gnome.glif │ │ │ ├── go-kart-track.glif │ │ │ ├── go-kart.glif │ │ │ ├── gog.glif │ │ │ ├── gold.glif │ │ │ ├── golf-cart.glif │ │ │ ├── golf-tee.glif │ │ │ ├── golf.glif │ │ │ ├── gondola.glif │ │ │ ├── goodreads.glif │ │ │ ├── google-ads.glif │ │ │ ├── google-analytics.glif │ │ │ ├── google-assistant.glif │ │ │ ├── google-cardboard.glif │ │ │ ├── google-chrome.glif │ │ │ ├── google-circles-communities.glif │ │ │ ├── google-circles-extended.glif │ │ │ ├── google-circles-group.glif │ │ │ ├── google-circles.glif │ │ │ ├── google-classroom.glif │ │ │ ├── google-cloud.glif │ │ │ ├── google-controller-off.glif │ │ │ ├── google-controller.glif │ │ │ ├── google-downasaur.glif │ │ │ ├── google-drive.glif │ │ │ ├── google-earth.glif │ │ │ ├── google-fit.glif │ │ │ ├── google-glass.glif │ │ │ ├── google-hangouts.glif │ │ │ ├── google-home.glif │ │ │ ├── google-keep.glif │ │ │ ├── google-lens.glif │ │ │ ├── google-maps.glif │ │ │ ├── google-my-business.glif │ │ │ ├── google-nearby.glif │ │ │ ├── google-play.glif │ │ │ ├── google-plus.glif │ │ │ ├── google-podcast.glif │ │ │ ├── google-spreadsheet.glif │ │ │ ├── google-street-view.glif │ │ │ ├── google-translate.glif │ │ │ ├── google.glif │ │ │ ├── gradient-horizontal.glif │ │ │ ├── gradient-vertical.glif │ │ │ ├── grain.glif │ │ │ ├── graph-outline.glif │ │ │ ├── graph.glif │ │ │ ├── graphql.glif │ │ │ ├── grass.glif │ │ │ ├── grave-stone.glif │ │ │ ├── grease-pencil.glif │ │ │ ├── greater-than-or-equal.glif │ │ │ ├── greater-than.glif │ │ │ ├── greenhouse.glif │ │ │ ├── grid-large.glif │ │ │ ├── grid-off.glif │ │ │ ├── grid.glif │ │ │ ├── grill-outline.glif │ │ │ ├── grill.glif │ │ │ ├── group.glif │ │ │ ├── guitar-acoustic.glif │ │ │ ├── guitar-electric.glif │ │ │ ├── guitar-pick-outline.glif │ │ │ ├── guitar-pick.glif │ │ │ ├── guy-fawkes-mask.glif │ │ │ ├── gymnastics.glif │ │ │ ├── hail.glif │ │ │ ├── hair-dryer-outline.glif │ │ │ ├── hair-dryer.glif │ │ │ ├── halloween.glif │ │ │ ├── hamburger-check.glif │ │ │ ├── hamburger-minus.glif │ │ │ ├── hamburger-off.glif │ │ │ ├── hamburger-plus.glif │ │ │ ├── hamburger-remove.glif │ │ │ ├── hamburger.glif │ │ │ ├── hammer-screwdriver.glif │ │ │ ├── hammer-sickle.glif │ │ │ ├── hammer-wrench.glif │ │ │ ├── hammer.glif │ │ │ ├── hand-back-left-off-outline.glif │ │ │ ├── hand-back-left-off.glif │ │ │ ├── hand-back-left-outline.glif │ │ │ ├── hand-back-left.glif │ │ │ ├── hand-back-right-off-outline.glif │ │ │ ├── hand-back-right-off.glif │ │ │ ├── hand-back-right-outline.glif │ │ │ ├── hand-back-right.glif │ │ │ ├── hand-clap-off.glif │ │ │ ├── hand-clap.glif │ │ │ ├── hand-coin-outline.glif │ │ │ ├── hand-coin.glif │ │ │ ├── hand-extended-outline.glif │ │ │ ├── hand-extended.glif │ │ │ ├── hand-front-left-outline.glif │ │ │ ├── hand-front-left.glif │ │ │ ├── hand-front-right-outline.glif │ │ │ ├── hand-front-right.glif │ │ │ ├── hand-heart-outline.glif │ │ │ ├── hand-heart.glif │ │ │ ├── hand-okay.glif │ │ │ ├── hand-peace-variant.glif │ │ │ ├── hand-peace.glif │ │ │ ├── hand-pointing-down.glif │ │ │ ├── hand-pointing-left.glif │ │ │ ├── hand-pointing-right.glif │ │ │ ├── hand-pointing-up.glif │ │ │ ├── hand-saw.glif │ │ │ ├── hand-wash-outline.glif │ │ │ ├── hand-wash.glif │ │ │ ├── hand-water.glif │ │ │ ├── hand-wave-outline.glif │ │ │ ├── hand-wave.glif │ │ │ ├── handball.glif │ │ │ ├── handcuffs.glif │ │ │ ├── hands-pray.glif │ │ │ ├── handshake-outline.glif │ │ │ ├── handshake.glif │ │ │ ├── hanger.glif │ │ │ ├── hard-hat.glif │ │ │ ├── harddisk-plus.glif │ │ │ ├── harddisk-remove.glif │ │ │ ├── harddisk.glif │ │ │ ├── hat-fedora.glif │ │ │ ├── hazard-lights.glif │ │ │ ├── hdr-off.glif │ │ │ ├── hdr.glif │ │ │ ├── head-alert-outline.glif │ │ │ ├── head-alert.glif │ │ │ ├── head-check-outline.glif │ │ │ ├── head-check.glif │ │ │ ├── head-cog-outline.glif │ │ │ ├── head-cog.glif │ │ │ ├── head-dots-horizontal-outline.glif │ │ │ ├── head-dots-horizontal.glif │ │ │ ├── head-flash-outline.glif │ │ │ ├── head-flash.glif │ │ │ ├── head-heart-outline.glif │ │ │ ├── head-heart.glif │ │ │ ├── head-lightbulb-outline.glif │ │ │ ├── head-lightbulb.glif │ │ │ ├── head-minus-outline.glif │ │ │ ├── head-minus.glif │ │ │ ├── head-outline.glif │ │ │ ├── head-plus-outline.glif │ │ │ ├── head-plus.glif │ │ │ ├── head-question-outline.glif │ │ │ ├── head-question.glif │ │ │ ├── head-remove-outline.glif │ │ │ ├── head-remove.glif │ │ │ ├── head-snowflake-outline.glif │ │ │ ├── head-snowflake.glif │ │ │ ├── head-sync-outline.glif │ │ │ ├── head-sync.glif │ │ │ ├── head.glif │ │ │ ├── headphones-bluetooth.glif │ │ │ ├── headphones-box.glif │ │ │ ├── headphones-off.glif │ │ │ ├── headphones-settings.glif │ │ │ ├── headphones.glif │ │ │ ├── headset-dock.glif │ │ │ ├── headset-off.glif │ │ │ ├── headset.glif │ │ │ ├── heart-box-outline.glif │ │ │ ├── heart-box.glif │ │ │ ├── heart-broken-outline.glif │ │ │ ├── heart-broken.glif │ │ │ ├── heart-circle-outline.glif │ │ │ ├── heart-circle.glif │ │ │ ├── heart-cog-outline.glif │ │ │ ├── heart-cog.glif │ │ │ ├── heart-flash.glif │ │ │ ├── heart-half-full.glif │ │ │ ├── heart-half-outline.glif │ │ │ ├── heart-half.glif │ │ │ ├── heart-minus-outline.glif │ │ │ ├── heart-minus.glif │ │ │ ├── heart-multiple-outline.glif │ │ │ ├── heart-multiple.glif │ │ │ ├── heart-off-outline.glif │ │ │ ├── heart-off.glif │ │ │ ├── heart-outline.glif │ │ │ ├── heart-plus-outline.glif │ │ │ ├── heart-plus.glif │ │ │ ├── heart-pulse.glif │ │ │ ├── heart-remove-outline.glif │ │ │ ├── heart-remove.glif │ │ │ ├── heart-settings-outline.glif │ │ │ ├── heart-settings.glif │ │ │ ├── heart.glif │ │ │ ├── heat-pump-outline.glif │ │ │ ├── heat-pump.glif │ │ │ ├── heat-wave.glif │ │ │ ├── heating-coil.glif │ │ │ ├── helicopter.glif │ │ │ ├── help-box.glif │ │ │ ├── help-circle-outline.glif │ │ │ ├── help-circle.glif │ │ │ ├── help-network-outline.glif │ │ │ ├── help-network.glif │ │ │ ├── help-rhombus-outline.glif │ │ │ ├── help-rhombus.glif │ │ │ ├── help.glif │ │ │ ├── hexadecimal.glif │ │ │ ├── hexagon-multiple-outline.glif │ │ │ ├── hexagon-multiple.glif │ │ │ ├── hexagon-outline.glif │ │ │ ├── hexagon-slice-1.glif │ │ │ ├── hexagon-slice-2.glif │ │ │ ├── hexagon-slice-3.glif │ │ │ ├── hexagon-slice-4.glif │ │ │ ├── hexagon-slice-5.glif │ │ │ ├── hexagon-slice-6.glif │ │ │ ├── hexagon.glif │ │ │ ├── hexagram-outline.glif │ │ │ ├── hexagram.glif │ │ │ ├── high-definition-box.glif │ │ │ ├── high-definition.glif │ │ │ ├── highway.glif │ │ │ ├── hiking.glif │ │ │ ├── history.glif │ │ │ ├── hockey-puck.glif │ │ │ ├── hockey-sticks.glif │ │ │ ├── hololens.glif │ │ │ ├── home-account.glif │ │ │ ├── home-alert-outline.glif │ │ │ ├── home-alert.glif │ │ │ ├── home-analytics.glif │ │ │ ├── home-assistant.glif │ │ │ ├── home-automation.glif │ │ │ ├── home-battery-outline.glif │ │ │ ├── home-battery.glif │ │ │ ├── home-circle-outline.glif │ │ │ ├── home-circle.glif │ │ │ ├── home-city-outline.glif │ │ │ ├── home-city.glif │ │ │ ├── home-clock-outline.glif │ │ │ ├── home-clock.glif │ │ │ ├── home-edit-outline.glif │ │ │ ├── home-edit.glif │ │ │ ├── home-export-outline.glif │ │ │ ├── home-flood.glif │ │ │ ├── home-floor-0.glif │ │ │ ├── home-floor-1.glif │ │ │ ├── home-floor-2.glif │ │ │ ├── home-floor-3.glif │ │ │ ├── home-floor-a.glif │ │ │ ├── home-floor-b.glif │ │ │ ├── home-floor-g.glif │ │ │ ├── home-floor-l.glif │ │ │ ├── home-floor-negative-1.glif │ │ │ ├── home-group-minus.glif │ │ │ ├── home-group-plus.glif │ │ │ ├── home-group-remove.glif │ │ │ ├── home-group.glif │ │ │ ├── home-heart.glif │ │ │ ├── home-import-outline.glif │ │ │ ├── home-lightbulb-outline.glif │ │ │ ├── home-lightbulb.glif │ │ │ ├── home-lightning-bolt-outline.glif │ │ │ ├── home-lightning-bolt.glif │ │ │ ├── home-lock-open.glif │ │ │ ├── home-lock.glif │ │ │ ├── home-map-marker.glif │ │ │ ├── home-minus-outline.glif │ │ │ ├── home-minus.glif │ │ │ ├── home-modern.glif │ │ │ ├── home-off-outline.glif │ │ │ ├── home-off.glif │ │ │ ├── home-outline.glif │ │ │ ├── home-plus-outline.glif │ │ │ ├── home-plus.glif │ │ │ ├── home-remove-outline.glif │ │ │ ├── home-remove.glif │ │ │ ├── home-roof.glif │ │ │ ├── home-search-outline.glif │ │ │ ├── home-search.glif │ │ │ ├── home-switch-outline.glif │ │ │ ├── home-switch.glif │ │ │ ├── home-thermometer-outline.glif │ │ │ ├── home-thermometer.glif │ │ │ ├── home-variant-outline.glif │ │ │ ├── home-variant.glif │ │ │ ├── home.glif │ │ │ ├── hook-off.glif │ │ │ ├── hook.glif │ │ │ ├── hoop-house.glif │ │ │ ├── hops.glif │ │ │ ├── horizontal-rotate-clockwise.glif │ │ │ ├── horizontal-rotate-counterclockwise.glif │ │ │ ├── horse-human.glif │ │ │ ├── horse-variant-fast.glif │ │ │ ├── horse-variant.glif │ │ │ ├── horse.glif │ │ │ ├── horseshoe.glif │ │ │ ├── hospital-box-outline.glif │ │ │ ├── hospital-box.glif │ │ │ ├── hospital-building.glif │ │ │ ├── hospital-marker.glif │ │ │ ├── hospital.glif │ │ │ ├── hot-tub.glif │ │ │ ├── hours-24.glif │ │ │ ├── hubspot.glif │ │ │ ├── hulu.glif │ │ │ ├── human-baby-changing-table.glif │ │ │ ├── human-cane.glif │ │ │ ├── human-capacity-decrease.glif │ │ │ ├── human-capacity-increase.glif │ │ │ ├── human-child.glif │ │ │ ├── human-dolly.glif │ │ │ ├── human-edit.glif │ │ │ ├── human-female-boy.glif │ │ │ ├── human-female-dance.glif │ │ │ ├── human-female-female.glif │ │ │ ├── human-female-girl.glif │ │ │ ├── human-female.glif │ │ │ ├── human-greeting-proximity.glif │ │ │ ├── human-greeting-variant.glif │ │ │ ├── human-greeting.glif │ │ │ ├── human-handsdown.glif │ │ │ ├── human-handsup.glif │ │ │ ├── human-male-board-poll.glif │ │ │ ├── human-male-board.glif │ │ │ ├── human-male-boy.glif │ │ │ ├── human-male-child.glif │ │ │ ├── human-male-female-child.glif │ │ │ ├── human-male-female.glif │ │ │ ├── human-male-girl.glif │ │ │ ├── human-male-height-variant.glif │ │ │ ├── human-male-height.glif │ │ │ ├── human-male-male.glif │ │ │ ├── human-male.glif │ │ │ ├── human-non-binary.glif │ │ │ ├── human-pregnant.glif │ │ │ ├── human-queue.glif │ │ │ ├── human-scooter.glif │ │ │ ├── human-wheelchair.glif │ │ │ ├── human-white-cane.glif │ │ │ ├── human.glif │ │ │ ├── humble-bundle.glif │ │ │ ├── hvac-off.glif │ │ │ ├── hvac.glif │ │ │ ├── hydraulic-oil-level.glif │ │ │ ├── hydraulic-oil-temperature.glif │ │ │ ├── hydro-power.glif │ │ │ ├── hydrogen-station.glif │ │ │ ├── ice-cream-off.glif │ │ │ ├── ice-cream.glif │ │ │ ├── ice-pop.glif │ │ │ ├── id-card.glif │ │ │ ├── identifier.glif │ │ │ ├── ideogram-cjk-variant.glif │ │ │ ├── ideogram-cjk.glif │ │ │ ├── image-album.glif │ │ │ ├── image-area-close.glif │ │ │ ├── image-area.glif │ │ │ ├── image-auto-adjust.glif │ │ │ ├── image-broken-variant.glif │ │ │ ├── image-broken.glif │ │ │ ├── image-edit-outline.glif │ │ │ ├── image-edit.glif │ │ │ ├── image-filter-black-white.glif │ │ │ ├── image-filter-center-focus-strong-outline.glif │ │ │ ├── image-filter-center-focus-strong.glif │ │ │ ├── image-filter-center-focus-weak.glif │ │ │ ├── image-filter-center-focus.glif │ │ │ ├── image-filter-drama.glif │ │ │ ├── image-filter-frames.glif │ │ │ ├── image-filter-hdr.glif │ │ │ ├── image-filter-none.glif │ │ │ ├── image-filter-tilt-shift.glif │ │ │ ├── image-filter-vintage.glif │ │ │ ├── image-frame.glif │ │ │ ├── image-lock-outline.glif │ │ │ ├── image-lock.glif │ │ │ ├── image-marker-outline.glif │ │ │ ├── image-marker.glif │ │ │ ├── image-minus.glif │ │ │ ├── image-move.glif │ │ │ ├── image-multiple-outline.glif │ │ │ ├── image-multiple.glif │ │ │ ├── image-off-outline.glif │ │ │ ├── image-off.glif │ │ │ ├── image-outline.glif │ │ │ ├── image-plus.glif │ │ │ ├── image-refresh-outline.glif │ │ │ ├── image-refresh.glif │ │ │ ├── image-remove.glif │ │ │ ├── image-search-outline.glif │ │ │ ├── image-search.glif │ │ │ ├── image-size-select-actual.glif │ │ │ ├── image-size-select-large.glif │ │ │ ├── image-size-select-small.glif │ │ │ ├── image-sync-outline.glif │ │ │ ├── image-sync.glif │ │ │ ├── image-text.glif │ │ │ ├── image.glif │ │ │ ├── import.glif │ │ │ ├── inbox-arrow-down-outline.glif │ │ │ ├── inbox-arrow-down.glif │ │ │ ├── inbox-arrow-up-outline.glif │ │ │ ├── inbox-arrow-up.glif │ │ │ ├── inbox-full-outline.glif │ │ │ ├── inbox-full.glif │ │ │ ├── inbox-multiple-outline.glif │ │ │ ├── inbox-multiple.glif │ │ │ ├── inbox-outline.glif │ │ │ ├── inbox-remove-outline.glif │ │ │ ├── inbox-remove.glif │ │ │ ├── inbox.glif │ │ │ ├── incognito-circle-off.glif │ │ │ ├── incognito-circle.glif │ │ │ ├── incognito-off.glif │ │ │ ├── incognito.glif │ │ │ ├── induction.glif │ │ │ ├── infinity.glif │ │ │ ├── information-off-outline.glif │ │ │ ├── information-off.glif │ │ │ ├── information-outline.glif │ │ │ ├── information-variant.glif │ │ │ ├── information.glif │ │ │ ├── instagram.glif │ │ │ ├── instrument-triangle.glif │ │ │ ├── integrated-circuit-chip.glif │ │ │ ├── invert-colors-off.glif │ │ │ ├── invert-colors.glif │ │ │ ├── iobroker.glif │ │ │ ├── ip-network-outline.glif │ │ │ ├── ip-network.glif │ │ │ ├── ip-outline.glif │ │ │ ├── ip.glif │ │ │ ├── ipod.glif │ │ │ ├── iron-board.glif │ │ │ ├── iron-outline.glif │ │ │ ├── iron.glif │ │ │ ├── island.glif │ │ │ ├── iv-bag.glif │ │ │ ├── jabber.glif │ │ │ ├── jeepney.glif │ │ │ ├── jellyfish-outline.glif │ │ │ ├── jellyfish.glif │ │ │ ├── jira.glif │ │ │ ├── jquery.glif │ │ │ ├── jsfiddle.glif │ │ │ ├── jump-rope.glif │ │ │ ├── kabaddi.glif │ │ │ ├── kangaroo.glif │ │ │ ├── karate.glif │ │ │ ├── kayaking.glif │ │ │ ├── keg.glif │ │ │ ├── kettle-alert-outline.glif │ │ │ ├── kettle-alert.glif │ │ │ ├── kettle-off-outline.glif │ │ │ ├── kettle-off.glif │ │ │ ├── kettle-outline.glif │ │ │ ├── kettle-pour-over.glif │ │ │ ├── kettle-steam-outline.glif │ │ │ ├── kettle-steam.glif │ │ │ ├── kettle.glif │ │ │ ├── kettlebell.glif │ │ │ ├── key-alert-outline.glif │ │ │ ├── key-alert.glif │ │ │ ├── key-arrow-right.glif │ │ │ ├── key-chain-variant.glif │ │ │ ├── key-chain.glif │ │ │ ├── key-change.glif │ │ │ ├── key-link.glif │ │ │ ├── key-minus.glif │ │ │ ├── key-outline.glif │ │ │ ├── key-plus.glif │ │ │ ├── key-remove.glif │ │ │ ├── key-star.glif │ │ │ ├── key-variant.glif │ │ │ ├── key-wireless.glif │ │ │ ├── key.glif │ │ │ ├── keyboard-backspace.glif │ │ │ ├── keyboard-caps.glif │ │ │ ├── keyboard-close.glif │ │ │ ├── keyboard-esc.glif │ │ │ ├── keyboard-f1.glif │ │ │ ├── keyboard-f10.glif │ │ │ ├── keyboard-f11.glif │ │ │ ├── keyboard-f12.glif │ │ │ ├── keyboard-f2.glif │ │ │ ├── keyboard-f3.glif │ │ │ ├── keyboard-f4.glif │ │ │ ├── keyboard-f5.glif │ │ │ ├── keyboard-f6.glif │ │ │ ├── keyboard-f7.glif │ │ │ ├── keyboard-f8.glif │ │ │ ├── keyboard-f9.glif │ │ │ ├── keyboard-off-outline.glif │ │ │ ├── keyboard-off.glif │ │ │ ├── keyboard-outline.glif │ │ │ ├── keyboard-return.glif │ │ │ ├── keyboard-settings-outline.glif │ │ │ ├── keyboard-settings.glif │ │ │ ├── keyboard-space.glif │ │ │ ├── keyboard-tab-reverse.glif │ │ │ ├── keyboard-tab.glif │ │ │ ├── keyboard-variant.glif │ │ │ ├── keyboard.glif │ │ │ ├── khanda.glif │ │ │ ├── kickstarter.glif │ │ │ ├── kite-outline.glif │ │ │ ├── kite.glif │ │ │ ├── kitesurfing.glif │ │ │ ├── klingon.glif │ │ │ ├── knife-military.glif │ │ │ ├── knife.glif │ │ │ ├── koala.glif │ │ │ ├── kodi.glif │ │ │ ├── kubernetes.glif │ │ │ ├── label-multiple-outline.glif │ │ │ ├── label-multiple.glif │ │ │ ├── label-off-outline.glif │ │ │ ├── label-off.glif │ │ │ ├── label-outline.glif │ │ │ ├── label-percent-outline.glif │ │ │ ├── label-percent.glif │ │ │ ├── label-variant-outline.glif │ │ │ ├── label-variant.glif │ │ │ ├── label.glif │ │ │ ├── ladder.glif │ │ │ ├── ladybug.glif │ │ │ ├── lambda.glif │ │ │ ├── lamp-outline.glif │ │ │ ├── lamp.glif │ │ │ ├── lamps-outline.glif │ │ │ ├── lamps.glif │ │ │ ├── lan-check.glif │ │ │ ├── lan-connect.glif │ │ │ ├── lan-disconnect.glif │ │ │ ├── lan-pending.glif │ │ │ ├── lan.glif │ │ │ ├── land-fields.glif │ │ │ ├── land-plots-circle-variant.glif │ │ │ ├── land-plots-circle.glif │ │ │ ├── land-plots.glif │ │ │ ├── land-rows-horizontal.glif │ │ │ ├── land-rows-vertical.glif │ │ │ ├── landslide-outline.glif │ │ │ ├── landslide.glif │ │ │ ├── language-c.glif │ │ │ ├── language-cpp.glif │ │ │ ├── language-csharp.glif │ │ │ ├── language-css3.glif │ │ │ ├── language-fortran.glif │ │ │ ├── language-go.glif │ │ │ ├── language-haskell.glif │ │ │ ├── language-html5.glif │ │ │ ├── language-java.glif │ │ │ ├── language-javascript.glif │ │ │ ├── language-kotlin.glif │ │ │ ├── language-lua.glif │ │ │ ├── language-markdown-outline.glif │ │ │ ├── language-markdown.glif │ │ │ ├── language-php.glif │ │ │ ├── language-python.glif │ │ │ ├── language-r.glif │ │ │ ├── language-ruby-on-rails.glif │ │ │ ├── language-ruby.glif │ │ │ ├── language-rust.glif │ │ │ ├── language-swift.glif │ │ │ ├── language-typescript.glif │ │ │ ├── language-xaml.glif │ │ │ ├── laptop-account.glif │ │ │ ├── laptop-off.glif │ │ │ ├── laptop.glif │ │ │ ├── laravel.glif │ │ │ ├── laser-pointer.glif │ │ │ ├── lasso.glif │ │ │ ├── lastpass.glif │ │ │ ├── latitude.glif │ │ │ ├── launch.glif │ │ │ ├── lava-lamp.glif │ │ │ ├── layers-edit.glif │ │ │ ├── layers-minus.glif │ │ │ ├── layers-off-outline.glif │ │ │ ├── layers-off.glif │ │ │ ├── layers-outline.glif │ │ │ ├── layers-plus.glif │ │ │ ├── layers-remove.glif │ │ │ ├── layers-search-outline.glif │ │ │ ├── layers-search.glif │ │ │ ├── layers-triple-outline.glif │ │ │ ├── layers-triple.glif │ │ │ ├── layers.glif │ │ │ ├── lead-pencil.glif │ │ │ ├── leaf-circle-outline.glif │ │ │ ├── leaf-circle.glif │ │ │ ├── leaf-maple-off.glif │ │ │ ├── leaf-maple.glif │ │ │ ├── leaf-off.glif │ │ │ ├── leaf.glif │ │ │ ├── leak-off.glif │ │ │ ├── leak.glif │ │ │ ├── lecturn.glif │ │ │ ├── led-off.glif │ │ │ ├── led-on.glif │ │ │ ├── led-outline.glif │ │ │ ├── led-strip-variant-off.glif │ │ │ ├── led-strip-variant.glif │ │ │ ├── led-strip.glif │ │ │ ├── led-variant-off.glif │ │ │ ├── led-variant-on.glif │ │ │ ├── led-variant-outline.glif │ │ │ ├── leek.glif │ │ │ ├── less-than-or-equal.glif │ │ │ ├── less-than.glif │ │ │ ├── library-outline.glif │ │ │ ├── library-shelves.glif │ │ │ ├── library.glif │ │ │ ├── license.glif │ │ │ ├── lifebuoy.glif │ │ │ ├── light-flood-down.glif │ │ │ ├── light-flood-up.glif │ │ │ ├── light-recessed.glif │ │ │ ├── light-switch-off.glif │ │ │ ├── light-switch.glif │ │ │ ├── lightbulb-alert-outline.glif │ │ │ ├── lightbulb-alert.glif │ │ │ ├── lightbulb-auto-outline.glif │ │ │ ├── lightbulb-auto.glif │ │ │ ├── lightbulb-cfl-off.glif │ │ │ ├── lightbulb-cfl-spiral-off.glif │ │ │ ├── lightbulb-cfl-spiral.glif │ │ │ ├── lightbulb-cfl.glif │ │ │ ├── lightbulb-fluorescent-tube-outline.glif │ │ │ ├── lightbulb-fluorescent-tube.glif │ │ │ ├── lightbulb-group-off-outline.glif │ │ │ ├── lightbulb-group-off.glif │ │ │ ├── lightbulb-group-outline.glif │ │ │ ├── lightbulb-group.glif │ │ │ ├── lightbulb-multiple-off-outline.glif │ │ │ ├── lightbulb-multiple-off.glif │ │ │ ├── lightbulb-multiple-outline.glif │ │ │ ├── lightbulb-multiple.glif │ │ │ ├── lightbulb-night-outline.glif │ │ │ ├── lightbulb-night.glif │ │ │ ├── lightbulb-off-outline.glif │ │ │ ├── lightbulb-off.glif │ │ │ ├── lightbulb-on-10.glif │ │ │ ├── lightbulb-on-20.glif │ │ │ ├── lightbulb-on-30.glif │ │ │ ├── lightbulb-on-40.glif │ │ │ ├── lightbulb-on-50.glif │ │ │ ├── lightbulb-on-60.glif │ │ │ ├── lightbulb-on-70.glif │ │ │ ├── lightbulb-on-80.glif │ │ │ ├── lightbulb-on-90.glif │ │ │ ├── lightbulb-on-outline.glif │ │ │ ├── lightbulb-on.glif │ │ │ ├── lightbulb-outline.glif │ │ │ ├── lightbulb-question-outline.glif │ │ │ ├── lightbulb-question.glif │ │ │ ├── lightbulb-spot-off.glif │ │ │ ├── lightbulb-spot.glif │ │ │ ├── lightbulb-variant-outline.glif │ │ │ ├── lightbulb-variant.glif │ │ │ ├── lightbulb.glif │ │ │ ├── lighthouse-on.glif │ │ │ ├── lighthouse.glif │ │ │ ├── lightning-bolt-circle.glif │ │ │ ├── lightning-bolt-outline.glif │ │ │ ├── lightning-bolt.glif │ │ │ ├── line-scan.glif │ │ │ ├── lingerie.glif │ │ │ ├── link-box-outline.glif │ │ │ ├── link-box-variant-outline.glif │ │ │ ├── link-box-variant.glif │ │ │ ├── link-box.glif │ │ │ ├── link-lock.glif │ │ │ ├── link-off.glif │ │ │ ├── link-plus.glif │ │ │ ├── link-variant-minus.glif │ │ │ ├── link-variant-off.glif │ │ │ ├── link-variant-plus.glif │ │ │ ├── link-variant-remove.glif │ │ │ ├── link-variant.glif │ │ │ ├── link.glif │ │ │ ├── linkedin.glif │ │ │ ├── linux-mint.glif │ │ │ ├── linux.glif │ │ │ ├── lipstick.glif │ │ │ ├── liquid-spot.glif │ │ │ ├── liquor.glif │ │ │ ├── list-status.glif │ │ │ ├── litecoin.glif │ │ │ ├── loading.glif │ │ │ ├── location-enter.glif │ │ │ ├── location-exit.glif │ │ │ ├── lock-alert-outline.glif │ │ │ ├── lock-alert.glif │ │ │ ├── lock-check-outline.glif │ │ │ ├── lock-check.glif │ │ │ ├── lock-clock.glif │ │ │ ├── lock-minus-outline.glif │ │ │ ├── lock-minus.glif │ │ │ ├── lock-off-outline.glif │ │ │ ├── lock-off.glif │ │ │ ├── lock-open-alert-outline.glif │ │ │ ├── lock-open-alert.glif │ │ │ ├── lock-open-check-outline.glif │ │ │ ├── lock-open-check.glif │ │ │ ├── lock-open-minus-outline.glif │ │ │ ├── lock-open-minus.glif │ │ │ ├── lock-open-outline.glif │ │ │ ├── lock-open-plus-outline.glif │ │ │ ├── lock-open-plus.glif │ │ │ ├── lock-open-remove-outline.glif │ │ │ ├── lock-open-remove.glif │ │ │ ├── lock-open-variant-outline.glif │ │ │ ├── lock-open-variant.glif │ │ │ ├── lock-open.glif │ │ │ ├── lock-outline.glif │ │ │ ├── lock-pattern.glif │ │ │ ├── lock-plus-outline.glif │ │ │ ├── lock-plus.glif │ │ │ ├── lock-question.glif │ │ │ ├── lock-remove-outline.glif │ │ │ ├── lock-remove.glif │ │ │ ├── lock-reset.glif │ │ │ ├── lock-smart.glif │ │ │ ├── lock.glif │ │ │ ├── locker-multiple.glif │ │ │ ├── locker.glif │ │ │ ├── login.glif │ │ │ ├── logout-variant.glif │ │ │ ├── logout.glif │ │ │ ├── longitude.glif │ │ │ ├── looks.glif │ │ │ ├── lotion-outline.glif │ │ │ ├── lotion-plus-outline.glif │ │ │ ├── lotion-plus.glif │ │ │ ├── lotion.glif │ │ │ ├── loupe.glif │ │ │ ├── lumx.glif │ │ │ ├── lungs.glif │ │ │ ├── mace.glif │ │ │ ├── magazine-pistol.glif │ │ │ ├── magazine-rifle.glif │ │ │ ├── magic-staff.glif │ │ │ ├── magnet-on.glif │ │ │ ├── magnet.glif │ │ │ ├── magnify-close.glif │ │ │ ├── magnify-expand.glif │ │ │ ├── magnify-minus-cursor.glif │ │ │ ├── magnify-minus-outline.glif │ │ │ ├── magnify-minus.glif │ │ │ ├── magnify-plus-cursor.glif │ │ │ ├── magnify-plus-outline.glif │ │ │ ├── magnify-plus.glif │ │ │ ├── magnify-remove-cursor.glif │ │ │ ├── magnify-remove-outline.glif │ │ │ ├── magnify-scan.glif │ │ │ ├── magnify.glif │ │ │ ├── mail.glif │ │ │ ├── mailbox-open-outline.glif │ │ │ ├── mailbox-open-up-outline.glif │ │ │ ├── mailbox-open-up.glif │ │ │ ├── mailbox-open.glif │ │ │ ├── mailbox-outline.glif │ │ │ ├── mailbox-up-outline.glif │ │ │ ├── mailbox-up.glif │ │ │ ├── mailbox.glif │ │ │ ├── manjaro.glif │ │ │ ├── map-check-outline.glif │ │ │ ├── map-check.glif │ │ │ ├── map-clock-outline.glif │ │ │ ├── map-clock.glif │ │ │ ├── map-legend.glif │ │ │ ├── map-marker-account-outline.glif │ │ │ ├── map-marker-account.glif │ │ │ ├── map-marker-alert-outline.glif │ │ │ ├── map-marker-alert.glif │ │ │ ├── map-marker-check-outline.glif │ │ │ ├── map-marker-check.glif │ │ │ ├── map-marker-circle.glif │ │ │ ├── map-marker-distance.glif │ │ │ ├── map-marker-down.glif │ │ │ ├── map-marker-left-outline.glif │ │ │ ├── map-marker-left.glif │ │ │ ├── map-marker-minus-outline.glif │ │ │ ├── map-marker-minus.glif │ │ │ ├── map-marker-multiple-outline.glif │ │ │ ├── map-marker-multiple.glif │ │ │ ├── map-marker-off-outline.glif │ │ │ ├── map-marker-off.glif │ │ │ ├── map-marker-outline.glif │ │ │ ├── map-marker-path.glif │ │ │ ├── map-marker-plus-outline.glif │ │ │ ├── map-marker-plus.glif │ │ │ ├── map-marker-question-outline.glif │ │ │ ├── map-marker-question.glif │ │ │ ├── map-marker-radius-outline.glif │ │ │ ├── map-marker-radius.glif │ │ │ ├── map-marker-remove-outline.glif │ │ │ ├── map-marker-remove-variant.glif │ │ │ ├── map-marker-remove.glif │ │ │ ├── map-marker-right-outline.glif │ │ │ ├── map-marker-right.glif │ │ │ ├── map-marker-star-outline.glif │ │ │ ├── map-marker-star.glif │ │ │ ├── map-marker-up.glif │ │ │ ├── map-marker.glif │ │ │ ├── map-minus.glif │ │ │ ├── map-outline.glif │ │ │ ├── map-plus.glif │ │ │ ├── map-search-outline.glif │ │ │ ├── map-search.glif │ │ │ ├── map.glif │ │ │ ├── mapbox.glif │ │ │ ├── margin.glif │ │ │ ├── marker-cancel.glif │ │ │ ├── marker-check.glif │ │ │ ├── marker.glif │ │ │ ├── mastodon.glif │ │ │ ├── material-design.glif │ │ │ ├── material-ui.glif │ │ │ ├── math-compass.glif │ │ │ ├── math-cos.glif │ │ │ ├── math-integral-box.glif │ │ │ ├── math-integral.glif │ │ │ ├── math-log.glif │ │ │ ├── math-norm-box.glif │ │ │ ├── math-norm.glif │ │ │ ├── math-sin.glif │ │ │ ├── math-tan.glif │ │ │ ├── matrix.glif │ │ │ ├── medal-outline.glif │ │ │ ├── medal.glif │ │ │ ├── medical-bag.glif │ │ │ ├── medical-cotton-swab.glif │ │ │ ├── meditation.glif │ │ │ ├── memory.glif │ │ │ ├── menorah-fire.glif │ │ │ ├── menorah.glif │ │ │ ├── menu-down-outline.glif │ │ │ ├── menu-down.glif │ │ │ ├── menu-left-outline.glif │ │ │ ├── menu-left.glif │ │ │ ├── menu-open.glif │ │ │ ├── menu-right-outline.glif │ │ │ ├── menu-right.glif │ │ │ ├── menu-swap-outline.glif │ │ │ ├── menu-swap.glif │ │ │ ├── menu-up-outline.glif │ │ │ ├── menu-up.glif │ │ │ ├── menu.glif │ │ │ ├── merge.glif │ │ │ ├── message-alert-outline.glif │ │ │ ├── message-alert.glif │ │ │ ├── message-arrow-left-outline.glif │ │ │ ├── message-arrow-left.glif │ │ │ ├── message-arrow-right-outline.glif │ │ │ ├── message-arrow-right.glif │ │ │ ├── message-badge-outline.glif │ │ │ ├── message-badge.glif │ │ │ ├── message-bookmark-outline.glif │ │ │ ├── message-bookmark.glif │ │ │ ├── message-bulleted-off.glif │ │ │ ├── message-bulleted.glif │ │ │ ├── message-cog-outline.glif │ │ │ ├── message-cog.glif │ │ │ ├── message-draw.glif │ │ │ ├── message-fast-outline.glif │ │ │ ├── message-fast.glif │ │ │ ├── message-flash-outline.glif │ │ │ ├── message-flash.glif │ │ │ ├── message-image-outline.glif │ │ │ ├── message-image.glif │ │ │ ├── message-lock-outline.glif │ │ │ ├── message-lock.glif │ │ │ ├── message-minus-outline.glif │ │ │ ├── message-minus.glif │ │ │ ├── message-off-outline.glif │ │ │ ├── message-off.glif │ │ │ ├── message-outline.glif │ │ │ ├── message-plus-outline.glif │ │ │ ├── message-plus.glif │ │ │ ├── message-processing-outline.glif │ │ │ ├── message-processing.glif │ │ │ ├── message-question-outline.glif │ │ │ ├── message-question.glif │ │ │ ├── message-reply-outline.glif │ │ │ ├── message-reply-text-outline.glif │ │ │ ├── message-reply-text.glif │ │ │ ├── message-reply.glif │ │ │ ├── message-settings-outline.glif │ │ │ ├── message-settings.glif │ │ │ ├── message-star-outline.glif │ │ │ ├── message-star.glif │ │ │ ├── message-text-clock-outline.glif │ │ │ ├── message-text-clock.glif │ │ │ ├── message-text-fast-outline.glif │ │ │ ├── message-text-fast.glif │ │ │ ├── message-text-lock-outline.glif │ │ │ ├── message-text-lock.glif │ │ │ ├── message-text-outline.glif │ │ │ ├── message-text.glif │ │ │ ├── message-video.glif │ │ │ ├── message.glif │ │ │ ├── meteor.glif │ │ │ ├── meter-electric-outline.glif │ │ │ ├── meter-electric.glif │ │ │ ├── meter-gas-outline.glif │ │ │ ├── meter-gas.glif │ │ │ ├── metronome-tick.glif │ │ │ ├── metronome.glif │ │ │ ├── micro-sd.glif │ │ │ ├── microphone-minus.glif │ │ │ ├── microphone-off.glif │ │ │ ├── microphone-outline.glif │ │ │ ├── microphone-plus.glif │ │ │ ├── microphone-question-outline.glif │ │ │ ├── microphone-question.glif │ │ │ ├── microphone-settings.glif │ │ │ ├── microphone-variant-off.glif │ │ │ ├── microphone-variant.glif │ │ │ ├── microphone.glif │ │ │ ├── microscope.glif │ │ │ ├── microsoft-access.glif │ │ │ ├── microsoft-azure-devops.glif │ │ │ ├── microsoft-azure.glif │ │ │ ├── microsoft-bing.glif │ │ │ ├── microsoft-dynamics-365.glif │ │ │ ├── microsoft-edge.glif │ │ │ ├── microsoft-excel.glif │ │ │ ├── microsoft-internet-explorer.glif │ │ │ ├── microsoft-office.glif │ │ │ ├── microsoft-onedrive.glif │ │ │ ├── microsoft-onenote.glif │ │ │ ├── microsoft-outlook.glif │ │ │ ├── microsoft-powerpoint.glif │ │ │ ├── microsoft-sharepoint.glif │ │ │ ├── microsoft-teams.glif │ │ │ ├── microsoft-visual-studio-code.glif │ │ │ ├── microsoft-visual-studio.glif │ │ │ ├── microsoft-windows-classic.glif │ │ │ ├── microsoft-windows.glif │ │ │ ├── microsoft-word.glif │ │ │ ├── microsoft-xbox-controller-battery-alert.glif │ │ │ ├── microsoft-xbox-controller-battery-charging.glif │ │ │ ├── microsoft-xbox-controller-battery-empty.glif │ │ │ ├── microsoft-xbox-controller-battery-full.glif │ │ │ ├── microsoft-xbox-controller-battery-low.glif │ │ │ ├── microsoft-xbox-controller-battery-medium.glif │ │ │ ├── microsoft-xbox-controller-battery-unknown.glif │ │ │ ├── microsoft-xbox-controller-menu.glif │ │ │ ├── microsoft-xbox-controller-off.glif │ │ │ ├── microsoft-xbox-controller-view.glif │ │ │ ├── microsoft-xbox-controller.glif │ │ │ ├── microsoft-xbox.glif │ │ │ ├── microsoft.glif │ │ │ ├── microwave-off.glif │ │ │ ├── microwave.glif │ │ │ ├── middleware-outline.glif │ │ │ ├── middleware.glif │ │ │ ├── midi-port.glif │ │ │ ├── midi.glif │ │ │ ├── mine.glif │ │ │ ├── minecraft.glif │ │ │ ├── mini-sd.glif │ │ │ ├── minidisc.glif │ │ │ ├── minus-box-multiple-outline.glif │ │ │ ├── minus-box-multiple.glif │ │ │ ├── minus-box-outline.glif │ │ │ ├── minus-box.glif │ │ │ ├── minus-circle-multiple-outline.glif │ │ │ ├── minus-circle-multiple.glif │ │ │ ├── minus-circle-off-outline.glif │ │ │ ├── minus-circle-off.glif │ │ │ ├── minus-circle-outline.glif │ │ │ ├── minus-circle.glif │ │ │ ├── minus-network-outline.glif │ │ │ ├── minus-network.glif │ │ │ ├── minus-thick.glif │ │ │ ├── minus.glif │ │ │ ├── mirror-rectangle.glif │ │ │ ├── mirror-variant.glif │ │ │ ├── mirror.glif │ │ │ ├── mixed-martial-arts.glif │ │ │ ├── mixed-reality.glif │ │ │ ├── molecule-co.glif │ │ │ ├── molecule-co2.glif │ │ │ ├── molecule.glif │ │ │ ├── monitor-account.glif │ │ │ ├── monitor-arrow-down-variant.glif │ │ │ ├── monitor-arrow-down.glif │ │ │ ├── monitor-cellphone-star.glif │ │ │ ├── monitor-cellphone.glif │ │ │ ├── monitor-dashboard.glif │ │ │ ├── monitor-edit.glif │ │ │ ├── monitor-eye.glif │ │ │ ├── monitor-lock.glif │ │ │ ├── monitor-multiple.glif │ │ │ ├── monitor-off.glif │ │ │ ├── monitor-screenshot.glif │ │ │ ├── monitor-share.glif │ │ │ ├── monitor-shimmer.glif │ │ │ ├── monitor-small.glif │ │ │ ├── monitor-speaker-off.glif │ │ │ ├── monitor-speaker.glif │ │ │ ├── monitor-star.glif │ │ │ ├── monitor.glif │ │ │ ├── moon-first-quarter.glif │ │ │ ├── moon-full.glif │ │ │ ├── moon-last-quarter.glif │ │ │ ├── moon-new.glif │ │ │ ├── moon-waning-crescent.glif │ │ │ ├── moon-waning-gibbous.glif │ │ │ ├── moon-waxing-crescent.glif │ │ │ ├── moon-waxing-gibbous.glif │ │ │ ├── moped-electric-outline.glif │ │ │ ├── moped-electric.glif │ │ │ ├── moped-outline.glif │ │ │ ├── moped.glif │ │ │ ├── more.glif │ │ │ ├── mortar-pestle-plus.glif │ │ │ ├── mortar-pestle.glif │ │ │ ├── mosque.glif │ │ │ ├── mother-heart.glif │ │ │ ├── mother-nurse.glif │ │ │ ├── motion-outline.glif │ │ │ ├── motion-pause-outline.glif │ │ │ ├── motion-pause.glif │ │ │ ├── motion-play-outline.glif │ │ │ ├── motion-play.glif │ │ │ ├── motion-sensor-off.glif │ │ │ ├── motion-sensor.glif │ │ │ ├── motion.glif │ │ │ ├── motorbike-electric.glif │ │ │ ├── motorbike.glif │ │ │ ├── mouse-bluetooth.glif │ │ │ ├── mouse-move-down.glif │ │ │ ├── mouse-move-up.glif │ │ │ ├── mouse-move-vertical.glif │ │ │ ├── mouse-off.glif │ │ │ ├── mouse-variant-off.glif │ │ │ ├── mouse-variant.glif │ │ │ ├── mouse.glif │ │ │ ├── move-resize-variant.glif │ │ │ ├── move-resize.glif │ │ │ ├── movie-check-outline.glif │ │ │ ├── movie-check.glif │ │ │ ├── movie-cog-outline.glif │ │ │ ├── movie-cog.glif │ │ │ ├── movie-edit-outline.glif │ │ │ ├── movie-edit.glif │ │ │ ├── movie-filter-outline.glif │ │ │ ├── movie-filter.glif │ │ │ ├── movie-minus-outline.glif │ │ │ ├── movie-minus.glif │ │ │ ├── movie-off-outline.glif │ │ │ ├── movie-off.glif │ │ │ ├── movie-open-check-outline.glif │ │ │ ├── movie-open-check.glif │ │ │ ├── movie-open-cog-outline.glif │ │ │ ├── movie-open-cog.glif │ │ │ ├── movie-open-edit-outline.glif │ │ │ ├── movie-open-edit.glif │ │ │ ├── movie-open-minus-outline.glif │ │ │ ├── movie-open-minus.glif │ │ │ ├── movie-open-off-outline.glif │ │ │ ├── movie-open-off.glif │ │ │ ├── movie-open-outline.glif │ │ │ ├── movie-open-play-outline.glif │ │ │ ├── movie-open-play.glif │ │ │ ├── movie-open-plus-outline.glif │ │ │ ├── movie-open-plus.glif │ │ │ ├── movie-open-remove-outline.glif │ │ │ ├── movie-open-remove.glif │ │ │ ├── movie-open-settings-outline.glif │ │ │ ├── movie-open-settings.glif │ │ │ ├── movie-open-star-outline.glif │ │ │ ├── movie-open-star.glif │ │ │ ├── movie-open.glif │ │ │ ├── movie-outline.glif │ │ │ ├── movie-play-outline.glif │ │ │ ├── movie-play.glif │ │ │ ├── movie-plus-outline.glif │ │ │ ├── movie-plus.glif │ │ │ ├── movie-remove-outline.glif │ │ │ ├── movie-remove.glif │ │ │ ├── movie-roll.glif │ │ │ ├── movie-search-outline.glif │ │ │ ├── movie-search.glif │ │ │ ├── movie-settings-outline.glif │ │ │ ├── movie-settings.glif │ │ │ ├── movie-star-outline.glif │ │ │ ├── movie-star.glif │ │ │ ├── movie.glif │ │ │ ├── mower-bag.glif │ │ │ ├── mower.glif │ │ │ ├── muffin.glif │ │ │ ├── multicast.glif │ │ │ ├── multiplication-box.glif │ │ │ ├── multiplication.glif │ │ │ ├── mushroom-off-outline.glif │ │ │ ├── mushroom-off.glif │ │ │ ├── mushroom-outline.glif │ │ │ ├── mushroom.glif │ │ │ ├── music-accidental-double-flat.glif │ │ │ ├── music-accidental-double-sharp.glif │ │ │ ├── music-accidental-flat.glif │ │ │ ├── music-accidental-natural.glif │ │ │ ├── music-accidental-sharp.glif │ │ │ ├── music-box-multiple-outline.glif │ │ │ ├── music-box-multiple.glif │ │ │ ├── music-box-outline.glif │ │ │ ├── music-box.glif │ │ │ ├── music-circle-outline.glif │ │ │ ├── music-circle.glif │ │ │ ├── music-clef-alto.glif │ │ │ ├── music-clef-bass.glif │ │ │ ├── music-clef-treble.glif │ │ │ ├── music-note-bluetooth-off.glif │ │ │ ├── music-note-bluetooth.glif │ │ │ ├── music-note-eighth-dotted.glif │ │ │ ├── music-note-half-dotted.glif │ │ │ ├── music-note-half.glif │ │ │ ├── music-note-off-outline.glif │ │ │ ├── music-note-off.glif │ │ │ ├── music-note-outline.glif │ │ │ ├── music-note-plus.glif │ │ │ ├── music-note-quarter-dotted.glif │ │ │ ├── music-note-quarter.glif │ │ │ ├── music-note-sixteenth-dotted.glif │ │ │ ├── music-note-sixteenth.glif │ │ │ ├── music-note-whole-dotted.glif │ │ │ ├── music-note-whole.glif │ │ │ ├── music-note.glif │ │ │ ├── music-off.glif │ │ │ ├── music-rest-eighth.glif │ │ │ ├── music-rest-half.glif │ │ │ ├── music-rest-quarter.glif │ │ │ ├── music-rest-sixteenth.glif │ │ │ ├── music-rest-whole.glif │ │ │ ├── music.glif │ │ │ ├── mustache.glif │ │ │ ├── nail.glif │ │ │ ├── nas.glif │ │ │ ├── nativescript.glif │ │ │ ├── nature-people.glif │ │ │ ├── nature.glif │ │ │ ├── navigation-outline.glif │ │ │ ├── navigation-variant-outline.glif │ │ │ ├── navigation.glif │ │ │ ├── near-me.glif │ │ │ ├── necklace.glif │ │ │ ├── needle-off.glif │ │ │ ├── needle.glif │ │ │ ├── netflix.glif │ │ │ ├── network-off-outline.glif │ │ │ ├── network-off.glif │ │ │ ├── network-outline.glif │ │ │ ├── network-pos.glif │ │ │ ├── network-strength-1-alert.glif │ │ │ ├── network-strength-1.glif │ │ │ ├── network-strength-2-alert.glif │ │ │ ├── network-strength-2.glif │ │ │ ├── network-strength-3-alert.glif │ │ │ ├── network-strength-3.glif │ │ │ ├── network-strength-4-alert.glif │ │ │ ├── network-strength-4-cog.glif │ │ │ ├── network-strength-4.glif │ │ │ ├── network-strength-off-outline.glif │ │ │ ├── network-strength-off.glif │ │ │ ├── network-strength-outline.glif │ │ │ ├── network.glif │ │ │ ├── new-box.glif │ │ │ ├── newspaper-check.glif │ │ │ ├── newspaper-minus.glif │ │ │ ├── newspaper-plus.glif │ │ │ ├── newspaper-remove.glif │ │ │ ├── newspaper-variant-multiple-outline.glif │ │ │ ├── newspaper-variant-multiple.glif │ │ │ ├── newspaper-variant-outline.glif │ │ │ ├── newspaper-variant.glif │ │ │ ├── newspaper.glif │ │ │ ├── nfc-search-variant.glif │ │ │ ├── nfc-tap.glif │ │ │ ├── nfc-variant-off.glif │ │ │ ├── nfc-variant.glif │ │ │ ├── nfc.glif │ │ │ ├── ninja.glif │ │ │ ├── nintendo-game-boy.glif │ │ │ ├── nintendo-switch.glif │ │ │ ├── nintendo-wii.glif │ │ │ ├── nintendo-wiiu.glif │ │ │ ├── nix.glif │ │ │ ├── nodejs.glif │ │ │ ├── noodles.glif │ │ │ ├── not-equal-variant.glif │ │ │ ├── not-equal.glif │ │ │ ├── note-alert-outline.glif │ │ │ ├── note-alert.glif │ │ │ ├── note-check-outline.glif │ │ │ ├── note-check.glif │ │ │ ├── note-edit-outline.glif │ │ │ ├── note-edit.glif │ │ │ ├── note-minus-outline.glif │ │ │ ├── note-minus.glif │ │ │ ├── note-multiple-outline.glif │ │ │ ├── note-multiple.glif │ │ │ ├── note-off-outline.glif │ │ │ ├── note-off.glif │ │ │ ├── note-outline.glif │ │ │ ├── note-plus-outline.glif │ │ │ ├── note-plus.glif │ │ │ ├── note-remove-outline.glif │ │ │ ├── note-remove.glif │ │ │ ├── note-search-outline.glif │ │ │ ├── note-search.glif │ │ │ ├── note-text-outline.glif │ │ │ ├── note-text.glif │ │ │ ├── note.glif │ │ │ ├── notebook-check-outline.glif │ │ │ ├── notebook-check.glif │ │ │ ├── notebook-edit-outline.glif │ │ │ ├── notebook-edit.glif │ │ │ ├── notebook-heart-outline.glif │ │ │ ├── notebook-heart.glif │ │ │ ├── notebook-minus-outline.glif │ │ │ ├── notebook-minus.glif │ │ │ ├── notebook-multiple.glif │ │ │ ├── notebook-outline.glif │ │ │ ├── notebook-plus-outline.glif │ │ │ ├── notebook-plus.glif │ │ │ ├── notebook-remove-outline.glif │ │ │ ├── notebook-remove.glif │ │ │ ├── notebook.glif │ │ │ ├── notification-clear-all.glif │ │ │ ├── npm.glif │ │ │ ├── nuke.glif │ │ │ ├── null.glif │ │ │ ├── numeric-0-box-multiple-outline.glif │ │ │ ├── numeric-0-box-multiple.glif │ │ │ ├── numeric-0-box-outline.glif │ │ │ ├── numeric-0-box.glif │ │ │ ├── numeric-1-box-multiple-outline.glif │ │ │ ├── numeric-1-box-multiple.glif │ │ │ ├── numeric-1-box-outline.glif │ │ │ ├── numeric-1-box.glif │ │ │ ├── numeric-1-circle-outline.glif │ │ │ ├── numeric-1-circle.glif │ │ │ ├── numeric-1.glif │ │ │ ├── numeric-10-box-multiple-outline.glif │ │ │ ├── numeric-10-box-multiple.glif │ │ │ ├── numeric-10-box-outline.glif │ │ │ ├── numeric-10-box.glif │ │ │ ├── numeric-10-circle-outline.glif │ │ │ ├── numeric-10-circle.glif │ │ │ ├── numeric-10.glif │ │ │ ├── numeric-2-box-multiple-outline.glif │ │ │ ├── numeric-2-box-multiple.glif │ │ │ ├── numeric-2-box-outline.glif │ │ │ ├── numeric-2-box.glif │ │ │ ├── numeric-2-circle-outline.glif │ │ │ ├── numeric-2-circle.glif │ │ │ ├── numeric-2.glif │ │ │ ├── numeric-3-box-multiple-outline.glif │ │ │ ├── numeric-3-box-multiple.glif │ │ │ ├── numeric-3-box-outline.glif │ │ │ ├── numeric-3-box.glif │ │ │ ├── numeric-3-circle-outline.glif │ │ │ ├── numeric-3-circle.glif │ │ │ ├── numeric-3.glif │ │ │ ├── numeric-4-box-multiple-outline.glif │ │ │ ├── numeric-4-box-multiple.glif │ │ │ ├── numeric-4-box-outline.glif │ │ │ ├── numeric-4-box.glif │ │ │ ├── numeric-4-circle-outline.glif │ │ │ ├── numeric-4-circle.glif │ │ │ ├── numeric-4.glif │ │ │ ├── numeric-5-box-multiple-outline.glif │ │ │ ├── numeric-5-box-multiple.glif │ │ │ ├── numeric-5-box-outline.glif │ │ │ ├── numeric-5-box.glif │ │ │ ├── numeric-5-circle-outline.glif │ │ │ ├── numeric-5-circle.glif │ │ │ ├── numeric-5.glif │ │ │ ├── numeric-6-box-multiple-outline.glif │ │ │ ├── numeric-6-box-multiple.glif │ │ │ ├── numeric-6-box-outline.glif │ │ │ ├── numeric-6-box.glif │ │ │ ├── numeric-6-circle-outline.glif │ │ │ ├── numeric-6-circle.glif │ │ │ ├── numeric-6.glif │ │ │ ├── numeric-7-box-multiple-outline.glif │ │ │ ├── numeric-7-box-multiple.glif │ │ │ ├── numeric-7-box-outline.glif │ │ │ ├── numeric-7-box.glif │ │ │ ├── numeric-7-circle-outline.glif │ │ │ ├── numeric-7-circle.glif │ │ │ ├── numeric-7.glif │ │ │ ├── numeric-8-box-multiple-outline.glif │ │ │ ├── numeric-8-box-multiple.glif │ │ │ ├── numeric-8-box-outline.glif │ │ │ ├── numeric-8-box.glif │ │ │ ├── numeric-8-circle-outline.glif │ │ │ ├── numeric-8-circle.glif │ │ │ ├── numeric-8.glif │ │ │ ├── numeric-9-box-multiple-outline.glif │ │ │ ├── numeric-9-box-multiple.glif │ │ │ ├── numeric-9-box-outline.glif │ │ │ ├── numeric-9-box.glif │ │ │ ├── numeric-9-circle-outline.glif │ │ │ ├── numeric-9-circle.glif │ │ │ ├── numeric-9-plus-box-multiple-outline.glif │ │ │ ├── numeric-9-plus-box-multiple.glif │ │ │ ├── numeric-9-plus-box-outline.glif │ │ │ ├── numeric-9-plus-box.glif │ │ │ ├── numeric-9-plus-circle-outline.glif │ │ │ ├── numeric-9-plus-circle.glif │ │ │ ├── numeric-9-plus.glif │ │ │ ├── numeric-9.glif │ │ │ ├── numeric-negative-1.glif │ │ │ ├── numeric-off.glif │ │ │ ├── numeric-positive-1.glif │ │ │ ├── numeric.glif │ │ │ ├── nut.glif │ │ │ ├── nutrition.glif │ │ │ ├── nuxt.glif │ │ │ ├── oar.glif │ │ │ ├── ocarina.glif │ │ │ ├── oci.glif │ │ │ ├── ocr.glif │ │ │ ├── octagon-outline.glif │ │ │ ├── octagon.glif │ │ │ ├── octagram-outline.glif │ │ │ ├── octagram.glif │ │ │ ├── octahedron-off.glif │ │ │ ├── octahedron.glif │ │ │ ├── odnoklassniki.glif │ │ │ ├── offer.glif │ │ │ ├── office-building-cog-outline.glif │ │ │ ├── office-building-cog.glif │ │ │ ├── office-building-marker-outline.glif │ │ │ ├── office-building-marker.glif │ │ │ ├── office-building-outline.glif │ │ │ ├── office-building.glif │ │ │ ├── oil-lamp.glif │ │ │ ├── oil-level.glif │ │ │ ├── oil-temperature.glif │ │ │ ├── oil.glif │ │ │ ├── om.glif │ │ │ ├── omega.glif │ │ │ ├── one-up.glif │ │ │ ├── onepassword.glif │ │ │ ├── opacity.glif │ │ │ ├── open-in-app.glif │ │ │ ├── open-in-new.glif │ │ │ ├── open-source-initiative.glif │ │ │ ├── openid.glif │ │ │ ├── opera.glif │ │ │ ├── orbit-variant.glif │ │ │ ├── orbit.glif │ │ │ ├── order-alphabetical-ascending.glif │ │ │ ├── order-alphabetical-descending.glif │ │ │ ├── order-bool-ascending-variant.glif │ │ │ ├── order-bool-ascending.glif │ │ │ ├── order-bool-descending-variant.glif │ │ │ ├── order-bool-descending.glif │ │ │ ├── order-numeric-ascending.glif │ │ │ ├── order-numeric-descending.glif │ │ │ ├── origin.glif │ │ │ ├── ornament-variant.glif │ │ │ ├── ornament.glif │ │ │ ├── outdoor-lamp.glif │ │ │ ├── overscan.glif │ │ │ ├── owl.glif │ │ │ ├── pac-man.glif │ │ │ ├── package-down.glif │ │ │ ├── package-up.glif │ │ │ ├── package-variant-closed-minus.glif │ │ │ ├── package-variant-closed-plus.glif │ │ │ ├── package-variant-closed-remove.glif │ │ │ ├── package-variant-closed.glif │ │ │ ├── package-variant-minus.glif │ │ │ ├── package-variant-plus.glif │ │ │ ├── package-variant-remove.glif │ │ │ ├── package-variant.glif │ │ │ ├── package.glif │ │ │ ├── page-first.glif │ │ │ ├── page-last.glif │ │ │ ├── page-layout-body.glif │ │ │ ├── page-layout-footer.glif │ │ │ ├── page-layout-header-footer.glif │ │ │ ├── page-layout-header.glif │ │ │ ├── page-layout-sidebar-left.glif │ │ │ ├── page-layout-sidebar-right.glif │ │ │ ├── page-next-outline.glif │ │ │ ├── page-next.glif │ │ │ ├── page-previous-outline.glif │ │ │ ├── page-previous.glif │ │ │ ├── pail-minus-outline.glif │ │ │ ├── pail-minus.glif │ │ │ ├── pail-off-outline.glif │ │ │ ├── pail-off.glif │ │ │ ├── pail-outline.glif │ │ │ ├── pail-plus-outline.glif │ │ │ ├── pail-plus.glif │ │ │ ├── pail-remove-outline.glif │ │ │ ├── pail-remove.glif │ │ │ ├── pail.glif │ │ │ ├── palette-advanced.glif │ │ │ ├── palette-outline.glif │ │ │ ├── palette-swatch-outline.glif │ │ │ ├── palette-swatch-variant.glif │ │ │ ├── palette-swatch.glif │ │ │ ├── palette.glif │ │ │ ├── palm-tree.glif │ │ │ ├── pan-bottom-left.glif │ │ │ ├── pan-bottom-right.glif │ │ │ ├── pan-down.glif │ │ │ ├── pan-horizontal.glif │ │ │ ├── pan-left.glif │ │ │ ├── pan-right.glif │ │ │ ├── pan-top-left.glif │ │ │ ├── pan-top-right.glif │ │ │ ├── pan-up.glif │ │ │ ├── pan-vertical.glif │ │ │ ├── pan.glif │ │ │ ├── panda.glif │ │ │ ├── pandora.glif │ │ │ ├── panorama-fisheye.glif │ │ │ ├── panorama-horizontal-outline.glif │ │ │ ├── panorama-horizontal.glif │ │ │ ├── panorama-outline.glif │ │ │ ├── panorama-sphere-outline.glif │ │ │ ├── panorama-sphere.glif │ │ │ ├── panorama-variant-outline.glif │ │ │ ├── panorama-variant.glif │ │ │ ├── panorama-vertical-outline.glif │ │ │ ├── panorama-vertical.glif │ │ │ ├── panorama-wide-angle-outline.glif │ │ │ ├── panorama-wide-angle.glif │ │ │ ├── panorama.glif │ │ │ ├── paper-cut-vertical.glif │ │ │ ├── paper-roll-outline.glif │ │ │ ├── paper-roll.glif │ │ │ ├── paperclip-check.glif │ │ │ ├── paperclip-lock.glif │ │ │ ├── paperclip-minus.glif │ │ │ ├── paperclip-off.glif │ │ │ ├── paperclip-plus.glif │ │ │ ├── paperclip-remove.glif │ │ │ ├── paperclip.glif │ │ │ ├── parachute-outline.glif │ │ │ ├── parachute.glif │ │ │ ├── paragliding.glif │ │ │ ├── parking.glif │ │ │ ├── party-popper.glif │ │ │ ├── passport-biometric.glif │ │ │ ├── passport.glif │ │ │ ├── pasta.glif │ │ │ ├── patio-heater.glif │ │ │ ├── patreon.glif │ │ │ ├── pause-circle-outline.glif │ │ │ ├── pause-circle.glif │ │ │ ├── pause-octagon-outline.glif │ │ │ ├── pause-octagon.glif │ │ │ ├── pause.glif │ │ │ ├── paw-off-outline.glif │ │ │ ├── paw-off.glif │ │ │ ├── paw-outline.glif │ │ │ ├── paw.glif │ │ │ ├── peace.glif │ │ │ ├── peanut-off-outline.glif │ │ │ ├── peanut-off.glif │ │ │ ├── peanut-outline.glif │ │ │ ├── peanut.glif │ │ │ ├── pen-lock.glif │ │ │ ├── pen-minus.glif │ │ │ ├── pen-off.glif │ │ │ ├── pen-plus.glif │ │ │ ├── pen-remove.glif │ │ │ ├── pen.glif │ │ │ ├── pencil-box-multiple-outline.glif │ │ │ ├── pencil-box-multiple.glif │ │ │ ├── pencil-box-outline.glif │ │ │ ├── pencil-box.glif │ │ │ ├── pencil-circle-outline.glif │ │ │ ├── pencil-circle.glif │ │ │ ├── pencil-lock-outline.glif │ │ │ ├── pencil-lock.glif │ │ │ ├── pencil-minus-outline.glif │ │ │ ├── pencil-minus.glif │ │ │ ├── pencil-off-outline.glif │ │ │ ├── pencil-off.glif │ │ │ ├── pencil-outline.glif │ │ │ ├── pencil-plus-outline.glif │ │ │ ├── pencil-plus.glif │ │ │ ├── pencil-remove-outline.glif │ │ │ ├── pencil-remove.glif │ │ │ ├── pencil-ruler.glif │ │ │ ├── pencil.glif │ │ │ ├── penguin.glif │ │ │ ├── pentagon-outline.glif │ │ │ ├── pentagon.glif │ │ │ ├── pentagram.glif │ │ │ ├── percent-box-outline.glif │ │ │ ├── percent-box.glif │ │ │ ├── percent-circle-outline.glif │ │ │ ├── percent-circle.glif │ │ │ ├── percent-outline.glif │ │ │ ├── percent.glif │ │ │ ├── periodic-table.glif │ │ │ ├── perspective-less.glif │ │ │ ├── perspective-more.glif │ │ │ ├── ph.glif │ │ │ ├── phone-alert-outline.glif │ │ │ ├── phone-alert.glif │ │ │ ├── phone-bluetooth-outline.glif │ │ │ ├── phone-bluetooth.glif │ │ │ ├── phone-cancel-outline.glif │ │ │ ├── phone-cancel.glif │ │ │ ├── phone-check-outline.glif │ │ │ ├── phone-check.glif │ │ │ ├── phone-classic-off.glif │ │ │ ├── phone-classic.glif │ │ │ ├── phone-clock.glif │ │ │ ├── phone-dial-outline.glif │ │ │ ├── phone-dial.glif │ │ │ ├── phone-forward-outline.glif │ │ │ ├── phone-forward.glif │ │ │ ├── phone-hangup-outline.glif │ │ │ ├── phone-hangup.glif │ │ │ ├── phone-in-talk-outline.glif │ │ │ ├── phone-in-talk.glif │ │ │ ├── phone-incoming-outline.glif │ │ │ ├── phone-incoming.glif │ │ │ ├── phone-lock-outline.glif │ │ │ ├── phone-lock.glif │ │ │ ├── phone-log-outline.glif │ │ │ ├── phone-log.glif │ │ │ ├── phone-message-outline.glif │ │ │ ├── phone-message.glif │ │ │ ├── phone-minus-outline.glif │ │ │ ├── phone-minus.glif │ │ │ ├── phone-missed-outline.glif │ │ │ ├── phone-missed.glif │ │ │ ├── phone-off-outline.glif │ │ │ ├── phone-off.glif │ │ │ ├── phone-outgoing-outline.glif │ │ │ ├── phone-outgoing.glif │ │ │ ├── phone-outline.glif │ │ │ ├── phone-paused-outline.glif │ │ │ ├── phone-paused.glif │ │ │ ├── phone-plus-outline.glif │ │ │ ├── phone-plus.glif │ │ │ ├── phone-refresh-outline.glif │ │ │ ├── phone-refresh.glif │ │ │ ├── phone-remove-outline.glif │ │ │ ├── phone-remove.glif │ │ │ ├── phone-return-outline.glif │ │ │ ├── phone-return.glif │ │ │ ├── phone-ring-outline.glif │ │ │ ├── phone-ring.glif │ │ │ ├── phone-rotate-landscape.glif │ │ │ ├── phone-rotate-portrait.glif │ │ │ ├── phone-settings-outline.glif │ │ │ ├── phone-settings.glif │ │ │ ├── phone-sync-outline.glif │ │ │ ├── phone-sync.glif │ │ │ ├── phone-voip.glif │ │ │ ├── phone.glif │ │ │ ├── pi-box.glif │ │ │ ├── pi-hole.glif │ │ │ ├── pi.glif │ │ │ ├── piano-off.glif │ │ │ ├── piano.glif │ │ │ ├── pickaxe.glif │ │ │ ├── picture-in-picture-bottom-right-outline.glif │ │ │ ├── picture-in-picture-bottom-right.glif │ │ │ ├── picture-in-picture-top-right-outline.glif │ │ │ ├── picture-in-picture-top-right.glif │ │ │ ├── pier-crane.glif │ │ │ ├── pier.glif │ │ │ ├── pig-variant-outline.glif │ │ │ ├── pig-variant.glif │ │ │ ├── pig.glif │ │ │ ├── piggy-bank-outline.glif │ │ │ ├── piggy-bank.glif │ │ │ ├── pill-off.glif │ │ │ ├── pill.glif │ │ │ ├── pillar.glif │ │ │ ├── pin-off-outline.glif │ │ │ ├── pin-off.glif │ │ │ ├── pin-outline.glif │ │ │ ├── pin.glif │ │ │ ├── pine-tree-box.glif │ │ │ ├── pine-tree-fire.glif │ │ │ ├── pine-tree.glif │ │ │ ├── pinterest.glif │ │ │ ├── pinwheel-outline.glif │ │ │ ├── pinwheel.glif │ │ │ ├── pipe-disconnected.glif │ │ │ ├── pipe-leak.glif │ │ │ ├── pipe-valve.glif │ │ │ ├── pipe-wrench.glif │ │ │ ├── pipe.glif │ │ │ ├── pirate.glif │ │ │ ├── pistol.glif │ │ │ ├── piston.glif │ │ │ ├── pitchfork.glif │ │ │ ├── pizza.glif │ │ │ ├── play-box-lock-open-outline.glif │ │ │ ├── play-box-lock-open.glif │ │ │ ├── play-box-lock-outline.glif │ │ │ ├── play-box-lock.glif │ │ │ ├── play-box-multiple-outline.glif │ │ │ ├── play-box-multiple.glif │ │ │ ├── play-box-outline.glif │ │ │ ├── play-box.glif │ │ │ ├── play-circle-outline.glif │ │ │ ├── play-circle.glif │ │ │ ├── play-network-outline.glif │ │ │ ├── play-network.glif │ │ │ ├── play-outline.glif │ │ │ ├── play-pause.glif │ │ │ ├── play-protected-content.glif │ │ │ ├── play-speed.glif │ │ │ ├── play.glif │ │ │ ├── playlist-check.glif │ │ │ ├── playlist-edit.glif │ │ │ ├── playlist-minus.glif │ │ │ ├── playlist-music-outline.glif │ │ │ ├── playlist-music.glif │ │ │ ├── playlist-play.glif │ │ │ ├── playlist-plus.glif │ │ │ ├── playlist-remove.glif │ │ │ ├── playlist-star.glif │ │ │ ├── plex.glif │ │ │ ├── pliers.glif │ │ │ ├── plus-box-multiple-outline.glif │ │ │ ├── plus-box-multiple.glif │ │ │ ├── plus-box-outline.glif │ │ │ ├── plus-box.glif │ │ │ ├── plus-circle-multiple-outline.glif │ │ │ ├── plus-circle-multiple.glif │ │ │ ├── plus-circle-outline.glif │ │ │ ├── plus-circle.glif │ │ │ ├── plus-lock-open.glif │ │ │ ├── plus-lock.glif │ │ │ ├── plus-minus-box.glif │ │ │ ├── plus-minus-variant.glif │ │ │ ├── plus-minus.glif │ │ │ ├── plus-network-outline.glif │ │ │ ├── plus-network.glif │ │ │ ├── plus-outline.glif │ │ │ ├── plus-thick.glif │ │ │ ├── plus.glif │ │ │ ├── podcast.glif │ │ │ ├── podium-bronze.glif │ │ │ ├── podium-gold.glif │ │ │ ├── podium-silver.glif │ │ │ ├── podium.glif │ │ │ ├── point-of-sale.glif │ │ │ ├── pokeball.glif │ │ │ ├── pokemon-go.glif │ │ │ ├── poker-chip.glif │ │ │ ├── polaroid.glif │ │ │ ├── police-badge-outline.glif │ │ │ ├── police-badge.glif │ │ │ ├── police-station.glif │ │ │ ├── poll.glif │ │ │ ├── polo.glif │ │ │ ├── polymer.glif │ │ │ ├── pool-thermometer.glif │ │ │ ├── pool.glif │ │ │ ├── popcorn.glif │ │ │ ├── post-lamp.glif │ │ │ ├── post-outline.glif │ │ │ ├── post.glif │ │ │ ├── postage-stamp.glif │ │ │ ├── pot-mix-outline.glif │ │ │ ├── pot-mix.glif │ │ │ ├── pot-outline.glif │ │ │ ├── pot-steam-outline.glif │ │ │ ├── pot-steam.glif │ │ │ ├── pot.glif │ │ │ ├── pound-box-outline.glif │ │ │ ├── pound-box.glif │ │ │ ├── pound.glif │ │ │ ├── power-cycle.glif │ │ │ ├── power-off.glif │ │ │ ├── power-on.glif │ │ │ ├── power-plug-off-outline.glif │ │ │ ├── power-plug-off.glif │ │ │ ├── power-plug-outline.glif │ │ │ ├── power-plug.glif │ │ │ ├── power-settings.glif │ │ │ ├── power-sleep.glif │ │ │ ├── power-socket-au.glif │ │ │ ├── power-socket-ch.glif │ │ │ ├── power-socket-de.glif │ │ │ ├── power-socket-eu.glif │ │ │ ├── power-socket-fr.glif │ │ │ ├── power-socket-it.glif │ │ │ ├── power-socket-jp.glif │ │ │ ├── power-socket-uk.glif │ │ │ ├── power-socket-us.glif │ │ │ ├── power-socket.glif │ │ │ ├── power-standby.glif │ │ │ ├── power.glif │ │ │ ├── powershell.glif │ │ │ ├── prescription.glif │ │ │ ├── presentation-play.glif │ │ │ ├── presentation.glif │ │ │ ├── pretzel.glif │ │ │ ├── printer-3d-nozzle-alert-outline.glif │ │ │ ├── printer-3d-nozzle-alert.glif │ │ │ ├── printer-3d-nozzle-heat-outline.glif │ │ │ ├── printer-3d-nozzle-heat.glif │ │ │ ├── printer-3d-nozzle-outline.glif │ │ │ ├── printer-3d-nozzle.glif │ │ │ ├── printer-3d.glif │ │ │ ├── printer-alert.glif │ │ │ ├── printer-check.glif │ │ │ ├── printer-eye.glif │ │ │ ├── printer-off-outline.glif │ │ │ ├── printer-off.glif │ │ │ ├── printer-outline.glif │ │ │ ├── printer-pos.glif │ │ │ ├── printer-search.glif │ │ │ ├── printer-settings.glif │ │ │ ├── printer-wireless.glif │ │ │ ├── printer.glif │ │ │ ├── priority-high.glif │ │ │ ├── priority-low.glif │ │ │ ├── professional-hexagon.glif │ │ │ ├── progress-alert.glif │ │ │ ├── progress-check.glif │ │ │ ├── progress-clock.glif │ │ │ ├── progress-close.glif │ │ │ ├── progress-download.glif │ │ │ ├── progress-pencil.glif │ │ │ ├── progress-question.glif │ │ │ ├── progress-star.glif │ │ │ ├── progress-upload.glif │ │ │ ├── progress-wrench.glif │ │ │ ├── projector-off.glif │ │ │ ├── projector-screen-off-outline.glif │ │ │ ├── projector-screen-off.glif │ │ │ ├── projector-screen-outline.glif │ │ │ ├── projector-screen-variant-off-outline.glif │ │ │ ├── projector-screen-variant-off.glif │ │ │ ├── projector-screen-variant-outline.glif │ │ │ ├── projector-screen-variant.glif │ │ │ ├── projector-screen.glif │ │ │ ├── projector.glif │ │ │ ├── propane-tank-outline.glif │ │ │ ├── propane-tank.glif │ │ │ ├── protocol.glif │ │ │ ├── publish-off.glif │ │ │ ├── publish.glif │ │ │ ├── pulse.glif │ │ │ ├── pump.glif │ │ │ ├── pumpkin.glif │ │ │ ├── purse-outline.glif │ │ │ ├── purse.glif │ │ │ ├── puzzle-check-outline.glif │ │ │ ├── puzzle-check.glif │ │ │ ├── puzzle-edit-outline.glif │ │ │ ├── puzzle-edit.glif │ │ │ ├── puzzle-heart-outline.glif │ │ │ ├── puzzle-heart.glif │ │ │ ├── puzzle-minus-outline.glif │ │ │ ├── puzzle-minus.glif │ │ │ ├── puzzle-outline.glif │ │ │ ├── puzzle-plus-outline.glif │ │ │ ├── puzzle-plus.glif │ │ │ ├── puzzle-remove-outline.glif │ │ │ ├── puzzle-remove.glif │ │ │ ├── puzzle-star-outline.glif │ │ │ ├── puzzle-star.glif │ │ │ ├── puzzle.glif │ │ │ ├── pyramid-off.glif │ │ │ ├── pyramid.glif │ │ │ ├── qi.glif │ │ │ ├── qqchat.glif │ │ │ ├── qrcode-edit.glif │ │ │ ├── qrcode-minus.glif │ │ │ ├── qrcode-plus.glif │ │ │ ├── qrcode-remove.glif │ │ │ ├── qrcode-scan.glif │ │ │ ├── qrcode.glif │ │ │ ├── quadcopter.glif │ │ │ ├── quality-high.glif │ │ │ ├── quality-low.glif │ │ │ ├── quality-medium.glif │ │ │ ├── quora.glif │ │ │ ├── rabbit-variant-outline.glif │ │ │ ├── rabbit-variant.glif │ │ │ ├── rabbit.glif │ │ │ ├── racing-helmet.glif │ │ │ ├── racquetball.glif │ │ │ ├── radar.glif │ │ │ ├── radiator-disabled.glif │ │ │ ├── radiator-off.glif │ │ │ ├── radiator.glif │ │ │ ├── radio-am.glif │ │ │ ├── radio-fm.glif │ │ │ ├── radio-handheld.glif │ │ │ ├── radio-off.glif │ │ │ ├── radio-tower.glif │ │ │ ├── radio.glif │ │ │ ├── radioactive-circle-outline.glif │ │ │ ├── radioactive-circle.glif │ │ │ ├── radioactive-off.glif │ │ │ ├── radioactive.glif │ │ │ ├── radiobox-marked.glif │ │ │ ├── radiology-box-outline.glif │ │ │ ├── radiology-box.glif │ │ │ ├── radius-outline.glif │ │ │ ├── radius.glif │ │ │ ├── railroad-light.glif │ │ │ ├── rake.glif │ │ │ ├── raspberry-pi.glif │ │ │ ├── raw-off.glif │ │ │ ├── raw.glif │ │ │ ├── ray-end-arrow.glif │ │ │ ├── ray-end.glif │ │ │ ├── ray-start-arrow.glif │ │ │ ├── ray-start-end.glif │ │ │ ├── ray-start-vertex-end.glif │ │ │ ├── ray-start.glif │ │ │ ├── ray-vertex.glif │ │ │ ├── razor-double-edge.glif │ │ │ ├── razor-single-edge.glif │ │ │ ├── react.glif │ │ │ ├── read.glif │ │ │ ├── receipt-outline.glif │ │ │ ├── receipt-text-check-outline.glif │ │ │ ├── receipt-text-check.glif │ │ │ ├── receipt-text-minus-outline.glif │ │ │ ├── receipt-text-minus.glif │ │ │ ├── receipt-text-plus-outline.glif │ │ │ ├── receipt-text-plus.glif │ │ │ ├── receipt-text-remove-outline.glif │ │ │ ├── receipt-text-remove.glif │ │ │ ├── receipt.glif │ │ │ ├── record-circle-outline.glif │ │ │ ├── record-circle.glif │ │ │ ├── record-player.glif │ │ │ ├── record-rec.glif │ │ │ ├── record.glif │ │ │ ├── rectangle-outline.glif │ │ │ ├── rectangle.glif │ │ │ ├── recycle-variant.glif │ │ │ ├── recycle.glif │ │ │ ├── reddit.glif │ │ │ ├── redhat.glif │ │ │ ├── redo-variant.glif │ │ │ ├── redo.glif │ │ │ ├── reflect-horizontal.glif │ │ │ ├── reflect-vertical.glif │ │ │ ├── refresh-auto.glif │ │ │ ├── refresh-circle.glif │ │ │ ├── refresh.glif │ │ │ ├── regex.glif │ │ │ ├── registered-trademark.glif │ │ │ ├── reiterate.glif │ │ │ ├── relation-many-to-many.glif │ │ │ ├── relation-many-to-one-or-many.glif │ │ │ ├── relation-many-to-one.glif │ │ │ ├── relation-many-to-only-one.glif │ │ │ ├── relation-many-to-zero-or-many.glif │ │ │ ├── relation-many-to-zero-or-one.glif │ │ │ ├── relation-one-or-many-to-many.glif │ │ │ ├── relation-one-or-many-to-one-or-many.glif │ │ │ ├── relation-one-or-many-to-one.glif │ │ │ ├── relation-one-or-many-to-only-one.glif │ │ │ ├── relation-one-or-many-to-zero-or-many.glif │ │ │ ├── relation-one-or-many-to-zero-or-one.glif │ │ │ ├── relation-one-to-many.glif │ │ │ ├── relation-one-to-one-or-many.glif │ │ │ ├── relation-one-to-one.glif │ │ │ ├── relation-one-to-only-one.glif │ │ │ ├── relation-one-to-zero-or-many.glif │ │ │ ├── relation-one-to-zero-or-one.glif │ │ │ ├── relation-only-one-to-many.glif │ │ │ ├── relation-only-one-to-one-or-many.glif │ │ │ ├── relation-only-one-to-one.glif │ │ │ ├── relation-only-one-to-only-one.glif │ │ │ ├── relation-only-one-to-zero-or-many.glif │ │ │ ├── relation-only-one-to-zero-or-one.glif │ │ │ ├── relation-zero-or-many-to-many.glif │ │ │ ├── relation-zero-or-many-to-one-or-many.glif │ │ │ ├── relation-zero-or-many-to-one.glif │ │ │ ├── relation-zero-or-many-to-only-one.glif │ │ │ ├── relation-zero-or-many-to-zero-or-many.glif │ │ │ ├── relation-zero-or-many-to-zero-or-one.glif │ │ │ ├── relation-zero-or-one-to-many.glif │ │ │ ├── relation-zero-or-one-to-one-or-many.glif │ │ │ ├── relation-zero-or-one-to-one.glif │ │ │ ├── relation-zero-or-one-to-only-one.glif │ │ │ ├── relation-zero-or-one-to-zero-or-many.glif │ │ │ ├── relation-zero-or-one-to-zero-or-one.glif │ │ │ ├── relative-scale.glif │ │ │ ├── reload-alert.glif │ │ │ ├── reload.glif │ │ │ ├── reminder.glif │ │ │ ├── remote-desktop.glif │ │ │ ├── remote-off.glif │ │ │ ├── remote-tv-off.glif │ │ │ ├── remote-tv.glif │ │ │ ├── remote.glif │ │ │ ├── rename-box.glif │ │ │ ├── reorder-horizontal.glif │ │ │ ├── reorder-vertical.glif │ │ │ ├── repeat-off.glif │ │ │ ├── repeat-once.glif │ │ │ ├── repeat-variant.glif │ │ │ ├── repeat.glif │ │ │ ├── replay.glif │ │ │ ├── reply-all-outline.glif │ │ │ ├── reply-all.glif │ │ │ ├── reply-circle.glif │ │ │ ├── reply-outline.glif │ │ │ ├── reply.glif │ │ │ ├── reproduction.glif │ │ │ ├── resistor-nodes.glif │ │ │ ├── resistor.glif │ │ │ ├── resize-bottom-right.glif │ │ │ ├── resize.glif │ │ │ ├── responsive.glif │ │ │ ├── restart-alert.glif │ │ │ ├── restart-off.glif │ │ │ ├── restart.glif │ │ │ ├── restore-alert.glif │ │ │ ├── restore.glif │ │ │ ├── rewind-10.glif │ │ │ ├── rewind-15.glif │ │ │ ├── rewind-30.glif │ │ │ ├── rewind-5.glif │ │ │ ├── rewind-60.glif │ │ │ ├── rewind-outline.glif │ │ │ ├── rewind.glif │ │ │ ├── rhombus-medium-outline.glif │ │ │ ├── rhombus-medium.glif │ │ │ ├── rhombus-outline.glif │ │ │ ├── rhombus-split-outline.glif │ │ │ ├── rhombus-split.glif │ │ │ ├── rhombus.glif │ │ │ ├── ribbon.glif │ │ │ ├── rice.glif │ │ │ ├── rickshaw-electric.glif │ │ │ ├── rickshaw.glif │ │ │ ├── ring.glif │ │ │ ├── rivet.glif │ │ │ ├── road-variant.glif │ │ │ ├── road.glif │ │ │ ├── robber.glif │ │ │ ├── robot-angry-outline.glif │ │ │ ├── robot-angry.glif │ │ │ ├── robot-confused-outline.glif │ │ │ ├── robot-confused.glif │ │ │ ├── robot-dead-outline.glif │ │ │ ├── robot-dead.glif │ │ │ ├── robot-excited-outline.glif │ │ │ ├── robot-excited.glif │ │ │ ├── robot-happy-outline.glif │ │ │ ├── robot-happy.glif │ │ │ ├── robot-industrial-outline.glif │ │ │ ├── robot-industrial.glif │ │ │ ├── robot-love-outline.glif │ │ │ ├── robot-love.glif │ │ │ ├── robot-mower-outline.glif │ │ │ ├── robot-mower.glif │ │ │ ├── robot-off-outline.glif │ │ │ ├── robot-off.glif │ │ │ ├── robot-outline.glif │ │ │ ├── robot-vacuum-variant.glif │ │ │ ├── robot-vacuum.glif │ │ │ ├── robot.glif │ │ │ ├── rocket-launch-outline.glif │ │ │ ├── rocket-launch.glif │ │ │ ├── rocket-outline.glif │ │ │ ├── rocket.glif │ │ │ ├── rodent.glif │ │ │ ├── roller-shade-closed.glif │ │ │ ├── roller-shade.glif │ │ │ ├── roller-skate-off.glif │ │ │ ├── roller-skate.glif │ │ │ ├── rollerblade-off.glif │ │ │ ├── rollerblade.glif │ │ │ ├── rollupjs.glif │ │ │ ├── rolodex-outline.glif │ │ │ ├── rolodex.glif │ │ │ ├── roman-numeral-2.glif │ │ │ ├── roman-numeral-3.glif │ │ │ ├── roman-numeral-4.glif │ │ │ ├── roman-numeral-6.glif │ │ │ ├── roman-numeral-7.glif │ │ │ ├── roman-numeral-8.glif │ │ │ ├── roman-numeral-9.glif │ │ │ ├── room-service-outline.glif │ │ │ ├── room-service.glif │ │ │ ├── rotate-360.glif │ │ │ ├── rotate-3d-variant.glif │ │ │ ├── rotate-3d.glif │ │ │ ├── rotate-left-variant.glif │ │ │ ├── rotate-left.glif │ │ │ ├── rotate-orbit.glif │ │ │ ├── rotate-right-variant.glif │ │ │ ├── rotate-right.glif │ │ │ ├── rounded-corner.glif │ │ │ ├── router-network.glif │ │ │ ├── router-wireless-off.glif │ │ │ ├── router-wireless-settings.glif │ │ │ ├── router-wireless.glif │ │ │ ├── router.glif │ │ │ ├── routes-clock.glif │ │ │ ├── routes.glif │ │ │ ├── rowing.glif │ │ │ ├── rss-box.glif │ │ │ ├── rss-off.glif │ │ │ ├── rss.glif │ │ │ ├── rug.glif │ │ │ ├── rugby.glif │ │ │ ├── ruler-square-compass.glif │ │ │ ├── ruler-square.glif │ │ │ ├── ruler.glif │ │ │ ├── run-fast.glif │ │ │ ├── run.glif │ │ │ ├── rv-truck.glif │ │ │ ├── sack-percent.glif │ │ │ ├── sack.glif │ │ │ ├── safe-square-outline.glif │ │ │ ├── safe-square.glif │ │ │ ├── safe.glif │ │ │ ├── safety-goggles.glif │ │ │ ├── sail-boat-sink.glif │ │ │ ├── sail-boat.glif │ │ │ ├── sale-outline.glif │ │ │ ├── sale.glif │ │ │ ├── salesforce.glif │ │ │ ├── sass.glif │ │ │ ├── satellite-uplink.glif │ │ │ ├── satellite-variant.glif │ │ │ ├── satellite.glif │ │ │ ├── sausage-off.glif │ │ │ ├── sausage.glif │ │ │ ├── saw-blade.glif │ │ │ ├── sawtooth-wave.glif │ │ │ ├── saxophone.glif │ │ │ ├── scale-balance.glif │ │ │ ├── scale-bathroom.glif │ │ │ ├── scale-off.glif │ │ │ ├── scale-unbalanced.glif │ │ │ ├── scale.glif │ │ │ ├── scan-helper.glif │ │ │ ├── scanner-off.glif │ │ │ ├── scanner.glif │ │ │ ├── scatter-plot-outline.glif │ │ │ ├── scatter-plot.glif │ │ │ ├── scent-off.glif │ │ │ ├── scent.glif │ │ │ ├── school-outline.glif │ │ │ ├── school.glif │ │ │ ├── scissors-cutting.glif │ │ │ ├── scooter-electric.glif │ │ │ ├── scooter.glif │ │ │ ├── scoreboard-outline.glif │ │ │ ├── scoreboard.glif │ │ │ ├── screen-rotation-lock.glif │ │ │ ├── screen-rotation.glif │ │ │ ├── screw-flat-top.glif │ │ │ ├── screw-lag.glif │ │ │ ├── screw-machine-flat-top.glif │ │ │ ├── screw-machine-round-top.glif │ │ │ ├── screw-round-top.glif │ │ │ ├── screwdriver.glif │ │ │ ├── script-outline.glif │ │ │ ├── script-text-key-outline.glif │ │ │ ├── script-text-key.glif │ │ │ ├── script-text-outline.glif │ │ │ ├── script-text-play-outline.glif │ │ │ ├── script-text-play.glif │ │ │ ├── script-text.glif │ │ │ ├── script.glif │ │ │ ├── sd.glif │ │ │ ├── seal-variant.glif │ │ │ ├── seal.glif │ │ │ ├── search-web.glif │ │ │ ├── seat-flat-angled.glif │ │ │ ├── seat-flat.glif │ │ │ ├── seat-individual-suite.glif │ │ │ ├── seat-legroom-extra.glif │ │ │ ├── seat-legroom-normal.glif │ │ │ ├── seat-legroom-reduced.glif │ │ │ ├── seat-outline.glif │ │ │ ├── seat-passenger.glif │ │ │ ├── seat-recline-extra.glif │ │ │ ├── seat-recline-normal.glif │ │ │ ├── seat.glif │ │ │ ├── seatbelt.glif │ │ │ ├── security-network.glif │ │ │ ├── security.glif │ │ │ ├── seed-off-outline.glif │ │ │ ├── seed-off.glif │ │ │ ├── seed-outline.glif │ │ │ ├── seed-plus-outline.glif │ │ │ ├── seed-plus.glif │ │ │ ├── seed.glif │ │ │ ├── seesaw.glif │ │ │ ├── segment.glif │ │ │ ├── select-all.glif │ │ │ ├── select-color.glif │ │ │ ├── select-compare.glif │ │ │ ├── select-drag.glif │ │ │ ├── select-group.glif │ │ │ ├── select-inverse.glif │ │ │ ├── select-marker.glif │ │ │ ├── select-multiple-marker.glif │ │ │ ├── select-multiple.glif │ │ │ ├── select-off.glif │ │ │ ├── select-place.glif │ │ │ ├── select-remove.glif │ │ │ ├── select-search.glif │ │ │ ├── select.glif │ │ │ ├── selection-drag.glif │ │ │ ├── selection-ellipse-arrow-inside.glif │ │ │ ├── selection-ellipse-remove.glif │ │ │ ├── selection-ellipse.glif │ │ │ ├── selection-marker.glif │ │ │ ├── selection-multiple-marker.glif │ │ │ ├── selection-multiple.glif │ │ │ ├── selection-off.glif │ │ │ ├── selection-remove.glif │ │ │ ├── selection-search.glif │ │ │ ├── selection.glif │ │ │ ├── semantic-web.glif │ │ │ ├── send-check-outline.glif │ │ │ ├── send-check.glif │ │ │ ├── send-circle-outline.glif │ │ │ ├── send-circle.glif │ │ │ ├── send-clock-outline.glif │ │ │ ├── send-clock.glif │ │ │ ├── send-lock-outline.glif │ │ │ ├── send-lock.glif │ │ │ ├── send-outline.glif │ │ │ ├── send.glif │ │ │ ├── serial-port.glif │ │ │ ├── server-minus.glif │ │ │ ├── server-network-off.glif │ │ │ ├── server-network.glif │ │ │ ├── server-off.glif │ │ │ ├── server-plus.glif │ │ │ ├── server-remove.glif │ │ │ ├── server-security.glif │ │ │ ├── server.glif │ │ │ ├── set-all.glif │ │ │ ├── set-center-right.glif │ │ │ ├── set-center.glif │ │ │ ├── set-left-center.glif │ │ │ ├── set-left-right.glif │ │ │ ├── set-left.glif │ │ │ ├── set-merge.glif │ │ │ ├── set-none.glif │ │ │ ├── set-right.glif │ │ │ ├── set-split.glif │ │ │ ├── set-square.glif │ │ │ ├── set-top-box.glif │ │ │ ├── settings-helper.glif │ │ │ ├── shaker-outline.glif │ │ │ ├── shaker.glif │ │ │ ├── shape-circle-plus.glif │ │ │ ├── shape-outline.glif │ │ │ ├── shape-oval-plus.glif │ │ │ ├── shape-plus.glif │ │ │ ├── shape-polygon-plus.glif │ │ │ ├── shape-rectangle-plus.glif │ │ │ ├── shape-square-plus.glif │ │ │ ├── shape-square-rounded-plus.glif │ │ │ ├── shape.glif │ │ │ ├── share-all-outline.glif │ │ │ ├── share-all.glif │ │ │ ├── share-circle.glif │ │ │ ├── share-off-outline.glif │ │ │ ├── share-off.glif │ │ │ ├── share-outline.glif │ │ │ ├── share-variant-outline.glif │ │ │ ├── share-variant.glif │ │ │ ├── share.glif │ │ │ ├── shark-fin-outline.glif │ │ │ ├── shark-fin.glif │ │ │ ├── shark-off.glif │ │ │ ├── shark.glif │ │ │ ├── sheep.glif │ │ │ ├── shield-account-outline.glif │ │ │ ├── shield-account-variant-outline.glif │ │ │ ├── shield-account-variant.glif │ │ │ ├── shield-account.glif │ │ │ ├── shield-airplane-outline.glif │ │ │ ├── shield-airplane.glif │ │ │ ├── shield-alert-outline.glif │ │ │ ├── shield-alert.glif │ │ │ ├── shield-bug-outline.glif │ │ │ ├── shield-bug.glif │ │ │ ├── shield-car.glif │ │ │ ├── shield-check-outline.glif │ │ │ ├── shield-check.glif │ │ │ ├── shield-cross-outline.glif │ │ │ ├── shield-cross.glif │ │ │ ├── shield-crown-outline.glif │ │ │ ├── shield-crown.glif │ │ │ ├── shield-edit-outline.glif │ │ │ ├── shield-edit.glif │ │ │ ├── shield-half-full.glif │ │ │ ├── shield-half.glif │ │ │ ├── shield-home-outline.glif │ │ │ ├── shield-home.glif │ │ │ ├── shield-key-outline.glif │ │ │ ├── shield-key.glif │ │ │ ├── shield-link-variant-outline.glif │ │ │ ├── shield-link-variant.glif │ │ │ ├── shield-lock-open-outline.glif │ │ │ ├── shield-lock-open.glif │ │ │ ├── shield-lock-outline.glif │ │ │ ├── shield-lock.glif │ │ │ ├── shield-moon-outline.glif │ │ │ ├── shield-moon.glif │ │ │ ├── shield-off-outline.glif │ │ │ ├── shield-off.glif │ │ │ ├── shield-outline.glif │ │ │ ├── shield-plus-outline.glif │ │ │ ├── shield-plus.glif │ │ │ ├── shield-refresh-outline.glif │ │ │ ├── shield-refresh.glif │ │ │ ├── shield-remove-outline.glif │ │ │ ├── shield-remove.glif │ │ │ ├── shield-search.glif │ │ │ ├── shield-star-outline.glif │ │ │ ├── shield-star.glif │ │ │ ├── shield-sun-outline.glif │ │ │ ├── shield-sun.glif │ │ │ ├── shield-sword-outline.glif │ │ │ ├── shield-sword.glif │ │ │ ├── shield-sync-outline.glif │ │ │ ├── shield-sync.glif │ │ │ ├── shield.glif │ │ │ ├── shimmer.glif │ │ │ ├── ship-wheel.glif │ │ │ ├── shipping-pallet.glif │ │ │ ├── shoe-ballet.glif │ │ │ ├── shoe-cleat.glif │ │ │ ├── shoe-formal.glif │ │ │ ├── shoe-heel.glif │ │ │ ├── shoe-print.glif │ │ │ ├── shoe-sneaker.glif │ │ │ ├── shopping-music.glif │ │ │ ├── shopping-outline.glif │ │ │ ├── shopping-search-outline.glif │ │ │ ├── shopping-search.glif │ │ │ ├── shopping.glif │ │ │ ├── shore.glif │ │ │ ├── shovel-off.glif │ │ │ ├── shovel.glif │ │ │ ├── shower-head.glif │ │ │ ├── shower.glif │ │ │ ├── shredder.glif │ │ │ ├── shuffle-disabled.glif │ │ │ ├── shuffle-variant.glif │ │ │ ├── shuffle.glif │ │ │ ├── shuriken.glif │ │ │ ├── sickle.glif │ │ │ ├── sigma-lower.glif │ │ │ ├── sigma.glif │ │ │ ├── sign-caution.glif │ │ │ ├── sign-direction-minus.glif │ │ │ ├── sign-direction-plus.glif │ │ │ ├── sign-direction-remove.glif │ │ │ ├── sign-direction.glif │ │ │ ├── sign-pole.glif │ │ │ ├── sign-real-estate.glif │ │ │ ├── sign-text.glif │ │ │ ├── signal-2g.glif │ │ │ ├── signal-3g.glif │ │ │ ├── signal-4g.glif │ │ │ ├── signal-5g.glif │ │ │ ├── signal-cellular-1.glif │ │ │ ├── signal-cellular-2.glif │ │ │ ├── signal-cellular-3.glif │ │ │ ├── signal-cellular-outline.glif │ │ │ ├── signal-distance-variant.glif │ │ │ ├── signal-hspa-plus.glif │ │ │ ├── signal-hspa.glif │ │ │ ├── signal-off.glif │ │ │ ├── signal-variant.glif │ │ │ ├── signal.glif │ │ │ ├── signature-freehand.glif │ │ │ ├── signature-image.glif │ │ │ ├── signature-text.glif │ │ │ ├── signature.glif │ │ │ ├── silo.glif │ │ │ ├── silverware-clean.glif │ │ │ ├── silverware-fork-knife.glif │ │ │ ├── silverware-fork.glif │ │ │ ├── silverware-spoon.glif │ │ │ ├── silverware-variant.glif │ │ │ ├── silverware.glif │ │ │ ├── sim-alert-outline.glif │ │ │ ├── sim-alert.glif │ │ │ ├── sim-off-outline.glif │ │ │ ├── sim-off.glif │ │ │ ├── sim-outline.glif │ │ │ ├── sim.glif │ │ │ ├── simple-icons.glif │ │ │ ├── sina-weibo.glif │ │ │ ├── sine-wave.glif │ │ │ ├── sitemap-outline.glif │ │ │ ├── sitemap.glif │ │ │ ├── size-m.glif │ │ │ ├── size-s.glif │ │ │ ├── size-xl.glif │ │ │ ├── size-xs.glif │ │ │ ├── size-xxl.glif │ │ │ ├── size-xxs.glif │ │ │ ├── size-xxxl.glif │ │ │ ├── skate-off.glif │ │ │ ├── skate.glif │ │ │ ├── skateboard.glif │ │ │ ├── skateboarding.glif │ │ │ ├── skew-less.glif │ │ │ ├── skew-more.glif │ │ │ ├── ski-cross-country.glif │ │ │ ├── ski-water.glif │ │ │ ├── ski.glif │ │ │ ├── skip-backward-outline.glif │ │ │ ├── skip-backward.glif │ │ │ ├── skip-forward-outline.glif │ │ │ ├── skip-forward.glif │ │ │ ├── skip-next-circle-outline.glif │ │ │ ├── skip-next-circle.glif │ │ │ ├── skip-next-outline.glif │ │ │ ├── skip-next.glif │ │ │ ├── skip-previous-circle-outline.glif │ │ │ ├── skip-previous-circle.glif │ │ │ ├── skip-previous-outline.glif │ │ │ ├── skip-previous.glif │ │ │ ├── skull-crossbones-outline.glif │ │ │ ├── skull-crossbones.glif │ │ │ ├── skull-outline.glif │ │ │ ├── skull-scan-outline.glif │ │ │ ├── skull-scan.glif │ │ │ ├── skull.glif │ │ │ ├── skype-business.glif │ │ │ ├── skype.glif │ │ │ ├── slack.glif │ │ │ ├── slash-forward-box.glif │ │ │ ├── slash-forward.glif │ │ │ ├── sledding.glif │ │ │ ├── sleep-off.glif │ │ │ ├── sleep.glif │ │ │ ├── slide.glif │ │ │ ├── slope-downhill.glif │ │ │ ├── slope-uphill.glif │ │ │ ├── slot-machine-outline.glif │ │ │ ├── slot-machine.glif │ │ │ ├── smart-card-off-outline.glif │ │ │ ├── smart-card-off.glif │ │ │ ├── smart-card-outline.glif │ │ │ ├── smart-card-reader-outline.glif │ │ │ ├── smart-card-reader.glif │ │ │ ├── smart-card.glif │ │ │ ├── smog.glif │ │ │ ├── smoke-detector-alert-outline.glif │ │ │ ├── smoke-detector-alert.glif │ │ │ ├── smoke-detector-off-outline.glif │ │ │ ├── smoke-detector-off.glif │ │ │ ├── smoke-detector-outline.glif │ │ │ ├── smoke-detector-variant-alert.glif │ │ │ ├── smoke-detector-variant-off.glif │ │ │ ├── smoke-detector-variant.glif │ │ │ ├── smoke-detector.glif │ │ │ ├── smoke.glif │ │ │ ├── smoking-off.glif │ │ │ ├── smoking-pipe-off.glif │ │ │ ├── smoking-pipe.glif │ │ │ ├── smoking.glif │ │ │ ├── snail.glif │ │ │ ├── snake.glif │ │ │ ├── snapchat.glif │ │ │ ├── snowboard.glif │ │ │ ├── snowflake-alert.glif │ │ │ ├── snowflake-check.glif │ │ │ ├── snowflake-melt.glif │ │ │ ├── snowflake-off.glif │ │ │ ├── snowflake-thermometer.glif │ │ │ ├── snowflake-variant.glif │ │ │ ├── snowflake.glif │ │ │ ├── snowman.glif │ │ │ ├── snowmobile.glif │ │ │ ├── snowshoeing.glif │ │ │ ├── soccer-field.glif │ │ │ ├── soccer.glif │ │ │ ├── social-distance-2-meters.glif │ │ │ ├── social-distance-6-feet.glif │ │ │ ├── sofa-outline.glif │ │ │ ├── sofa-single-outline.glif │ │ │ ├── sofa-single.glif │ │ │ ├── sofa.glif │ │ │ ├── solar-panel-large.glif │ │ │ ├── solar-panel.glif │ │ │ ├── solar-power-variant-outline.glif │ │ │ ├── solar-power-variant.glif │ │ │ ├── solar-power.glif │ │ │ ├── soldering-iron.glif │ │ │ ├── solid.glif │ │ │ ├── sony-playstation.glif │ │ │ ├── sort-alphabetical-ascending-variant.glif │ │ │ ├── sort-alphabetical-ascending.glif │ │ │ ├── sort-alphabetical-descending-variant.glif │ │ │ ├── sort-alphabetical-descending.glif │ │ │ ├── sort-alphabetical-variant.glif │ │ │ ├── sort-ascending.glif │ │ │ ├── sort-bool-ascending-variant.glif │ │ │ ├── sort-bool-ascending.glif │ │ │ ├── sort-bool-descending-variant.glif │ │ │ ├── sort-bool-descending.glif │ │ │ ├── sort-calendar-ascending.glif │ │ │ ├── sort-calendar-descending.glif │ │ │ ├── sort-clock-ascending-outline.glif │ │ │ ├── sort-clock-ascending.glif │ │ │ ├── sort-clock-descending-outline.glif │ │ │ ├── sort-clock-descending.glif │ │ │ ├── sort-descending.glif │ │ │ ├── sort-numeric-ascending-variant.glif │ │ │ ├── sort-numeric-ascending.glif │ │ │ ├── sort-numeric-descending-variant.glif │ │ │ ├── sort-numeric-descending.glif │ │ │ ├── sort-numeric-variant.glif │ │ │ ├── sort-reverse-variant.glif │ │ │ ├── sort-variant-lock-open.glif │ │ │ ├── sort-variant-lock.glif │ │ │ ├── sort-variant-off.glif │ │ │ ├── sort-variant-remove.glif │ │ │ ├── sort-variant.glif │ │ │ ├── sort.glif │ │ │ ├── soundbar.glif │ │ │ ├── soundcloud.glif │ │ │ ├── source-branch-check.glif │ │ │ ├── source-branch-minus.glif │ │ │ ├── source-branch-plus.glif │ │ │ ├── source-branch-refresh.glif │ │ │ ├── source-branch-remove.glif │ │ │ ├── source-branch-sync.glif │ │ │ ├── source-branch.glif │ │ │ ├── source-commit-end-local.glif │ │ │ ├── source-commit-end.glif │ │ │ ├── source-commit-local.glif │ │ │ ├── source-commit-next-local.glif │ │ │ ├── source-commit-start-next-local.glif │ │ │ ├── source-commit-start.glif │ │ │ ├── source-commit.glif │ │ │ ├── source-fork.glif │ │ │ ├── source-merge.glif │ │ │ ├── source-pull.glif │ │ │ ├── source-repository-multiple.glif │ │ │ ├── source-repository.glif │ │ │ ├── soy-sauce-off.glif │ │ │ ├── soy-sauce.glif │ │ │ ├── spa-outline.glif │ │ │ ├── spa.glif │ │ │ ├── space-invaders.glif │ │ │ ├── space-station.glif │ │ │ ├── spade.glif │ │ │ ├── speaker-bluetooth.glif │ │ │ ├── speaker-multiple.glif │ │ │ ├── speaker-off.glif │ │ │ ├── speaker-wireless.glif │ │ │ ├── speaker.glif │ │ │ ├── spear.glif │ │ │ ├── speedometer-medium.glif │ │ │ ├── speedometer-slow.glif │ │ │ ├── speedometer.glif │ │ │ ├── spellcheck.glif │ │ │ ├── sphere-off.glif │ │ │ ├── sphere.glif │ │ │ ├── spider-thread.glif │ │ │ ├── spider-web.glif │ │ │ ├── spider.glif │ │ │ ├── spirit-level.glif │ │ │ ├── spoon-sugar.glif │ │ │ ├── spotify.glif │ │ │ ├── spotlight-beam.glif │ │ │ ├── spotlight.glif │ │ │ ├── spray-bottle.glif │ │ │ ├── spray.glif │ │ │ ├── sprinkler-fire.glif │ │ │ ├── sprinkler-variant.glif │ │ │ ├── sprinkler.glif │ │ │ ├── sprout-outline.glif │ │ │ ├── sprout.glif │ │ │ ├── square-circle.glif │ │ │ ├── square-edit-outline.glif │ │ │ ├── square-medium-outline.glif │ │ │ ├── square-medium.glif │ │ │ ├── square-off-outline.glif │ │ │ ├── square-off.glif │ │ │ ├── square-opacity.glif │ │ │ ├── square-outline.glif │ │ │ ├── square-root-box.glif │ │ │ ├── square-root.glif │ │ │ ├── square-rounded-badge-outline.glif │ │ │ ├── square-rounded-badge.glif │ │ │ ├── square-rounded-outline.glif │ │ │ ├── square-rounded.glif │ │ │ ├── square-small.glif │ │ │ ├── square-wave.glif │ │ │ ├── square.glif │ │ │ ├── squeegee.glif │ │ │ ├── ssh.glif │ │ │ ├── stack-exchange.glif │ │ │ ├── stack-overflow.glif │ │ │ ├── stackpath.glif │ │ │ ├── stadium-variant.glif │ │ │ ├── stadium.glif │ │ │ ├── stairs-box.glif │ │ │ ├── stairs-down.glif │ │ │ ├── stairs-up.glif │ │ │ ├── stairs.glif │ │ │ ├── stamper.glif │ │ │ ├── standard-definition.glif │ │ │ ├── star-box-multiple-outline.glif │ │ │ ├── star-box-multiple.glif │ │ │ ├── star-box-outline.glif │ │ │ ├── star-box.glif │ │ │ ├── star-check-outline.glif │ │ │ ├── star-check.glif │ │ │ ├── star-circle-outline.glif │ │ │ ├── star-circle.glif │ │ │ ├── star-cog-outline.glif │ │ │ ├── star-cog.glif │ │ │ ├── star-crescent.glif │ │ │ ├── star-david.glif │ │ │ ├── star-face.glif │ │ │ ├── star-four-points-outline.glif │ │ │ ├── star-four-points.glif │ │ │ ├── star-half-full.glif │ │ │ ├── star-half.glif │ │ │ ├── star-minus-outline.glif │ │ │ ├── star-minus.glif │ │ │ ├── star-off-outline.glif │ │ │ ├── star-off.glif │ │ │ ├── star-outline.glif │ │ │ ├── star-plus-outline.glif │ │ │ ├── star-plus.glif │ │ │ ├── star-remove-outline.glif │ │ │ ├── star-remove.glif │ │ │ ├── star-settings-outline.glif │ │ │ ├── star-settings.glif │ │ │ ├── star-shooting-outline.glif │ │ │ ├── star-shooting.glif │ │ │ ├── star-three-points-outline.glif │ │ │ ├── star-three-points.glif │ │ │ ├── star.glif │ │ │ ├── state-machine.glif │ │ │ ├── steam.glif │ │ │ ├── steering-off.glif │ │ │ ├── steering.glif │ │ │ ├── step-backward-2.glif │ │ │ ├── step-backward.glif │ │ │ ├── step-forward-2.glif │ │ │ ├── step-forward.glif │ │ │ ├── stethoscope.glif │ │ │ ├── sticker-alert-outline.glif │ │ │ ├── sticker-alert.glif │ │ │ ├── sticker-check-outline.glif │ │ │ ├── sticker-check.glif │ │ │ ├── sticker-circle-outline.glif │ │ │ ├── sticker-emoji.glif │ │ │ ├── sticker-minus-outline.glif │ │ │ ├── sticker-minus.glif │ │ │ ├── sticker-outline.glif │ │ │ ├── sticker-plus-outline.glif │ │ │ ├── sticker-plus.glif │ │ │ ├── sticker-remove-outline.glif │ │ │ ├── sticker-remove.glif │ │ │ ├── sticker-text-outline.glif │ │ │ ├── sticker-text.glif │ │ │ ├── sticker.glif │ │ │ ├── stocking.glif │ │ │ ├── stomach.glif │ │ │ ├── stool-outline.glif │ │ │ ├── stool.glif │ │ │ ├── stop-circle-outline.glif │ │ │ ├── stop-circle.glif │ │ │ ├── stop.glif │ │ │ ├── storage-tank-outline.glif │ │ │ ├── storage-tank.glif │ │ │ ├── store-24-hour.glif │ │ │ ├── store-alert-outline.glif │ │ │ ├── store-alert.glif │ │ │ ├── store-check-outline.glif │ │ │ ├── store-check.glif │ │ │ ├── store-clock-outline.glif │ │ │ ├── store-clock.glif │ │ │ ├── store-cog-outline.glif │ │ │ ├── store-cog.glif │ │ │ ├── store-edit-outline.glif │ │ │ ├── store-edit.glif │ │ │ ├── store-marker-outline.glif │ │ │ ├── store-marker.glif │ │ │ ├── store-minus-outline.glif │ │ │ ├── store-minus.glif │ │ │ ├── store-off-outline.glif │ │ │ ├── store-off.glif │ │ │ ├── store-outline.glif │ │ │ ├── store-plus-outline.glif │ │ │ ├── store-plus.glif │ │ │ ├── store-remove-outline.glif │ │ │ ├── store-remove.glif │ │ │ ├── store-search-outline.glif │ │ │ ├── store-search.glif │ │ │ ├── store-settings-outline.glif │ │ │ ├── store-settings.glif │ │ │ ├── store.glif │ │ │ ├── storefront-outline.glif │ │ │ ├── storefront.glif │ │ │ ├── stove.glif │ │ │ ├── strategy.glif │ │ │ ├── stretch-to-page-outline.glif │ │ │ ├── stretch-to-page.glif │ │ │ ├── string-lights-off.glif │ │ │ ├── string-lights.glif │ │ │ ├── subdirectory-arrow-left.glif │ │ │ ├── subdirectory-arrow-right.glif │ │ │ ├── submarine.glif │ │ │ ├── subtitles-outline.glif │ │ │ ├── subtitles.glif │ │ │ ├── subway-alert-variant.glif │ │ │ ├── subway-variant.glif │ │ │ ├── subway.glif │ │ │ ├── summit.glif │ │ │ ├── sun-clock-outline.glif │ │ │ ├── sun-clock.glif │ │ │ ├── sun-compass.glif │ │ │ ├── sun-snowflake-variant.glif │ │ │ ├── sun-snowflake.glif │ │ │ ├── sun-thermometer-outline.glif │ │ │ ├── sun-thermometer.glif │ │ │ ├── sun-wireless-outline.glif │ │ │ ├── sun-wireless.glif │ │ │ ├── sunglasses.glif │ │ │ ├── surfing.glif │ │ │ ├── surround-sound-2-0.glif │ │ │ ├── surround-sound-2-1.glif │ │ │ ├── surround-sound-3-1.glif │ │ │ ├── surround-sound-5-1-2.glif │ │ │ ├── surround-sound-5-1.glif │ │ │ ├── surround-sound-7-1.glif │ │ │ ├── surround-sound.glif │ │ │ ├── svg.glif │ │ │ ├── swap-horizontal-bold.glif │ │ │ ├── swap-horizontal-circle-outline.glif │ │ │ ├── swap-horizontal-circle.glif │ │ │ ├── swap-horizontal-variant.glif │ │ │ ├── swap-horizontal.glif │ │ │ ├── swap-vertical-bold.glif │ │ │ ├── swap-vertical-circle-outline.glif │ │ │ ├── swap-vertical-circle.glif │ │ │ ├── swap-vertical-variant.glif │ │ │ ├── swap-vertical.glif │ │ │ ├── swim.glif │ │ │ ├── switch.glif │ │ │ ├── sword-cross.glif │ │ │ ├── sword.glif │ │ │ ├── syllabary-hangul.glif │ │ │ ├── syllabary-hiragana.glif │ │ │ ├── syllabary-katakana-halfwidth.glif │ │ │ ├── syllabary-katakana.glif │ │ │ ├── symbol.glif │ │ │ ├── symfony.glif │ │ │ ├── sync-alert.glif │ │ │ ├── sync-circle.glif │ │ │ ├── sync-off.glif │ │ │ ├── sync.glif │ │ │ ├── tab-minus.glif │ │ │ ├── tab-plus.glif │ │ │ ├── tab-remove.glif │ │ │ ├── tab-search.glif │ │ │ ├── tab-unselected.glif │ │ │ ├── tab.glif │ │ │ ├── table-account.glif │ │ │ ├── table-alert.glif │ │ │ ├── table-arrow-down.glif │ │ │ ├── table-arrow-left.glif │ │ │ ├── table-arrow-right.glif │ │ │ ├── table-arrow-up.glif │ │ │ ├── table-border.glif │ │ │ ├── table-cancel.glif │ │ │ ├── table-chair.glif │ │ │ ├── table-check.glif │ │ │ ├── table-clock.glif │ │ │ ├── table-cog.glif │ │ │ ├── table-column-plus-after.glif │ │ │ ├── table-column-plus-before.glif │ │ │ ├── table-column-remove.glif │ │ │ ├── table-column-width.glif │ │ │ ├── table-column.glif │ │ │ ├── table-edit.glif │ │ │ ├── table-eye-off.glif │ │ │ ├── table-eye.glif │ │ │ ├── table-furniture.glif │ │ │ ├── table-headers-eye-off.glif │ │ │ ├── table-headers-eye.glif │ │ │ ├── table-heart.glif │ │ │ ├── table-key.glif │ │ │ ├── table-large-plus.glif │ │ │ ├── table-large-remove.glif │ │ │ ├── table-large.glif │ │ │ ├── table-lock.glif │ │ │ ├── table-merge-cells.glif │ │ │ ├── table-minus.glif │ │ │ ├── table-multiple.glif │ │ │ ├── table-network.glif │ │ │ ├── table-of-contents.glif │ │ │ ├── table-off.glif │ │ │ ├── table-picnic.glif │ │ │ ├── table-pivot.glif │ │ │ ├── table-plus.glif │ │ │ ├── table-refresh.glif │ │ │ ├── table-remove.glif │ │ │ ├── table-row-height.glif │ │ │ ├── table-row-plus-after.glif │ │ │ ├── table-row-plus-before.glif │ │ │ ├── table-row-remove.glif │ │ │ ├── table-row.glif │ │ │ ├── table-search.glif │ │ │ ├── table-settings.glif │ │ │ ├── table-split-cell.glif │ │ │ ├── table-star.glif │ │ │ ├── table-sync.glif │ │ │ ├── table-tennis.glif │ │ │ ├── table.glif │ │ │ ├── tablet-android.glif │ │ │ ├── tablet-cellphone.glif │ │ │ ├── tablet-dashboard.glif │ │ │ ├── tablet.glif │ │ │ ├── taco.glif │ │ │ ├── tag-arrow-down-outline.glif │ │ │ ├── tag-arrow-down.glif │ │ │ ├── tag-arrow-left-outline.glif │ │ │ ├── tag-arrow-left.glif │ │ │ ├── tag-arrow-right-outline.glif │ │ │ ├── tag-arrow-right.glif │ │ │ ├── tag-arrow-up-outline.glif │ │ │ ├── tag-arrow-up.glif │ │ │ ├── tag-check-outline.glif │ │ │ ├── tag-check.glif │ │ │ ├── tag-faces.glif │ │ │ ├── tag-heart-outline.glif │ │ │ ├── tag-heart.glif │ │ │ ├── tag-minus-outline.glif │ │ │ ├── tag-minus.glif │ │ │ ├── tag-multiple-outline.glif │ │ │ ├── tag-multiple.glif │ │ │ ├── tag-off-outline.glif │ │ │ ├── tag-off.glif │ │ │ ├── tag-outline.glif │ │ │ ├── tag-plus-outline.glif │ │ │ ├── tag-plus.glif │ │ │ ├── tag-remove-outline.glif │ │ │ ├── tag-remove.glif │ │ │ ├── tag-search-outline.glif │ │ │ ├── tag-search.glif │ │ │ ├── tag-text-outline.glif │ │ │ ├── tag-text.glif │ │ │ ├── tag.glif │ │ │ ├── tailwind.glif │ │ │ ├── tally-mark-1.glif │ │ │ ├── tally-mark-2.glif │ │ │ ├── tally-mark-3.glif │ │ │ ├── tally-mark-4.glif │ │ │ ├── tally-mark-5.glif │ │ │ ├── tangram.glif │ │ │ ├── tank.glif │ │ │ ├── tanker-truck.glif │ │ │ ├── tape-drive.glif │ │ │ ├── tape-measure.glif │ │ │ ├── target-account.glif │ │ │ ├── target-variant.glif │ │ │ ├── target.glif │ │ │ ├── taxi.glif │ │ │ ├── tea-outline.glif │ │ │ ├── tea.glif │ │ │ ├── teamviewer.glif │ │ │ ├── teddy-bear.glif │ │ │ ├── telescope.glif │ │ │ ├── television-ambient-light.glif │ │ │ ├── television-box.glif │ │ │ ├── television-classic-off.glif │ │ │ ├── television-classic.glif │ │ │ ├── television-guide.glif │ │ │ ├── television-off.glif │ │ │ ├── television-pause.glif │ │ │ ├── television-play.glif │ │ │ ├── television-shimmer.glif │ │ │ ├── television-stop.glif │ │ │ ├── television.glif │ │ │ ├── temperature-celsius.glif │ │ │ ├── temperature-fahrenheit.glif │ │ │ ├── temperature-kelvin.glif │ │ │ ├── tennis-ball.glif │ │ │ ├── tennis.glif │ │ │ ├── tent.glif │ │ │ ├── terraform.glif │ │ │ ├── test-tube-empty.glif │ │ │ ├── test-tube-off.glif │ │ │ ├── test-tube.glif │ │ │ ├── text-account.glif │ │ │ ├── text-box-check-outline.glif │ │ │ ├── text-box-check.glif │ │ │ ├── text-box-edit-outline.glif │ │ │ ├── text-box-edit.glif │ │ │ ├── text-box-minus-outline.glif │ │ │ ├── text-box-minus.glif │ │ │ ├── text-box-multiple-outline.glif │ │ │ ├── text-box-multiple.glif │ │ │ ├── text-box-outline.glif │ │ │ ├── text-box-plus-outline.glif │ │ │ ├── text-box-plus.glif │ │ │ ├── text-box-remove-outline.glif │ │ │ ├── text-box-remove.glif │ │ │ ├── text-box-search-outline.glif │ │ │ ├── text-box-search.glif │ │ │ ├── text-box.glif │ │ │ ├── text-long.glif │ │ │ ├── text-recognition.glif │ │ │ ├── text-search-variant.glif │ │ │ ├── text-search.glif │ │ │ ├── text-shadow.glif │ │ │ ├── text-short.glif │ │ │ ├── text-to-speech-off.glif │ │ │ ├── text-to-speech.glif │ │ │ ├── text.glif │ │ │ ├── texture-box.glif │ │ │ ├── texture.glif │ │ │ ├── theater.glif │ │ │ ├── theme-light-dark.glif │ │ │ ├── thermometer-alert.glif │ │ │ ├── thermometer-bluetooth.glif │ │ │ ├── thermometer-check.glif │ │ │ ├── thermometer-chevron-down.glif │ │ │ ├── thermometer-chevron-up.glif │ │ │ ├── thermometer-high.glif │ │ │ ├── thermometer-lines.glif │ │ │ ├── thermometer-low.glif │ │ │ ├── thermometer-minus.glif │ │ │ ├── thermometer-off.glif │ │ │ ├── thermometer-plus.glif │ │ │ ├── thermometer-water.glif │ │ │ ├── thermometer.glif │ │ │ ├── thermostat-box.glif │ │ │ ├── thermostat.glif │ │ │ ├── thought-bubble-outline.glif │ │ │ ├── thought-bubble.glif │ │ │ ├── thumb-down-outline.glif │ │ │ ├── thumb-down.glif │ │ │ ├── thumb-up-outline.glif │ │ │ ├── thumb-up.glif │ │ │ ├── thumbs-up-down-outline.glif │ │ │ ├── thumbs-up-down.glif │ │ │ ├── ticket-account.glif │ │ │ ├── ticket-confirmation-outline.glif │ │ │ ├── ticket-confirmation.glif │ │ │ ├── ticket-outline.glif │ │ │ ├── ticket-percent-outline.glif │ │ │ ├── ticket-percent.glif │ │ │ ├── ticket.glif │ │ │ ├── tie.glif │ │ │ ├── tilde-off.glif │ │ │ ├── tilde.glif │ │ │ ├── timelapse.glif │ │ │ ├── timeline-alert-outline.glif │ │ │ ├── timeline-alert.glif │ │ │ ├── timeline-check-outline.glif │ │ │ ├── timeline-check.glif │ │ │ ├── timeline-clock-outline.glif │ │ │ ├── timeline-clock.glif │ │ │ ├── timeline-help-outline.glif │ │ │ ├── timeline-help.glif │ │ │ ├── timeline-minus-outline.glif │ │ │ ├── timeline-minus.glif │ │ │ ├── timeline-outline.glif │ │ │ ├── timeline-plus-outline.glif │ │ │ ├── timeline-plus.glif │ │ │ ├── timeline-remove-outline.glif │ │ │ ├── timeline-remove.glif │ │ │ ├── timeline-text-outline.glif │ │ │ ├── timeline-text.glif │ │ │ ├── timeline.glif │ │ │ ├── timer-10.glif │ │ │ ├── timer-3.glif │ │ │ ├── timer-alert-outline.glif │ │ │ ├── timer-alert.glif │ │ │ ├── timer-cancel-outline.glif │ │ │ ├── timer-cancel.glif │ │ │ ├── timer-check-outline.glif │ │ │ ├── timer-check.glif │ │ │ ├── timer-cog-outline.glif │ │ │ ├── timer-cog.glif │ │ │ ├── timer-edit-outline.glif │ │ │ ├── timer-edit.glif │ │ │ ├── timer-lock-open-outline.glif │ │ │ ├── timer-lock-open.glif │ │ │ ├── timer-lock-outline.glif │ │ │ ├── timer-lock.glif │ │ │ ├── timer-marker-outline.glif │ │ │ ├── timer-marker.glif │ │ │ ├── timer-minus-outline.glif │ │ │ ├── timer-minus.glif │ │ │ ├── timer-music-outline.glif │ │ │ ├── timer-music.glif │ │ │ ├── timer-off-outline.glif │ │ │ ├── timer-off.glif │ │ │ ├── timer-outline.glif │ │ │ ├── timer-pause-outline.glif │ │ │ ├── timer-pause.glif │ │ │ ├── timer-play-outline.glif │ │ │ ├── timer-play.glif │ │ │ ├── timer-plus-outline.glif │ │ │ ├── timer-plus.glif │ │ │ ├── timer-refresh-outline.glif │ │ │ ├── timer-refresh.glif │ │ │ ├── timer-remove-outline.glif │ │ │ ├── timer-remove.glif │ │ │ ├── timer-sand-complete.glif │ │ │ ├── timer-sand-empty.glif │ │ │ ├── timer-sand-full.glif │ │ │ ├── timer-sand-paused.glif │ │ │ ├── timer-sand.glif │ │ │ ├── timer-settings-outline.glif │ │ │ ├── timer-settings.glif │ │ │ ├── timer-star-outline.glif │ │ │ ├── timer-star.glif │ │ │ ├── timer-stop-outline.glif │ │ │ ├── timer-stop.glif │ │ │ ├── timer-sync-outline.glif │ │ │ ├── timer-sync.glif │ │ │ ├── timer.glif │ │ │ ├── timetable.glif │ │ │ ├── tire.glif │ │ │ ├── toaster-off.glif │ │ │ ├── toaster-oven.glif │ │ │ ├── toaster.glif │ │ │ ├── toggle-switch-off-outline.glif │ │ │ ├── toggle-switch-off.glif │ │ │ ├── toggle-switch-outline.glif │ │ │ ├── toggle-switch-variant-off.glif │ │ │ ├── toggle-switch-variant.glif │ │ │ ├── toggle-switch.glif │ │ │ ├── toilet.glif │ │ │ ├── toolbox-outline.glif │ │ │ ├── toolbox.glif │ │ │ ├── tools.glif │ │ │ ├── tooltip-account.glif │ │ │ ├── tooltip-cellphone.glif │ │ │ ├── tooltip-check-outline.glif │ │ │ ├── tooltip-check.glif │ │ │ ├── tooltip-edit-outline.glif │ │ │ ├── tooltip-edit.glif │ │ │ ├── tooltip-image-outline.glif │ │ │ ├── tooltip-image.glif │ │ │ ├── tooltip-minus-outline.glif │ │ │ ├── tooltip-minus.glif │ │ │ ├── tooltip-outline.glif │ │ │ ├── tooltip-plus-outline.glif │ │ │ ├── tooltip-plus.glif │ │ │ ├── tooltip-remove-outline.glif │ │ │ ├── tooltip-remove.glif │ │ │ ├── tooltip-text-outline.glif │ │ │ ├── tooltip-text.glif │ │ │ ├── tooltip.glif │ │ │ ├── tooth-outline.glif │ │ │ ├── tooth.glif │ │ │ ├── toothbrush-electric.glif │ │ │ ├── toothbrush-paste.glif │ │ │ ├── toothbrush.glif │ │ │ ├── torch.glif │ │ │ ├── tortoise.glif │ │ │ ├── toslink.glif │ │ │ ├── tournament.glif │ │ │ ├── tow-truck.glif │ │ │ ├── tower-beach.glif │ │ │ ├── tower-fire.glif │ │ │ ├── town-hall.glif │ │ │ ├── toy-brick-marker-outline.glif │ │ │ ├── toy-brick-marker.glif │ │ │ ├── toy-brick-minus-outline.glif │ │ │ ├── toy-brick-minus.glif │ │ │ ├── toy-brick-outline.glif │ │ │ ├── toy-brick-plus-outline.glif │ │ │ ├── toy-brick-plus.glif │ │ │ ├── toy-brick-remove-outline.glif │ │ │ ├── toy-brick-remove.glif │ │ │ ├── toy-brick-search-outline.glif │ │ │ ├── toy-brick-search.glif │ │ │ ├── toy-brick.glif │ │ │ ├── track-light.glif │ │ │ ├── trackpad-lock.glif │ │ │ ├── trackpad.glif │ │ │ ├── tractor-variant.glif │ │ │ ├── tractor.glif │ │ │ ├── trademark.glif │ │ │ ├── traffic-cone.glif │ │ │ ├── traffic-light-outline.glif │ │ │ ├── traffic-light.glif │ │ │ ├── train-car-passenger-door-open.glif │ │ │ ├── train-car-passenger-door.glif │ │ │ ├── train-car-passenger-variant.glif │ │ │ ├── train-car-passenger.glif │ │ │ ├── train-car.glif │ │ │ ├── train-variant.glif │ │ │ ├── train.glif │ │ │ ├── tram-side.glif │ │ │ ├── tram.glif │ │ │ ├── transcribe-close.glif │ │ │ ├── transcribe.glif │ │ │ ├── transfer-down.glif │ │ │ ├── transfer-left.glif │ │ │ ├── transfer-right.glif │ │ │ ├── transfer-up.glif │ │ │ ├── transfer.glif │ │ │ ├── transit-connection-horizontal.glif │ │ │ ├── transit-connection-variant.glif │ │ │ ├── transit-connection.glif │ │ │ ├── transit-detour.glif │ │ │ ├── transit-skip.glif │ │ │ ├── transit-transfer.glif │ │ │ ├── transition-masked.glif │ │ │ ├── transition.glif │ │ │ ├── translate-off.glif │ │ │ ├── translate.glif │ │ │ ├── transmission-tower-export.glif │ │ │ ├── transmission-tower-import.glif │ │ │ ├── transmission-tower-off.glif │ │ │ ├── transmission-tower.glif │ │ │ ├── trash-can-outline.glif │ │ │ ├── trash-can.glif │ │ │ ├── tray-alert.glif │ │ │ ├── tray-arrow-down.glif │ │ │ ├── tray-arrow-up.glif │ │ │ ├── tray-full.glif │ │ │ ├── tray-minus.glif │ │ │ ├── tray-plus.glif │ │ │ ├── tray-remove.glif │ │ │ ├── tray.glif │ │ │ ├── treasure-chest.glif │ │ │ ├── tree-outline.glif │ │ │ ├── tree.glif │ │ │ ├── trello.glif │ │ │ ├── trending-down.glif │ │ │ ├── trending-neutral.glif │ │ │ ├── trending-up.glif │ │ │ ├── triangle-outline.glif │ │ │ ├── triangle-small-down.glif │ │ │ ├── triangle-small-up.glif │ │ │ ├── triangle-wave.glif │ │ │ ├── triangle.glif │ │ │ ├── triforce.glif │ │ │ ├── trophy-award.glif │ │ │ ├── trophy-broken.glif │ │ │ ├── trophy-outline.glif │ │ │ ├── trophy-variant-outline.glif │ │ │ ├── trophy-variant.glif │ │ │ ├── trophy.glif │ │ │ ├── truck-alert-outline.glif │ │ │ ├── truck-alert.glif │ │ │ ├── truck-cargo-container.glif │ │ │ ├── truck-check-outline.glif │ │ │ ├── truck-check.glif │ │ │ ├── truck-delivery-outline.glif │ │ │ ├── truck-delivery.glif │ │ │ ├── truck-fast-outline.glif │ │ │ ├── truck-fast.glif │ │ │ ├── truck-flatbed.glif │ │ │ ├── truck-minus-outline.glif │ │ │ ├── truck-minus.glif │ │ │ ├── truck-outline.glif │ │ │ ├── truck-plus-outline.glif │ │ │ ├── truck-plus.glif │ │ │ ├── truck-remove-outline.glif │ │ │ ├── truck-remove.glif │ │ │ ├── truck-snowflake.glif │ │ │ ├── truck-trailer.glif │ │ │ ├── truck.glif │ │ │ ├── trumpet.glif │ │ │ ├── tshirt-crew-outline.glif │ │ │ ├── tshirt-crew.glif │ │ │ ├── tshirt-v-outline.glif │ │ │ ├── tshirt-v.glif │ │ │ ├── tsunami.glif │ │ │ ├── tumble-dryer-alert.glif │ │ │ ├── tumble-dryer-off.glif │ │ │ ├── tumble-dryer.glif │ │ │ ├── tune-variant.glif │ │ │ ├── tune-vertical-variant.glif │ │ │ ├── tune-vertical.glif │ │ │ ├── tune.glif │ │ │ ├── tunnel-outline.glif │ │ │ ├── tunnel.glif │ │ │ ├── turbine.glif │ │ │ ├── turkey.glif │ │ │ ├── turnstile-outline.glif │ │ │ ├── turnstile.glif │ │ │ ├── turtle.glif │ │ │ ├── twitch.glif │ │ │ ├── twitter.glif │ │ │ ├── two-factor-authentication.glif │ │ │ ├── typewriter.glif │ │ │ ├── ubisoft.glif │ │ │ ├── ubuntu.glif │ │ │ ├── ufo-outline.glif │ │ │ ├── ufo.glif │ │ │ ├── ultra-high-definition.glif │ │ │ ├── umbraco.glif │ │ │ ├── umbrella-beach-outline.glif │ │ │ ├── umbrella-beach.glif │ │ │ ├── umbrella-closed-outline.glif │ │ │ ├── umbrella-closed-variant.glif │ │ │ ├── umbrella-closed.glif │ │ │ ├── umbrella-outline.glif │ │ │ ├── umbrella.glif │ │ │ ├── undo-variant.glif │ │ │ ├── undo.glif │ │ │ ├── unfold-less-horizontal.glif │ │ │ ├── unfold-less-vertical.glif │ │ │ ├── unfold-more-horizontal.glif │ │ │ ├── unfold-more-vertical.glif │ │ │ ├── ungroup.glif │ │ │ ├── unicode.glif │ │ │ ├── unicorn-variant.glif │ │ │ ├── unicorn.glif │ │ │ ├── unicycle.glif │ │ │ ├── unity.glif │ │ │ ├── unreal.glif │ │ │ ├── update.glif │ │ │ ├── upload-lock-outline.glif │ │ │ ├── upload-lock.glif │ │ │ ├── upload-multiple.glif │ │ │ ├── upload-network-outline.glif │ │ │ ├── upload-network.glif │ │ │ ├── upload-off-outline.glif │ │ │ ├── upload-off.glif │ │ │ ├── upload-outline.glif │ │ │ ├── upload.glif │ │ │ ├── usb-flash-drive-outline.glif │ │ │ ├── usb-flash-drive.glif │ │ │ ├── usb-port.glif │ │ │ ├── usb.glif │ │ │ ├── vacuum-outline.glif │ │ │ ├── vacuum.glif │ │ │ ├── valve-closed.glif │ │ │ ├── valve-open.glif │ │ │ ├── valve.glif │ │ │ ├── van-passenger.glif │ │ │ ├── van-utility.glif │ │ │ ├── vanish-quarter.glif │ │ │ ├── vanish.glif │ │ │ ├── vanity-light.glif │ │ │ ├── variable-box.glif │ │ │ ├── variable.glif │ │ │ ├── vector-arrange-above.glif │ │ │ ├── vector-arrange-below.glif │ │ │ ├── vector-bezier.glif │ │ │ ├── vector-circle-variant.glif │ │ │ ├── vector-circle.glif │ │ │ ├── vector-combine.glif │ │ │ ├── vector-curve.glif │ │ │ ├── vector-difference-ab.glif │ │ │ ├── vector-difference-ba.glif │ │ │ ├── vector-difference.glif │ │ │ ├── vector-ellipse.glif │ │ │ ├── vector-intersection.glif │ │ │ ├── vector-line.glif │ │ │ ├── vector-link.glif │ │ │ ├── vector-point.glif │ │ │ ├── vector-polygon-variant.glif │ │ │ ├── vector-polygon.glif │ │ │ ├── vector-polyline-edit.glif │ │ │ ├── vector-polyline-minus.glif │ │ │ ├── vector-polyline-plus.glif │ │ │ ├── vector-polyline-remove.glif │ │ │ ├── vector-polyline.glif │ │ │ ├── vector-radius.glif │ │ │ ├── vector-rectangle.glif │ │ │ ├── vector-selection.glif │ │ │ ├── vector-square-close.glif │ │ │ ├── vector-square-edit.glif │ │ │ ├── vector-square-minus.glif │ │ │ ├── vector-square-open.glif │ │ │ ├── vector-square-plus.glif │ │ │ ├── vector-square-remove.glif │ │ │ ├── vector-square.glif │ │ │ ├── vector-triangle.glif │ │ │ ├── vector-union.glif │ │ │ ├── vhs.glif │ │ │ ├── vibrate-off.glif │ │ │ ├── vibrate.glif │ │ │ ├── video-2d.glif │ │ │ ├── video-3d-off.glif │ │ │ ├── video-3d-variant.glif │ │ │ ├── video-3d.glif │ │ │ ├── video-4k-box.glif │ │ │ ├── video-account.glif │ │ │ ├── video-box-off.glif │ │ │ ├── video-box.glif │ │ │ ├── video-check-outline.glif │ │ │ ├── video-check.glif │ │ │ ├── video-high-definition.glif │ │ │ ├── video-image.glif │ │ │ ├── video-input-antenna.glif │ │ │ ├── video-input-component.glif │ │ │ ├── video-input-hdmi.glif │ │ │ ├── video-input-scart.glif │ │ │ ├── video-input-svideo.glif │ │ │ ├── video-marker-outline.glif │ │ │ ├── video-marker.glif │ │ │ ├── video-minus-outline.glif │ │ │ ├── video-minus.glif │ │ │ ├── video-off-outline.glif │ │ │ ├── video-off.glif │ │ │ ├── video-outline.glif │ │ │ ├── video-plus-outline.glif │ │ │ ├── video-plus.glif │ │ │ ├── video-stabilization.glif │ │ │ ├── video-switch-outline.glif │ │ │ ├── video-switch.glif │ │ │ ├── video-vintage.glif │ │ │ ├── video-wireless-outline.glif │ │ │ ├── video-wireless.glif │ │ │ ├── video.glif │ │ │ ├── view-agenda-outline.glif │ │ │ ├── view-agenda.glif │ │ │ ├── view-array-outline.glif │ │ │ ├── view-array.glif │ │ │ ├── view-carousel-outline.glif │ │ │ ├── view-carousel.glif │ │ │ ├── view-column-outline.glif │ │ │ ├── view-column.glif │ │ │ ├── view-comfy-outline.glif │ │ │ ├── view-comfy.glif │ │ │ ├── view-compact-outline.glif │ │ │ ├── view-compact.glif │ │ │ ├── view-dashboard-edit-outline.glif │ │ │ ├── view-dashboard-edit.glif │ │ │ ├── view-dashboard-outline.glif │ │ │ ├── view-dashboard-variant-outline.glif │ │ │ ├── view-dashboard-variant.glif │ │ │ ├── view-dashboard.glif │ │ │ ├── view-day-outline.glif │ │ │ ├── view-day.glif │ │ │ ├── view-gallery-outline.glif │ │ │ ├── view-gallery.glif │ │ │ ├── view-grid-outline.glif │ │ │ ├── view-grid-plus-outline.glif │ │ │ ├── view-grid-plus.glif │ │ │ ├── view-grid.glif │ │ │ ├── view-headline.glif │ │ │ ├── view-list-outline.glif │ │ │ ├── view-list.glif │ │ │ ├── view-module-outline.glif │ │ │ ├── view-module.glif │ │ │ ├── view-parallel-outline.glif │ │ │ ├── view-parallel.glif │ │ │ ├── view-quilt-outline.glif │ │ │ ├── view-quilt.glif │ │ │ ├── view-sequential-outline.glif │ │ │ ├── view-sequential.glif │ │ │ ├── view-split-horizontal.glif │ │ │ ├── view-split-vertical.glif │ │ │ ├── view-stream-outline.glif │ │ │ ├── view-stream.glif │ │ │ ├── view-week-outline.glif │ │ │ ├── view-week.glif │ │ │ ├── vimeo.glif │ │ │ ├── violin.glif │ │ │ ├── virtual-reality.glif │ │ │ ├── virus-off-outline.glif │ │ │ ├── virus-off.glif │ │ │ ├── virus-outline.glif │ │ │ ├── virus.glif │ │ │ ├── vlc.glif │ │ │ ├── voicemail.glif │ │ │ ├── volcano-outline.glif │ │ │ ├── volcano.glif │ │ │ ├── volleyball.glif │ │ │ ├── volume-high.glif │ │ │ ├── volume-low.glif │ │ │ ├── volume-medium.glif │ │ │ ├── volume-minus.glif │ │ │ ├── volume-mute.glif │ │ │ ├── volume-off.glif │ │ │ ├── volume-plus.glif │ │ │ ├── volume-source.glif │ │ │ ├── volume-variant-off.glif │ │ │ ├── volume-vibrate.glif │ │ │ ├── vote-outline.glif │ │ │ ├── vote.glif │ │ │ ├── vpn.glif │ │ │ ├── vuejs.glif │ │ │ ├── vuetify.glif │ │ │ ├── walk.glif │ │ │ ├── wall-fire.glif │ │ │ ├── wall-sconce-flat-outline.glif │ │ │ ├── wall-sconce-flat-variant-outline.glif │ │ │ ├── wall-sconce-flat-variant.glif │ │ │ ├── wall-sconce-flat.glif │ │ │ ├── wall-sconce-outline.glif │ │ │ ├── wall-sconce-round-outline.glif │ │ │ ├── wall-sconce-round-variant-outline.glif │ │ │ ├── wall-sconce-round-variant.glif │ │ │ ├── wall-sconce-round.glif │ │ │ ├── wall-sconce.glif │ │ │ ├── wall.glif │ │ │ ├── wallet-giftcard.glif │ │ │ ├── wallet-membership.glif │ │ │ ├── wallet-outline.glif │ │ │ ├── wallet-plus-outline.glif │ │ │ ├── wallet-plus.glif │ │ │ ├── wallet-travel.glif │ │ │ ├── wallet.glif │ │ │ ├── wallpaper.glif │ │ │ ├── wan.glif │ │ │ ├── wardrobe-outline.glif │ │ │ ├── wardrobe.glif │ │ │ ├── warehouse.glif │ │ │ ├── washing-machine-alert.glif │ │ │ ├── washing-machine-off.glif │ │ │ ├── washing-machine.glif │ │ │ ├── watch-export-variant.glif │ │ │ ├── watch-export.glif │ │ │ ├── watch-import-variant.glif │ │ │ ├── watch-import.glif │ │ │ ├── watch-variant.glif │ │ │ ├── watch-vibrate-off.glif │ │ │ ├── watch-vibrate.glif │ │ │ ├── watch.glif │ │ │ ├── water-alert-outline.glif │ │ │ ├── water-alert.glif │ │ │ ├── water-boiler-alert.glif │ │ │ ├── water-boiler-off.glif │ │ │ ├── water-boiler.glif │ │ │ ├── water-check-outline.glif │ │ │ ├── water-check.glif │ │ │ ├── water-circle.glif │ │ │ ├── water-minus-outline.glif │ │ │ ├── water-minus.glif │ │ │ ├── water-off-outline.glif │ │ │ ├── water-off.glif │ │ │ ├── water-opacity.glif │ │ │ ├── water-outline.glif │ │ │ ├── water-percent-alert.glif │ │ │ ├── water-percent.glif │ │ │ ├── water-plus-outline.glif │ │ │ ├── water-plus.glif │ │ │ ├── water-polo.glif │ │ │ ├── water-pump-off.glif │ │ │ ├── water-pump.glif │ │ │ ├── water-remove-outline.glif │ │ │ ├── water-remove.glif │ │ │ ├── water-sync.glif │ │ │ ├── water-thermometer-outline.glif │ │ │ ├── water-thermometer.glif │ │ │ ├── water-well-outline.glif │ │ │ ├── water-well.glif │ │ │ ├── water.glif │ │ │ ├── waterfall.glif │ │ │ ├── watering-can-outline.glif │ │ │ ├── watering-can.glif │ │ │ ├── watermark.glif │ │ │ ├── wave.glif │ │ │ ├── waveform.glif │ │ │ ├── waves-arrow-left.glif │ │ │ ├── waves-arrow-right.glif │ │ │ ├── waves-arrow-up.glif │ │ │ ├── waves.glif │ │ │ ├── waze.glif │ │ │ ├── weather-cloudy-alert.glif │ │ │ ├── weather-cloudy-arrow-right.glif │ │ │ ├── weather-cloudy-clock.glif │ │ │ ├── weather-cloudy.glif │ │ │ ├── weather-fog.glif │ │ │ ├── weather-hail.glif │ │ │ ├── weather-hazy.glif │ │ │ ├── weather-hurricane.glif │ │ │ ├── weather-lightning-rainy.glif │ │ │ ├── weather-lightning.glif │ │ │ ├── weather-night-partly-cloudy.glif │ │ │ ├── weather-night.glif │ │ │ ├── weather-partly-cloudy.glif │ │ │ ├── weather-partly-lightning.glif │ │ │ ├── weather-partly-rainy.glif │ │ │ ├── weather-partly-snowy-rainy.glif │ │ │ ├── weather-partly-snowy.glif │ │ │ ├── weather-pouring.glif │ │ │ ├── weather-rainy.glif │ │ │ ├── weather-snowy-heavy.glif │ │ │ ├── weather-snowy-rainy.glif │ │ │ ├── weather-snowy.glif │ │ │ ├── weather-sunny-alert.glif │ │ │ ├── weather-sunny-off.glif │ │ │ ├── weather-sunny.glif │ │ │ ├── weather-sunset-down.glif │ │ │ ├── weather-sunset-up.glif │ │ │ ├── weather-sunset.glif │ │ │ ├── weather-tornado.glif │ │ │ ├── weather-windy-variant.glif │ │ │ ├── weather-windy.glif │ │ │ ├── web-box.glif │ │ │ ├── web-cancel.glif │ │ │ ├── web-check.glif │ │ │ ├── web-clock.glif │ │ │ ├── web-minus.glif │ │ │ ├── web-off.glif │ │ │ ├── web-plus.glif │ │ │ ├── web-refresh.glif │ │ │ ├── web-remove.glif │ │ │ ├── web-sync.glif │ │ │ ├── web.glif │ │ │ ├── webcam-off.glif │ │ │ ├── webcam.glif │ │ │ ├── webhook.glif │ │ │ ├── webpack.glif │ │ │ ├── webrtc.glif │ │ │ ├── wechat.glif │ │ │ ├── weight-gram.glif │ │ │ ├── weight-kilogram.glif │ │ │ ├── weight-lifter.glif │ │ │ ├── weight-pound.glif │ │ │ ├── weight.glif │ │ │ ├── whatsapp.glif │ │ │ ├── wheel-barrow.glif │ │ │ ├── wheelchair-accessibility.glif │ │ │ ├── wheelchair.glif │ │ │ ├── whistle-outline.glif │ │ │ ├── whistle.glif │ │ │ ├── white-balance-auto.glif │ │ │ ├── white-balance-incandescent.glif │ │ │ ├── white-balance-iridescent.glif │ │ │ ├── white-balance-sunny.glif │ │ │ ├── widgets-outline.glif │ │ │ ├── widgets.glif │ │ │ ├── wifi-alert.glif │ │ │ ├── wifi-arrow-down.glif │ │ │ ├── wifi-arrow-left-right.glif │ │ │ ├── wifi-arrow-left.glif │ │ │ ├── wifi-arrow-right.glif │ │ │ ├── wifi-arrow-up-down.glif │ │ │ ├── wifi-arrow-up.glif │ │ │ ├── wifi-cancel.glif │ │ │ ├── wifi-check.glif │ │ │ ├── wifi-cog.glif │ │ │ ├── wifi-lock-open.glif │ │ │ ├── wifi-lock.glif │ │ │ ├── wifi-marker.glif │ │ │ ├── wifi-minus.glif │ │ │ ├── wifi-off.glif │ │ │ ├── wifi-plus.glif │ │ │ ├── wifi-refresh.glif │ │ │ ├── wifi-remove.glif │ │ │ ├── wifi-settings.glif │ │ │ ├── wifi-star.glif │ │ │ ├── wifi-strength-1-alert.glif │ │ │ ├── wifi-strength-1-lock-open.glif │ │ │ ├── wifi-strength-1-lock.glif │ │ │ ├── wifi-strength-1.glif │ │ │ ├── wifi-strength-2-alert.glif │ │ │ ├── wifi-strength-2-lock-open.glif │ │ │ ├── wifi-strength-2-lock.glif │ │ │ ├── wifi-strength-2.glif │ │ │ ├── wifi-strength-3-alert.glif │ │ │ ├── wifi-strength-3-lock-open.glif │ │ │ ├── wifi-strength-3-lock.glif │ │ │ ├── wifi-strength-3.glif │ │ │ ├── wifi-strength-4-alert.glif │ │ │ ├── wifi-strength-4-lock-open.glif │ │ │ ├── wifi-strength-4-lock.glif │ │ │ ├── wifi-strength-4.glif │ │ │ ├── wifi-strength-alert-outline.glif │ │ │ ├── wifi-strength-lock-open-outline.glif │ │ │ ├── wifi-strength-lock-outline.glif │ │ │ ├── wifi-strength-off-outline.glif │ │ │ ├── wifi-strength-off.glif │ │ │ ├── wifi-strength-outline.glif │ │ │ ├── wifi-sync.glif │ │ │ ├── wifi.glif │ │ │ ├── wikipedia.glif │ │ │ ├── wind-power-outline.glif │ │ │ ├── wind-power.glif │ │ │ ├── wind-turbine-alert.glif │ │ │ ├── wind-turbine-check.glif │ │ │ ├── wind-turbine.glif │ │ │ ├── window-close.glif │ │ │ ├── window-closed-variant.glif │ │ │ ├── window-closed.glif │ │ │ ├── window-maximize.glif │ │ │ ├── window-minimize.glif │ │ │ ├── window-open-variant.glif │ │ │ ├── window-open.glif │ │ │ ├── window-restore.glif │ │ │ ├── window-shutter-alert.glif │ │ │ ├── window-shutter-cog.glif │ │ │ ├── window-shutter-open.glif │ │ │ ├── window-shutter-settings.glif │ │ │ ├── window-shutter.glif │ │ │ ├── windsock.glif │ │ │ ├── wiper-wash-alert.glif │ │ │ ├── wiper-wash.glif │ │ │ ├── wiper.glif │ │ │ ├── wizard-hat.glif │ │ │ ├── wordpress.glif │ │ │ ├── wrap-disabled.glif │ │ │ ├── wrap.glif │ │ │ ├── wrench-clock.glif │ │ │ ├── wrench-outline.glif │ │ │ ├── wrench.glif │ │ │ ├── xamarin.glif │ │ │ ├── xml.glif │ │ │ ├── xmpp.glif │ │ │ ├── yahoo.glif │ │ │ ├── yeast.glif │ │ │ ├── yin-yang.glif │ │ │ ├── yoga.glif │ │ │ ├── youtube-gaming.glif │ │ │ ├── youtube-studio.glif │ │ │ ├── youtube-subscription.glif │ │ │ ├── youtube-tv.glif │ │ │ ├── youtube.glif │ │ │ ├── yurt.glif │ │ │ ├── z-wave.glif │ │ │ ├── zend.glif │ │ │ ├── zigbee.glif │ │ │ ├── zip-box-outline.glif │ │ │ ├── zip-box.glif │ │ │ ├── zip-disk.glif │ │ │ ├── zodiac-aquarius.glif │ │ │ ├── zodiac-aries.glif │ │ │ ├── zodiac-cancer.glif │ │ │ ├── zodiac-capricorn.glif │ │ │ ├── zodiac-gemini.glif │ │ │ ├── zodiac-leo.glif │ │ │ ├── zodiac-libra.glif │ │ │ ├── zodiac-pisces.glif │ │ │ ├── zodiac-sagittarius.glif │ │ │ ├── zodiac-scorpio.glif │ │ │ ├── zodiac-taurus.glif │ │ │ └── zodiac-virgo.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── Pomicons.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── A_W_A_Y_.glif │ │ │ ├── C_L_E_A_N__C_O_D_E_.glif │ │ │ ├── E_X_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif │ │ │ ├── I_N_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif │ │ │ ├── L_O_N_G__P_A_U_S_E_.glif │ │ │ ├── P_A_I_R__P_R_O_G_R_A_M_M_I_N_G_.glif │ │ │ ├── P_O_M_O_D_O_R_O__D_O_N_E_.glif │ │ │ ├── P_O_M_O_D_O_R_O__E_S_T_I_M_A_T_E_D_.glif │ │ │ ├── P_O_M_O_D_O_R_O__S_Q_U_A_S_H_E_D_.glif │ │ │ ├── P_O_M_O_D_O_R_O__T_I_C_K_I_N_G_.glif │ │ │ ├── S_H_O_R_T__P_A_U_S_E_.glif │ │ │ └── contents.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── PowerlineExtraSymbols.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── _notdef.glif │ │ │ ├── contents.plist │ │ │ ├── uni2630.glif │ │ │ ├── uniE_0A_0.glif │ │ │ ├── uniE_0A_1.glif │ │ │ ├── uniE_0A_2.glif │ │ │ ├── uniE_0A_3.glif │ │ │ ├── uniE_0B_0.glif │ │ │ ├── uniE_0B_1.glif │ │ │ ├── uniE_0B_2.glif │ │ │ ├── uniE_0B_3.glif │ │ │ ├── uniE_0B_4.glif │ │ │ ├── uniE_0B_5.glif │ │ │ ├── uniE_0B_6.glif │ │ │ ├── uniE_0B_7.glif │ │ │ ├── uniE_0B_8.glif │ │ │ ├── uniE_0B_9.glif │ │ │ ├── uniE_0B_A_.glif │ │ │ ├── uniE_0B_B_.glif │ │ │ ├── uniE_0B_C_.glif │ │ │ ├── uniE_0B_D_.glif │ │ │ ├── uniE_0B_E_.glif │ │ │ ├── uniE_0B_F_.glif │ │ │ ├── uniE_0C_0.glif │ │ │ ├── uniE_0C_1.glif │ │ │ ├── uniE_0C_2.glif │ │ │ ├── uniE_0C_3.glif │ │ │ ├── uniE_0C_4.glif │ │ │ ├── uniE_0C_5.glif │ │ │ ├── uniE_0C_6.glif │ │ │ ├── uniE_0C_7.glif │ │ │ ├── uniE_0C_8.glif │ │ │ ├── uniE_0C_A_.glif │ │ │ ├── uniE_0C_C_.glif │ │ │ ├── uniE_0C_D_.glif │ │ │ ├── uniE_0C_E_.glif │ │ │ ├── uniE_0C_F_.glif │ │ │ ├── uniE_0D_0.glif │ │ │ ├── uniE_0D_1.glif │ │ │ ├── uniE_0D_2.glif │ │ │ └── uniE_0D_4.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── Unicode_IEC_symbol_font.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── H_E_A_V_Y_ C_I_R_C_L_E_.glif │ │ │ ├── P_O_W_E_R_ O_N_ S_Y_M_B_O_L_.glif │ │ │ ├── P_O_W_E_R_ O_N_-O_F_F_ S_Y_M_B_O_L_.glif │ │ │ ├── P_O_W_E_R_ S_L_E_E_P_ S_Y_M_B_O_L_.glif │ │ │ ├── P_O_W_E_R_ S_Y_M_B_O_L_.glif │ │ │ └── contents.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── codicon.ufo/ │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── account.glif │ │ │ ├── activate-breakpoints.glif │ │ │ ├── add.glif │ │ │ ├── archive.glif │ │ │ ├── arrow-both.glif │ │ │ ├── arrow-down.glif │ │ │ ├── arrow-left.glif │ │ │ ├── arrow-right.glif │ │ │ ├── arrow-small-down.glif │ │ │ ├── arrow-small-left.glif │ │ │ ├── arrow-small-right.glif │ │ │ ├── arrow-small-up.glif │ │ │ ├── arrow-swap.glif │ │ │ ├── arrow-up.glif │ │ │ ├── azure-devops.glif │ │ │ ├── azure.glif │ │ │ ├── beaker-stop.glif │ │ │ ├── beaker.glif │ │ │ ├── bell-dot.glif │ │ │ ├── bell.glif │ │ │ ├── bold.glif │ │ │ ├── book.glif │ │ │ ├── bookmark.glif │ │ │ ├── bracket-dot.glif │ │ │ ├── bracket-error.glif │ │ │ ├── briefcase.glif │ │ │ ├── broadcast.glif │ │ │ ├── browser.glif │ │ │ ├── bug.glif │ │ │ ├── calendar.glif │ │ │ ├── call-incoming.glif │ │ │ ├── call-outgoing.glif │ │ │ ├── case-sensitive.glif │ │ │ ├── check-all.glif │ │ │ ├── check.glif │ │ │ ├── checklist.glif │ │ │ ├── chevron-down.glif │ │ │ ├── chevron-left.glif │ │ │ ├── chevron-right.glif │ │ │ ├── chevron-up.glif │ │ │ ├── chrome-close.glif │ │ │ ├── chrome-maximize.glif │ │ │ ├── chrome-minimize.glif │ │ │ ├── chrome-restore.glif │ │ │ ├── circle-filled.glif │ │ │ ├── circle-large-filled.glif │ │ │ ├── circle-large-outline.glif │ │ │ ├── circle-outline.glif │ │ │ ├── circle-slash.glif │ │ │ ├── circuit-board.glif │ │ │ ├── clear-all.glif │ │ │ ├── clippy.glif │ │ │ ├── close-all.glif │ │ │ ├── close.glif │ │ │ ├── cloud-download.glif │ │ │ ├── cloud-upload.glif │ │ │ ├── cloud.glif │ │ │ ├── code.glif │ │ │ ├── collapse-all.glif │ │ │ ├── color-mode.glif │ │ │ ├── combine.glif │ │ │ ├── comment-discussion.glif │ │ │ ├── comment.glif │ │ │ ├── compass-active.glif │ │ │ ├── compass-dot.glif │ │ │ ├── compass.glif │ │ │ ├── contents.plist │ │ │ ├── copy.glif │ │ │ ├── credit-card.glif │ │ │ ├── dash.glif │ │ │ ├── dashboard.glif │ │ │ ├── database.glif │ │ │ ├── debug-all.glif │ │ │ ├── debug-alt-small.glif │ │ │ ├── debug-alt.glif │ │ │ ├── debug-breakpoint-conditional-unverified.glif │ │ │ ├── debug-breakpoint-conditional.glif │ │ │ ├── debug-breakpoint-data-unverified.glif │ │ │ ├── debug-breakpoint-data.glif │ │ │ ├── debug-breakpoint-function-unverified.glif │ │ │ ├── debug-breakpoint-function.glif │ │ │ ├── debug-breakpoint-log-unverified.glif │ │ │ ├── debug-breakpoint-log.glif │ │ │ ├── debug-breakpoint-unsupported.glif │ │ │ ├── debug-console.glif │ │ │ ├── debug-continue-small.glif │ │ │ ├── debug-continue.glif │ │ │ ├── debug-coverage.glif │ │ │ ├── debug-disconnect.glif │ │ │ ├── debug-line-by-line.glif │ │ │ ├── debug-pause.glif │ │ │ ├── debug-rerun.glif │ │ │ ├── debug-restart-frame.glif │ │ │ ├── debug-restart.glif │ │ │ ├── debug-reverse-continue.glif │ │ │ ├── debug-stackframe-active.glif │ │ │ ├── debug-stackframe-dot.glif │ │ │ ├── debug-stackframe.glif │ │ │ ├── debug-start.glif │ │ │ ├── debug-step-back.glif │ │ │ ├── debug-step-into.glif │ │ │ ├── debug-step-out.glif │ │ │ ├── debug-step-over.glif │ │ │ ├── debug-stop.glif │ │ │ ├── debug.glif │ │ │ ├── desktop-download.glif │ │ │ ├── device-camera-video.glif │ │ │ ├── device-camera.glif │ │ │ ├── device-mobile.glif │ │ │ ├── diff-added.glif │ │ │ ├── diff-ignored.glif │ │ │ ├── diff-modified.glif │ │ │ ├── diff-removed.glif │ │ │ ├── diff-renamed.glif │ │ │ ├── diff.glif │ │ │ ├── discard.glif │ │ │ ├── edit.glif │ │ │ ├── editor-layout.glif │ │ │ ├── ellipsis.glif │ │ │ ├── empty-window.glif │ │ │ ├── error.glif │ │ │ ├── exclude.glif │ │ │ ├── expand-all.glif │ │ │ ├── export.glif │ │ │ ├── extensions.glif │ │ │ ├── eye-closed.glif │ │ │ ├── eye.glif │ │ │ ├── feedback.glif │ │ │ ├── file-binary.glif │ │ │ ├── file-code.glif │ │ │ ├── file-media.glif │ │ │ ├── file-pdf.glif │ │ │ ├── file-submodule.glif │ │ │ ├── file-symlink-directory.glif │ │ │ ├── file-symlink-file.glif │ │ │ ├── file-zip.glif │ │ │ ├── file.glif │ │ │ ├── files.glif │ │ │ ├── filter-filled.glif │ │ │ ├── filter.glif │ │ │ ├── flame.glif │ │ │ ├── fold-down.glif │ │ │ ├── fold-up.glif │ │ │ ├── fold.glif │ │ │ ├── folder-active.glif │ │ │ ├── folder-library.glif │ │ │ ├── folder-opened.glif │ │ │ ├── folder.glif │ │ │ ├── gear.glif │ │ │ ├── gift.glif │ │ │ ├── gist-secret.glif │ │ │ ├── git-commit.glif │ │ │ ├── git-compare.glif │ │ │ ├── git-merge.glif │ │ │ ├── git-pull-request-closed.glif │ │ │ ├── git-pull-request-create.glif │ │ │ ├── git-pull-request-draft.glif │ │ │ ├── git-pull-request.glif │ │ │ ├── github-action.glif │ │ │ ├── github-alt.glif │ │ │ ├── github-inverted.glif │ │ │ ├── github.glif │ │ │ ├── globe.glif │ │ │ ├── go-to-file.glif │ │ │ ├── grabber.glif │ │ │ ├── graph-left.glif │ │ │ ├── graph-line.glif │ │ │ ├── graph-scatter.glif │ │ │ ├── graph.glif │ │ │ ├── gripper.glif │ │ │ ├── group-by-ref-type.glif │ │ │ ├── heart.glif │ │ │ ├── history.glif │ │ │ ├── home.glif │ │ │ ├── horizontal-rule.glif │ │ │ ├── hubot.glif │ │ │ ├── inbox.glif │ │ │ ├── info.glif │ │ │ ├── inspect.glif │ │ │ ├── issue-draft.glif │ │ │ ├── issue-reopened.glif │ │ │ ├── issues.glif │ │ │ ├── italic.glif │ │ │ ├── jersey.glif │ │ │ ├── json.glif │ │ │ ├── kebab-vertical.glif │ │ │ ├── key.glif │ │ │ ├── law.glif │ │ │ ├── layers-active.glif │ │ │ ├── layers-dot.glif │ │ │ ├── layers.glif │ │ │ ├── layout.glif │ │ │ ├── library.glif │ │ │ ├── lightbulb-autofix.glif │ │ │ ├── lightbulb.glif │ │ │ ├── link-external.glif │ │ │ ├── link.glif │ │ │ ├── list-filter.glif │ │ │ ├── list-flat.glif │ │ │ ├── list-ordered.glif │ │ │ ├── list-selection.glif │ │ │ ├── list-tree.glif │ │ │ ├── list-unordered.glif │ │ │ ├── live-share.glif │ │ │ ├── loading.glif │ │ │ ├── location.glif │ │ │ ├── lock-small.glif │ │ │ ├── lock.glif │ │ │ ├── magnet.glif │ │ │ ├── mail-read.glif │ │ │ ├── mail.glif │ │ │ ├── markdown.glif │ │ │ ├── megaphone.glif │ │ │ ├── mention.glif │ │ │ ├── menu.glif │ │ │ ├── merge.glif │ │ │ ├── milestone.glif │ │ │ ├── mirror.glif │ │ │ ├── mortar-board.glif │ │ │ ├── move.glif │ │ │ ├── multiple-windows.glif │ │ │ ├── mute.glif │ │ │ ├── new-file.glif │ │ │ ├── new-folder.glif │ │ │ ├── newline.glif │ │ │ ├── no-newline.glif │ │ │ ├── note.glif │ │ │ ├── notebook-template.glif │ │ │ ├── notebook.glif │ │ │ ├── octoface.glif │ │ │ ├── open-preview.glif │ │ │ ├── organization.glif │ │ │ ├── output.glif │ │ │ ├── package.glif │ │ │ ├── paintcan.glif │ │ │ ├── pass-filled.glif │ │ │ ├── pass.glif │ │ │ ├── person-add.glif │ │ │ ├── person.glif │ │ │ ├── pie-chart.glif │ │ │ ├── pin.glif │ │ │ ├── pinned-dirty.glif │ │ │ ├── pinned.glif │ │ │ ├── play-circle.glif │ │ │ ├── play.glif │ │ │ ├── plug.glif │ │ │ ├── preserve-case.glif │ │ │ ├── preview.glif │ │ │ ├── primitive-square.glif │ │ │ ├── project.glif │ │ │ ├── pulse.glif │ │ │ ├── question.glif │ │ │ ├── quote.glif │ │ │ ├── radio-tower.glif │ │ │ ├── reactions.glif │ │ │ ├── record-keys.glif │ │ │ ├── record.glif │ │ │ ├── redo.glif │ │ │ ├── references.glif │ │ │ ├── refresh.glif │ │ │ ├── regex.glif │ │ │ ├── remote-explorer.glif │ │ │ ├── remote.glif │ │ │ ├── remove.glif │ │ │ ├── replace-all.glif │ │ │ ├── replace.glif │ │ │ ├── reply.glif │ │ │ ├── repo-clone.glif │ │ │ ├── repo-force-push.glif │ │ │ ├── repo-forked.glif │ │ │ ├── repo-pull.glif │ │ │ ├── repo-push.glif │ │ │ ├── repo.glif │ │ │ ├── report.glif │ │ │ ├── request-changes.glif │ │ │ ├── rocket.glif │ │ │ ├── root-folder-opened.glif │ │ │ ├── root-folder.glif │ │ │ ├── rss.glif │ │ │ ├── ruby.glif │ │ │ ├── run-above.glif │ │ │ ├── run-all.glif │ │ │ ├── run-below.glif │ │ │ ├── run-errors.glif │ │ │ ├── save-all.glif │ │ │ ├── save-as.glif │ │ │ ├── save.glif │ │ │ ├── screen-full.glif │ │ │ ├── screen-normal.glif │ │ │ ├── search-stop.glif │ │ │ ├── search.glif │ │ │ ├── server-environment.glif │ │ │ ├── server-process.glif │ │ │ ├── server.glif │ │ │ ├── settings-gear.glif │ │ │ ├── settings.glif │ │ │ ├── shield.glif │ │ │ ├── sign-in.glif │ │ │ ├── sign-out.glif │ │ │ ├── smiley.glif │ │ │ ├── sort-precedence.glif │ │ │ ├── source-control.glif │ │ │ ├── split-horizontal.glif │ │ │ ├── split-vertical.glif │ │ │ ├── squirrel.glif │ │ │ ├── star-empty.glif │ │ │ ├── star-full.glif │ │ │ ├── star-half.glif │ │ │ ├── stop-circle.glif │ │ │ ├── symbol-array.glif │ │ │ ├── symbol-boolean.glif │ │ │ ├── symbol-class.glif │ │ │ ├── symbol-color.glif │ │ │ ├── symbol-constant.glif │ │ │ ├── symbol-enum-member.glif │ │ │ ├── symbol-enum.glif │ │ │ ├── symbol-event.glif │ │ │ ├── symbol-field.glif │ │ │ ├── symbol-file.glif │ │ │ ├── symbol-interface.glif │ │ │ ├── symbol-key.glif │ │ │ ├── symbol-keyword.glif │ │ │ ├── symbol-method.glif │ │ │ ├── symbol-misc.glif │ │ │ ├── symbol-namespace.glif │ │ │ ├── symbol-numeric.glif │ │ │ ├── symbol-operator.glif │ │ │ ├── symbol-parameter.glif │ │ │ ├── symbol-property.glif │ │ │ ├── symbol-ruler.glif │ │ │ ├── symbol-snippet.glif │ │ │ ├── symbol-string.glif │ │ │ ├── symbol-structure.glif │ │ │ ├── symbol-variable.glif │ │ │ ├── sync-ignored.glif │ │ │ ├── sync.glif │ │ │ ├── table.glif │ │ │ ├── tag.glif │ │ │ ├── tasklist.glif │ │ │ ├── telescope.glif │ │ │ ├── terminal-bash.glif │ │ │ ├── terminal-cmd.glif │ │ │ ├── terminal-debian.glif │ │ │ ├── terminal-linux.glif │ │ │ ├── terminal-powershell.glif │ │ │ ├── terminal-tmux.glif │ │ │ ├── terminal-ubuntu.glif │ │ │ ├── terminal.glif │ │ │ ├── text-size.glif │ │ │ ├── three-bars.glif │ │ │ ├── thumbsdown.glif │ │ │ ├── thumbsup.glif │ │ │ ├── tools.glif │ │ │ ├── trash.glif │ │ │ ├── triangle-down.glif │ │ │ ├── triangle-left.glif │ │ │ ├── triangle-right.glif │ │ │ ├── triangle-up.glif │ │ │ ├── twitter.glif │ │ │ ├── type-hierarchy-sub.glif │ │ │ ├── type-hierarchy-super.glif │ │ │ ├── type-hierarchy.glif │ │ │ ├── unfold.glif │ │ │ ├── ungroup-by-ref-type.glif │ │ │ ├── unlock.glif │ │ │ ├── unmute.glif │ │ │ ├── unverified.glif │ │ │ ├── variable-group.glif │ │ │ ├── verified-filled.glif │ │ │ ├── verified.glif │ │ │ ├── versions.glif │ │ │ ├── vm-active.glif │ │ │ ├── vm-connect.glif │ │ │ ├── vm-outline.glif │ │ │ ├── vm-running.glif │ │ │ ├── vm.glif │ │ │ ├── wand.glif │ │ │ ├── warning.glif │ │ │ ├── watch.glif │ │ │ ├── whitespace.glif │ │ │ ├── whole-word.glif │ │ │ ├── window.glif │ │ │ ├── word-wrap.glif │ │ │ ├── workspace-trusted.glif │ │ │ ├── workspace-unknown.glif │ │ │ ├── workspace-untrusted.glif │ │ │ ├── zoom-in.glif │ │ │ └── zoom-out.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── devicons.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── contents.plist │ │ │ ├── uniE_600.glif │ │ │ ├── uniE_601.glif │ │ │ ├── uniE_602.glif │ │ │ ├── uniE_603.glif │ │ │ ├── uniE_604.glif │ │ │ ├── uniE_605.glif │ │ │ ├── uniE_606.glif │ │ │ ├── uniE_607.glif │ │ │ ├── uniE_608.glif │ │ │ ├── uniE_609.glif │ │ │ ├── uniE_60A_.glif │ │ │ ├── uniE_60B_.glif │ │ │ ├── uniE_60C_.glif │ │ │ ├── uniE_60D_.glif │ │ │ ├── uniE_60E_.glif │ │ │ ├── uniE_60F_.glif │ │ │ ├── uniE_610.glif │ │ │ ├── uniE_611.glif │ │ │ ├── uniE_612.glif │ │ │ ├── uniE_613.glif │ │ │ ├── uniE_614.glif │ │ │ ├── uniE_615.glif │ │ │ ├── uniE_616.glif │ │ │ ├── uniE_617.glif │ │ │ ├── uniE_618.glif │ │ │ ├── uniE_619.glif │ │ │ ├── uniE_61A_.glif │ │ │ ├── uniE_61B_.glif │ │ │ ├── uniE_61C_.glif │ │ │ ├── uniE_61D_.glif │ │ │ ├── uniE_61E_.glif │ │ │ ├── uniE_61F_.glif │ │ │ ├── uniE_620.glif │ │ │ ├── uniE_621.glif │ │ │ ├── uniE_622.glif │ │ │ ├── uniE_623.glif │ │ │ ├── uniE_624.glif │ │ │ ├── uniE_625.glif │ │ │ ├── uniE_626.glif │ │ │ ├── uniE_627.glif │ │ │ ├── uniE_628.glif │ │ │ ├── uniE_629.glif │ │ │ ├── uniE_62A_.glif │ │ │ ├── uniE_62B_.glif │ │ │ ├── uniE_62C_.glif │ │ │ ├── uniE_62D_.glif │ │ │ ├── uniE_62E_.glif │ │ │ ├── uniE_62F_.glif │ │ │ ├── uniE_630.glif │ │ │ ├── uniE_631.glif │ │ │ ├── uniE_632.glif │ │ │ ├── uniE_633.glif │ │ │ ├── uniE_634.glif │ │ │ ├── uniE_635.glif │ │ │ ├── uniE_636.glif │ │ │ ├── uniE_637.glif │ │ │ ├── uniE_638.glif │ │ │ ├── uniE_639.glif │ │ │ ├── uniE_63A_.glif │ │ │ ├── uniE_63B_.glif │ │ │ ├── uniE_63C_.glif │ │ │ ├── uniE_63D_.glif │ │ │ ├── uniE_63E_.glif │ │ │ ├── uniE_63F_.glif │ │ │ ├── uniE_640.glif │ │ │ ├── uniE_641.glif │ │ │ ├── uniE_642.glif │ │ │ ├── uniE_643.glif │ │ │ ├── uniE_644.glif │ │ │ ├── uniE_645.glif │ │ │ ├── uniE_646.glif │ │ │ ├── uniE_647.glif │ │ │ ├── uniE_648.glif │ │ │ ├── uniE_649.glif │ │ │ ├── uniE_64A_.glif │ │ │ ├── uniE_64B_.glif │ │ │ ├── uniE_64C_.glif │ │ │ ├── uniE_64D_.glif │ │ │ ├── uniE_64E_.glif │ │ │ ├── uniE_64F_.glif │ │ │ ├── uniE_650.glif │ │ │ ├── uniE_651.glif │ │ │ ├── uniE_652.glif │ │ │ ├── uniE_653.glif │ │ │ ├── uniE_654.glif │ │ │ ├── uniE_655.glif │ │ │ ├── uniE_656.glif │ │ │ ├── uniE_657.glif │ │ │ ├── uniE_658.glif │ │ │ ├── uniE_659.glif │ │ │ ├── uniE_65A_.glif │ │ │ ├── uniE_65B_.glif │ │ │ ├── uniE_65C_.glif │ │ │ ├── uniE_65D_.glif │ │ │ ├── uniE_65E_.glif │ │ │ ├── uniE_65F_.glif │ │ │ ├── uniE_660.glif │ │ │ ├── uniE_661.glif │ │ │ ├── uniE_662.glif │ │ │ ├── uniE_663.glif │ │ │ ├── uniE_664.glif │ │ │ ├── uniE_665.glif │ │ │ ├── uniE_666.glif │ │ │ ├── uniE_667.glif │ │ │ ├── uniE_668.glif │ │ │ ├── uniE_669.glif │ │ │ ├── uniE_66A_.glif │ │ │ ├── uniE_66B_.glif │ │ │ ├── uniE_66C_.glif │ │ │ ├── uniE_66D_.glif │ │ │ ├── uniE_66E_.glif │ │ │ ├── uniE_66F_.glif │ │ │ ├── uniE_670.glif │ │ │ ├── uniE_671.glif │ │ │ ├── uniE_672.glif │ │ │ ├── uniE_673.glif │ │ │ ├── uniE_674.glif │ │ │ ├── uniE_675.glif │ │ │ ├── uniE_676.glif │ │ │ ├── uniE_677.glif │ │ │ ├── uniE_678.glif │ │ │ ├── uniE_679.glif │ │ │ ├── uniE_67A_.glif │ │ │ ├── uniE_67B_.glif │ │ │ ├── uniE_67C_.glif │ │ │ ├── uniE_67D_.glif │ │ │ ├── uniE_67E_.glif │ │ │ ├── uniE_67F_.glif │ │ │ ├── uniE_680.glif │ │ │ ├── uniE_681.glif │ │ │ ├── uniE_682.glif │ │ │ ├── uniE_683.glif │ │ │ ├── uniE_684.glif │ │ │ ├── uniE_685.glif │ │ │ ├── uniE_686.glif │ │ │ ├── uniE_687.glif │ │ │ ├── uniE_688.glif │ │ │ ├── uniE_689.glif │ │ │ ├── uniE_68A_.glif │ │ │ ├── uniE_68B_.glif │ │ │ ├── uniE_68C_.glif │ │ │ ├── uniE_68D_.glif │ │ │ ├── uniE_68E_.glif │ │ │ ├── uniE_68F_.glif │ │ │ ├── uniE_690.glif │ │ │ ├── uniE_691.glif │ │ │ ├── uniE_692.glif │ │ │ ├── uniE_693.glif │ │ │ ├── uniE_694.glif │ │ │ ├── uniE_695.glif │ │ │ ├── uniE_696.glif │ │ │ ├── uniE_697.glif │ │ │ ├── uniE_698.glif │ │ │ ├── uniE_699.glif │ │ │ ├── uniE_69A_.glif │ │ │ ├── uniE_69B_.glif │ │ │ ├── uniE_69C_.glif │ │ │ ├── uniE_69D_.glif │ │ │ ├── uniE_69E_.glif │ │ │ ├── uniE_69F_.glif │ │ │ ├── uniE_6A_0.glif │ │ │ ├── uniE_6A_1.glif │ │ │ ├── uniE_6A_2.glif │ │ │ ├── uniE_6A_3.glif │ │ │ ├── uniE_6A_4.glif │ │ │ ├── uniE_6A_5.glif │ │ │ ├── uniE_6A_6.glif │ │ │ ├── uniE_6A_7.glif │ │ │ ├── uniE_6A_8.glif │ │ │ ├── uniE_6A_9.glif │ │ │ ├── uniE_6A_A_.glif │ │ │ ├── uniE_6A_B_.glif │ │ │ ├── uniE_6A_C_.glif │ │ │ ├── uniE_6A_D_.glif │ │ │ ├── uniE_6A_E_.glif │ │ │ ├── uniE_6A_F_.glif │ │ │ ├── uniE_6B_0.glif │ │ │ ├── uniE_6B_1.glif │ │ │ ├── uniE_6B_2.glif │ │ │ ├── uniE_6B_3.glif │ │ │ ├── uniE_6B_4.glif │ │ │ ├── uniE_6B_5.glif │ │ │ ├── uniE_6B_6.glif │ │ │ ├── uniE_6B_7.glif │ │ │ ├── uniE_6B_8.glif │ │ │ ├── uniE_6B_9.glif │ │ │ ├── uniE_6B_A_.glif │ │ │ ├── uniE_6B_B_.glif │ │ │ ├── uniE_6B_C_.glif │ │ │ ├── uniE_6B_D_.glif │ │ │ ├── uniE_6B_E_.glif │ │ │ ├── uniE_6B_F_.glif │ │ │ ├── uniE_6C_0.glif │ │ │ ├── uniE_6C_1.glif │ │ │ ├── uniE_6C_2.glif │ │ │ ├── uniE_6C_3.glif │ │ │ ├── uniE_6C_4.glif │ │ │ └── uniE_6C_5.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── font-awesome-extension.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── apple-fruit.glif │ │ │ ├── atom.glif │ │ │ ├── bacteria.glif │ │ │ ├── banana.glif │ │ │ ├── bath.glif │ │ │ ├── bed.glif │ │ │ ├── benzene.glif │ │ │ ├── bigger.glif │ │ │ ├── biohazard.glif │ │ │ ├── blogger-circle.glif │ │ │ ├── blogger-square.glif │ │ │ ├── bones.glif │ │ │ ├── book-open-o.glif │ │ │ ├── book-open.glif │ │ │ ├── brain.glif │ │ │ ├── bread.glif │ │ │ ├── butterfly.glif │ │ │ ├── carot.glif │ │ │ ├── cc-by.glif │ │ │ ├── cc-cc.glif │ │ │ ├── cc-nc-eu.glif │ │ │ ├── cc-nc-jp.glif │ │ │ ├── cc-nc.glif │ │ │ ├── cc-nd.glif │ │ │ ├── cc-remix.glif │ │ │ ├── cc-sa.glif │ │ │ ├── cc-share.glif │ │ │ ├── cc-zero.glif │ │ │ ├── checklist-o.glif │ │ │ ├── cherry.glif │ │ │ ├── chess-bishop.glif │ │ │ ├── chess-horse.glif │ │ │ ├── chess-king.glif │ │ │ ├── chess-pawn.glif │ │ │ ├── chess-queen.glif │ │ │ ├── chess-tower.glif │ │ │ ├── chesse.glif │ │ │ ├── chicken-thigh.glif │ │ │ ├── chilli.glif │ │ │ ├── chip.glif │ │ │ ├── cicling.glif │ │ │ ├── cloud.glif │ │ │ ├── cockroach.glif │ │ │ ├── coffe-beans.glif │ │ │ ├── coins.glif │ │ │ ├── comb.glif │ │ │ ├── comet.glif │ │ │ ├── contents.plist │ │ │ ├── crown.glif │ │ │ ├── cup-coffe.glif │ │ │ ├── dice.glif │ │ │ ├── disco.glif │ │ │ ├── dna.glif │ │ │ ├── donut.glif │ │ │ ├── dress.glif │ │ │ ├── drop.glif │ │ │ ├── ello.glif │ │ │ ├── envelope-open-o.glif │ │ │ ├── envelope-open.glif │ │ │ ├── equal-bigger.glif │ │ │ ├── equal.glif │ │ │ ├── feedly.glif │ │ │ ├── file-export.glif │ │ │ ├── file-import.glif │ │ │ ├── fingerprint.glif │ │ │ ├── floppy.glif │ │ │ ├── footprint.glif │ │ │ ├── freecodecamp.glif │ │ │ ├── galaxy.glif │ │ │ ├── galery.glif │ │ │ ├── gift-card.glif │ │ │ ├── glass.glif │ │ │ ├── google-drive.glif │ │ │ ├── google-play.glif │ │ │ ├── gps.glif │ │ │ ├── grav.glif │ │ │ ├── guitar.glif │ │ │ ├── gut.glif │ │ │ ├── halter.glif │ │ │ ├── hamburger.glif │ │ │ ├── hat.glif │ │ │ ├── hexagon.glif │ │ │ ├── high-heel.glif │ │ │ ├── hotdog.glif │ │ │ ├── ice-cream.glif │ │ │ ├── id-card.glif │ │ │ ├── imdb.glif │ │ │ ├── infinity.glif │ │ │ ├── injection.glif │ │ │ ├── isle.glif │ │ │ ├── java.glif │ │ │ ├── layers.glif │ │ │ ├── lips.glif │ │ │ ├── lipstick.glif │ │ │ ├── liver.glif │ │ │ ├── lollipop.glif │ │ │ ├── loyalty-card.glif │ │ │ ├── lung.glif │ │ │ ├── makeup-brushes.glif │ │ │ ├── maximize.glif │ │ │ ├── meat.glif │ │ │ ├── medicine.glif │ │ │ ├── microscope.glif │ │ │ ├── milk-bottle.glif │ │ │ ├── minimize.glif │ │ │ ├── molecule.glif │ │ │ ├── moon-cloud.glif │ │ │ ├── mountains.glif │ │ │ ├── mushroom.glif │ │ │ ├── mustache.glif │ │ │ ├── mysql.glif │ │ │ ├── nintendo.glif │ │ │ ├── orange.glif │ │ │ ├── palette-color.glif │ │ │ ├── peach.glif │ │ │ ├── pear.glif │ │ │ ├── pi.glif │ │ │ ├── pizza.glif │ │ │ ├── planet.glif │ │ │ ├── plant.glif │ │ │ ├── playstation.glif │ │ │ ├── poison.glif │ │ │ ├── popcorn.glif │ │ │ ├── popsicle.glif │ │ │ ├── pulse.glif │ │ │ ├── python.glif │ │ │ ├── quora-circle.glif │ │ │ ├── quora-square.glif │ │ │ ├── radioactive.glif │ │ │ ├── raining.glif │ │ │ ├── real-heart.glif │ │ │ ├── refrigerator.glif │ │ │ ├── restore.glif │ │ │ ├── ring.glif │ │ │ ├── ruby-o.glif │ │ │ ├── ruby.glif │ │ │ ├── ruler.glif │ │ │ ├── shirt.glif │ │ │ ├── slash.glif │ │ │ ├── smaller.glif │ │ │ ├── snowing.glif │ │ │ ├── soda.glif │ │ │ ├── sofa.glif │ │ │ ├── soup.glif │ │ │ ├── spermatozoon.glif │ │ │ ├── spin-double.glif │ │ │ ├── stomach.glif │ │ │ ├── storm.glif │ │ │ ├── sun-cloud.glif │ │ │ ├── sushi.glif │ │ │ ├── tacos.glif │ │ │ ├── telegram-circle.glif │ │ │ ├── telegram.glif │ │ │ ├── telescope.glif │ │ │ ├── thermometer-high.glif │ │ │ ├── thermometer-low.glif │ │ │ ├── thermometer.glif │ │ │ ├── thin-close.glif │ │ │ ├── toilet.glif │ │ │ ├── tools.glif │ │ │ ├── tooth.glif │ │ │ ├── tree.glif │ │ │ ├── triangle-ruler.glif │ │ │ ├── umbrella.glif │ │ │ ├── uterus.glif │ │ │ ├── virus.glif │ │ │ ├── w3c.glif │ │ │ ├── walking.glif │ │ │ ├── wallet.glif │ │ │ ├── wind.glif │ │ │ └── xbox.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── font-logos.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── A_O_S_C_ O_S_.glif │ │ │ ├── A_lma L_inux.glif │ │ │ ├── A_lpine.glif │ │ │ ├── A_pple.glif │ │ │ ├── A_rch L_inux.glif │ │ │ ├── A_rchL_abs.glif │ │ │ ├── A_rchcraft.glif │ │ │ ├── A_rcoL_inux.glif │ │ │ ├── A_rduino.glif │ │ │ ├── A_rtix L_inux.glif │ │ │ ├── A_wesome W_M_.glif │ │ │ ├── B_igL_inux.glif │ │ │ ├── B_udgie.glif │ │ │ ├── C_entO_S_.glif │ │ │ ├── C_innamon.glif │ │ │ ├── C_odeberg.glif │ │ │ ├── C_oreO_S_.glif │ │ │ ├── C_rystal L_inux.glif │ │ │ ├── D_ebian.glif │ │ │ ├── D_eepin.glif │ │ │ ├── D_evuan.glif │ │ │ ├── D_ocker.glif │ │ │ ├── E_ndeavour O_S_.glif │ │ │ ├── E_nlightenment.glif │ │ │ ├── F_-droid.glif │ │ │ ├── F_O_S_D_E_M_.glif │ │ │ ├── F_edora _inverse_.glif │ │ │ ├── F_edora.glif │ │ │ ├── F_erris.glif │ │ │ ├── F_lathub.glif │ │ │ ├── F_luxbox.glif │ │ │ ├── F_orgejo.glif │ │ │ ├── F_reeB_S_D_.glif │ │ │ ├── F_reeC_A_D_.glif │ │ │ ├── G_I_M_P_.glif │ │ │ ├── G_N_O_M_E_.glif │ │ │ ├── G_N_U_ G_uix.glif │ │ │ ├── G_T_K_.glif │ │ │ ├── G_aruda L_inux.glif │ │ │ ├── G_entoo.glif │ │ │ ├── G_itea.glif │ │ │ ├── H_yperbola G_N_U__L_inux-libre.glif │ │ │ ├── H_yprland.glif │ │ │ ├── I_nkscape.glif │ │ │ ├── J_W_M_.glif │ │ │ ├── K_D_E_ N_eon.glif │ │ │ ├── K_D_E_ P_lasma.glif │ │ │ ├── K_ali L_inux.glif │ │ │ ├── K_denlive.glif │ │ │ ├── K_iC_ad.glif │ │ │ ├── K_rita.glif │ │ │ ├── K_ubuntu _inverse_.glif │ │ │ ├── K_ubuntu.glif │ │ │ ├── L_X_D_E_.glif │ │ │ ├── L_X_L_E_ L_inux.glif │ │ │ ├── L_X_Q_t.glif │ │ │ ├── L_inux M_int _inverse_.glif │ │ │ ├── L_inux M_int.glif │ │ │ ├── L_oc-O_S_.glif │ │ │ ├── M_A_T_E_.glif │ │ │ ├── M_X_ L_inux.glif │ │ │ ├── M_ageia.glif │ │ │ ├── M_andriva.glif │ │ │ ├── M_anjaro.glif │ │ │ ├── N_eovim.glif │ │ │ ├── N_ixO_S_.glif │ │ │ ├── O_S_H_.glif │ │ │ ├── O_S_H_W_A_.glif │ │ │ ├── O_S_I_.glif │ │ │ ├── O_ctoprint.glif │ │ │ ├── O_penB_S_D_.glif │ │ │ ├── O_penS_C_A_D_.glif │ │ │ ├── O_penS_U_S_E_.glif │ │ │ ├── P_arabola G_N_U__L_inux-libre.glif │ │ │ ├── P_arrot O_S_.glif │ │ │ ├── P_op!_O_S_.glif │ │ │ ├── P_rusa S_licer.glif │ │ │ ├── P_uppy L_inux.glif │ │ │ ├── Q_tile.glif │ │ │ ├── Q_ubesO_S_.glif │ │ │ ├── R_I_S_C_-V_.glif │ │ │ ├── R_aspberry pi.glif │ │ │ ├── R_ed H_at.glif │ │ │ ├── R_epR_ap.glif │ │ │ ├── R_ocky L_inux.glif │ │ │ ├── S_abayon.glif │ │ │ ├── S_lackware _inverse_.glif │ │ │ ├── S_lackware.glif │ │ │ ├── S_nappy.glif │ │ │ ├── S_olus.glif │ │ │ ├── S_way.glif │ │ │ ├── T_ails.glif │ │ │ ├── T_hunderbird.glif │ │ │ ├── T_or B_rowser.glif │ │ │ ├── T_risquel G_N_U__L_inux.glif │ │ │ ├── T_ux.glif │ │ │ ├── U_buntu _inverse_.glif │ │ │ ├── U_buntu.glif │ │ │ ├── V_S_ C_odium.glif │ │ │ ├── V_anilla O_S_.glif │ │ │ ├── V_oid.glif │ │ │ ├── W_ayland.glif │ │ │ ├── W_ikimedia.glif │ │ │ ├── X_F_C_E_.glif │ │ │ ├── X_eroL_inux.glif │ │ │ ├── X_monad.glif │ │ │ ├── X_org.glif │ │ │ ├── Z_orin O_S_.glif │ │ │ ├── bspwm.glif │ │ │ ├── contents.plist │ │ │ ├── dwm.glif │ │ │ ├── elementary O_S_.glif │ │ │ ├── freedesktop.org.glif │ │ │ ├── i3.glif │ │ │ ├── illumos.glif │ │ │ └── mpv.glif │ │ ├── glyphs.public.background/ │ │ │ ├── T_ux.glif │ │ │ └── contents.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── octicons.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── accessibility-inset.glif │ │ │ ├── accessibility.glif │ │ │ ├── alert-fill.glif │ │ │ ├── alert.glif │ │ │ ├── apps.glif │ │ │ ├── archive.glif │ │ │ ├── arrow-both.glif │ │ │ ├── arrow-down-left.glif │ │ │ ├── arrow-down-right.glif │ │ │ ├── arrow-down.glif │ │ │ ├── arrow-left.glif │ │ │ ├── arrow-right.glif │ │ │ ├── arrow-switch.glif │ │ │ ├── arrow-up-left.glif │ │ │ ├── arrow-up-right.glif │ │ │ ├── arrow-up.glif │ │ │ ├── beaker.glif │ │ │ ├── bell-fill.glif │ │ │ ├── bell-slash.glif │ │ │ ├── bell.glif │ │ │ ├── blocked.glif │ │ │ ├── bold.glif │ │ │ ├── book.glif │ │ │ ├── bookmark-fill.glif │ │ │ ├── bookmark-slash-fill.glif │ │ │ ├── bookmark-slash.glif │ │ │ ├── bookmark.glif │ │ │ ├── briefcase.glif │ │ │ ├── broadcast.glif │ │ │ ├── browser.glif │ │ │ ├── bug.glif │ │ │ ├── cache.glif │ │ │ ├── calendar.glif │ │ │ ├── check-circle-fill.glif │ │ │ ├── check-circle.glif │ │ │ ├── check.glif │ │ │ ├── checkbox.glif │ │ │ ├── checklist.glif │ │ │ ├── chevron-down.glif │ │ │ ├── chevron-left.glif │ │ │ ├── chevron-right.glif │ │ │ ├── chevron-up.glif │ │ │ ├── circle-slash.glif │ │ │ ├── circle.glif │ │ │ ├── clock-fill.glif │ │ │ ├── clock.glif │ │ │ ├── cloud-offline.glif │ │ │ ├── cloud.glif │ │ │ ├── code-of-conduct.glif │ │ │ ├── code-review.glif │ │ │ ├── code-square.glif │ │ │ ├── code.glif │ │ │ ├── codescan-checkmark.glif │ │ │ ├── codescan.glif │ │ │ ├── codespaces.glif │ │ │ ├── columns.glif │ │ │ ├── command-palette.glif │ │ │ ├── comment-discussion.glif │ │ │ ├── comment.glif │ │ │ ├── commit.glif │ │ │ ├── container.glif │ │ │ ├── contents.plist │ │ │ ├── copilot-error.glif │ │ │ ├── copilot-warning.glif │ │ │ ├── copilot.glif │ │ │ ├── copy.glif │ │ │ ├── cpu.glif │ │ │ ├── credit-card.glif │ │ │ ├── cross-reference.glif │ │ │ ├── dash.glif │ │ │ ├── database.glif │ │ │ ├── dependabot.glif │ │ │ ├── desktop-download.glif │ │ │ ├── device-camera-video.glif │ │ │ ├── device-camera.glif │ │ │ ├── device-desktop.glif │ │ │ ├── device-mobile.glif │ │ │ ├── diamond.glif │ │ │ ├── diff-added.glif │ │ │ ├── diff-ignored.glif │ │ │ ├── diff-modified.glif │ │ │ ├── diff-removed.glif │ │ │ ├── diff-renamed.glif │ │ │ ├── diff.glif │ │ │ ├── discussion-closed.glif │ │ │ ├── discussion-duplicate.glif │ │ │ ├── discussion-outdated.glif │ │ │ ├── dot-fill.glif │ │ │ ├── dot.glif │ │ │ ├── download.glif │ │ │ ├── duplicate.glif │ │ │ ├── ellipsis.glif │ │ │ ├── eye-closed.glif │ │ │ ├── eye.glif │ │ │ ├── feed-discussion.glif │ │ │ ├── feed-forked.glif │ │ │ ├── feed-heart.glif │ │ │ ├── feed-merged.glif │ │ │ ├── feed-person.glif │ │ │ ├── feed-repo.glif │ │ │ ├── feed-rocket.glif │ │ │ ├── feed-star.glif │ │ │ ├── feed-tag.glif │ │ │ ├── feed-trophy.glif │ │ │ ├── file-added.glif │ │ │ ├── file-badge.glif │ │ │ ├── file-binary.glif │ │ │ ├── file-code.glif │ │ │ ├── file-diff.glif │ │ │ ├── file-directory-fill.glif │ │ │ ├── file-directory-open-fill.glif │ │ │ ├── file-directory.glif │ │ │ ├── file-media.glif │ │ │ ├── file-moved.glif │ │ │ ├── file-removed.glif │ │ │ ├── file-submodule.glif │ │ │ ├── file-symlink-directory.glif │ │ │ ├── file-symlink-file.glif │ │ │ ├── file-zip.glif │ │ │ ├── file.glif │ │ │ ├── filter.glif │ │ │ ├── fiscal-host.glif │ │ │ ├── flame.glif │ │ │ ├── fold-down.glif │ │ │ ├── fold-up.glif │ │ │ ├── fold.glif │ │ │ ├── gear.glif │ │ │ ├── gift.glif │ │ │ ├── git-branch.glif │ │ │ ├── git-commit.glif │ │ │ ├── git-compare.glif │ │ │ ├── git-merge-queue.glif │ │ │ ├── git-merge.glif │ │ │ ├── git-pull-request-closed.glif │ │ │ ├── git-pull-request-draft.glif │ │ │ ├── git-pull-request.glif │ │ │ ├── globe.glif │ │ │ ├── goal.glif │ │ │ ├── grabber.glif │ │ │ ├── graph.glif │ │ │ ├── hash.glif │ │ │ ├── heading.glif │ │ │ ├── heart-fill.glif │ │ │ ├── heart.glif │ │ │ ├── history.glif │ │ │ ├── home-fill.glif │ │ │ ├── home.glif │ │ │ ├── horizontal-rule.glif │ │ │ ├── hourglass.glif │ │ │ ├── hubot.glif │ │ │ ├── id-badge.glif │ │ │ ├── image.glif │ │ │ ├── inbox.glif │ │ │ ├── infinity.glif │ │ │ ├── info.glif │ │ │ ├── issue-closed.glif │ │ │ ├── issue-draft.glif │ │ │ ├── issue-opened.glif │ │ │ ├── issue-reopened.glif │ │ │ ├── issue-tracked-by.glif │ │ │ ├── issue-tracks.glif │ │ │ ├── italic.glif │ │ │ ├── iterations.glif │ │ │ ├── kebab-horizontal.glif │ │ │ ├── key-asterisk.glif │ │ │ ├── key.glif │ │ │ ├── law.glif │ │ │ ├── light-bulb.glif │ │ │ ├── link-external.glif │ │ │ ├── link.glif │ │ │ ├── list-ordered.glif │ │ │ ├── list-unordered.glif │ │ │ ├── location.glif │ │ │ ├── lock.glif │ │ │ ├── log.glif │ │ │ ├── logo-gist.glif │ │ │ ├── logo-github.glif │ │ │ ├── mail.glif │ │ │ ├── mark-github.glif │ │ │ ├── markdown.glif │ │ │ ├── megaphone.glif │ │ │ ├── mention.glif │ │ │ ├── meter.glif │ │ │ ├── milestone.glif │ │ │ ├── mirror.glif │ │ │ ├── moon.glif │ │ │ ├── mortar-board.glif │ │ │ ├── move-to-bottom.glif │ │ │ ├── move-to-end.glif │ │ │ ├── move-to-start.glif │ │ │ ├── move-to-top.glif │ │ │ ├── multi-select.glif │ │ │ ├── mute.glif │ │ │ ├── no-entry.glif │ │ │ ├── north-star.glif │ │ │ ├── note.glif │ │ │ ├── number.glif │ │ │ ├── organization.glif │ │ │ ├── package-dependencies.glif │ │ │ ├── package-dependents.glif │ │ │ ├── package.glif │ │ │ ├── paintbrush.glif │ │ │ ├── paper-airplane.glif │ │ │ ├── paperclip.glif │ │ │ ├── passkey-fill.glif │ │ │ ├── paste.glif │ │ │ ├── pencil.glif │ │ │ ├── people.glif │ │ │ ├── person-add.glif │ │ │ ├── person-fill.glif │ │ │ ├── person.glif │ │ │ ├── pin.glif │ │ │ ├── play.glif │ │ │ ├── plug.glif │ │ │ ├── plus-circle.glif │ │ │ ├── plus.glif │ │ │ ├── project-roadmap.glif │ │ │ ├── project-symlink.glif │ │ │ ├── project-template.glif │ │ │ ├── project.glif │ │ │ ├── pulse.glif │ │ │ ├── question.glif │ │ │ ├── quote.glif │ │ │ ├── read.glif │ │ │ ├── rel-file-path.glif │ │ │ ├── reply.glif │ │ │ ├── repo-clone.glif │ │ │ ├── repo-deleted.glif │ │ │ ├── repo-forked.glif │ │ │ ├── repo-locked.glif │ │ │ ├── repo-pull.glif │ │ │ ├── repo-push.glif │ │ │ ├── repo-template.glif │ │ │ ├── repo.glif │ │ │ ├── report.glif │ │ │ ├── rocket.glif │ │ │ ├── rows.glif │ │ │ ├── rss.glif │ │ │ ├── ruby.glif │ │ │ ├── screen-full.glif │ │ │ ├── screen-normal.glif │ │ │ ├── search.glif │ │ │ ├── server.glif │ │ │ ├── share-android.glif │ │ │ ├── share.glif │ │ │ ├── shield-check.glif │ │ │ ├── shield-lock.glif │ │ │ ├── shield-slash.glif │ │ │ ├── shield-x.glif │ │ │ ├── shield.glif │ │ │ ├── sidebar-collapse.glif │ │ │ ├── sidebar-expand.glif │ │ │ ├── sign-in.glif │ │ │ ├── sign-out.glif │ │ │ ├── single-select.glif │ │ │ ├── skip-fill.glif │ │ │ ├── skip.glif │ │ │ ├── sliders.glif │ │ │ ├── smiley.glif │ │ │ ├── sort-asc.glif │ │ │ ├── sort-desc.glif │ │ │ ├── sparkle-fill.glif │ │ │ ├── sponsor-tiers.glif │ │ │ ├── square-fill.glif │ │ │ ├── square.glif │ │ │ ├── squirrel.glif │ │ │ ├── stack.glif │ │ │ ├── star-fill.glif │ │ │ ├── star.glif │ │ │ ├── stop.glif │ │ │ ├── stopwatch.glif │ │ │ ├── strikethrough.glif │ │ │ ├── sun.glif │ │ │ ├── sync.glif │ │ │ ├── tab-external.glif │ │ │ ├── tab.glif │ │ │ ├── table.glif │ │ │ ├── tag.glif │ │ │ ├── tasklist.glif │ │ │ ├── telescope-fill.glif │ │ │ ├── telescope.glif │ │ │ ├── terminal.glif │ │ │ ├── three-bars.glif │ │ │ ├── thumbsdown.glif │ │ │ ├── thumbsup.glif │ │ │ ├── tools.glif │ │ │ ├── trash.glif │ │ │ ├── triangle-down.glif │ │ │ ├── triangle-left.glif │ │ │ ├── triangle-right.glif │ │ │ ├── triangle-up.glif │ │ │ ├── trophy.glif │ │ │ ├── typography.glif │ │ │ ├── unfold.glif │ │ │ ├── unlink.glif │ │ │ ├── unlock.glif │ │ │ ├── unmute.glif │ │ │ ├── unread.glif │ │ │ ├── unverified.glif │ │ │ ├── upload.glif │ │ │ ├── verified.glif │ │ │ ├── versions.glif │ │ │ ├── video.glif │ │ │ ├── webhook.glif │ │ │ ├── workflow.glif │ │ │ ├── x-circle-fill.glif │ │ │ ├── x-circle.glif │ │ │ ├── x.glif │ │ │ ├── zap.glif │ │ │ ├── zoom-in.glif │ │ │ └── zoom-out.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── original-source.ufo/ │ │ ├── fontinfo.plist │ │ ├── glyphs/ │ │ │ ├── contents.plist │ │ │ ├── i_custom_asm.glif │ │ │ ├── i_custom_c.glif │ │ │ ├── i_custom_common_lisp.glif │ │ │ ├── i_custom_cpp.glif │ │ │ ├── i_custom_crystal.glif │ │ │ ├── i_custom_default.glif │ │ │ ├── i_custom_electron.glif │ │ │ ├── i_custom_elixir.glif │ │ │ ├── i_custom_elm.glif │ │ │ ├── i_custom_emacs.glif │ │ │ ├── i_custom_fennel.glif │ │ │ ├── i_custom_folder.glif │ │ │ ├── i_custom_folder_config.glif │ │ │ ├── i_custom_folder_git.glif │ │ │ ├── i_custom_folder_github.glif │ │ │ ├── i_custom_folder_npm.glif │ │ │ ├── i_custom_folder_oct.glif │ │ │ ├── i_custom_folder_open.glif │ │ │ ├── i_custom_go.glif │ │ │ ├── i_custom_home.glif │ │ │ ├── i_custom_kotlin.glif │ │ │ ├── i_custom_msdos.glif │ │ │ ├── i_custom_neovim.glif │ │ │ ├── i_custom_orgmode.glif │ │ │ ├── i_custom_play_arrow.glif │ │ │ ├── i_custom_purescript.glif │ │ │ ├── i_custom_scheme.glif │ │ │ ├── i_custom_toml.glif │ │ │ ├── i_custom_v_lang.glif │ │ │ ├── i_custom_vim.glif │ │ │ ├── i_custom_windows.glif │ │ │ ├── i_indent_line.glif │ │ │ ├── i_seti_apple.glif │ │ │ ├── i_seti_argdown.glif │ │ │ ├── i_seti_asm.glif │ │ │ ├── i_seti_audio.glif │ │ │ ├── i_seti_babel.glif │ │ │ ├── i_seti_bazel.glif │ │ │ ├── i_seti_bicep.glif │ │ │ ├── i_seti_bower.glif │ │ │ ├── i_seti_bsl.glif │ │ │ ├── i_seti_c.glif │ │ │ ├── i_seti_c_sharp.glif │ │ │ ├── i_seti_cake.glif │ │ │ ├── i_seti_cake_php.glif │ │ │ ├── i_seti_checkbox.glif │ │ │ ├── i_seti_checkbox_unchecked.glif │ │ │ ├── i_seti_clock.glif │ │ │ ├── i_seti_clojure.glif │ │ │ ├── i_seti_code_climate.glif │ │ │ ├── i_seti_code_search.glif │ │ │ ├── i_seti_coffee.glif │ │ │ ├── i_seti_coldfusion.glif │ │ │ ├── i_seti_config.glif │ │ │ ├── i_seti_cpp.glif │ │ │ ├── i_seti_crystal_embedded.glif │ │ │ ├── i_seti_css.glif │ │ │ ├── i_seti_csv.glif │ │ │ ├── i_seti_cu.glif │ │ │ ├── i_seti_d.glif │ │ │ ├── i_seti_dart.glif │ │ │ ├── i_seti_db.glif │ │ │ ├── i_seti_default.glif │ │ │ ├── i_seti_deprecation_cop.glif │ │ │ ├── i_seti_docker.glif │ │ │ ├── i_seti_editorconfig.glif │ │ │ ├── i_seti_ejs.glif │ │ │ ├── i_seti_elixir_script.glif │ │ │ ├── i_seti_error.glif │ │ │ ├── i_seti_eslint.glif │ │ │ ├── i_seti_ethereum.glif │ │ │ ├── i_seti_f_sharp.glif │ │ │ ├── i_seti_favicon.glif │ │ │ ├── i_seti_firebase.glif │ │ │ ├── i_seti_firefox.glif │ │ │ ├── i_seti_folder.glif │ │ │ ├── i_seti_font.glif │ │ │ ├── i_seti_git.glif │ │ │ ├── i_seti_github.glif │ │ │ ├── i_seti_gitlab.glif │ │ │ ├── i_seti_go.glif │ │ │ ├── i_seti_go2.glif │ │ │ ├── i_seti_godot.glif │ │ │ ├── i_seti_gradle.glif │ │ │ ├── i_seti_grails.glif │ │ │ ├── i_seti_graphql.glif │ │ │ ├── i_seti_grunt.glif │ │ │ ├── i_seti_gulp.glif │ │ │ ├── i_seti_hacklang.glif │ │ │ ├── i_seti_haml.glif │ │ │ ├── i_seti_happenings.glif │ │ │ ├── i_seti_haskell.glif │ │ │ ├── i_seti_haxe.glif │ │ │ ├── i_seti_heroku.glif │ │ │ ├── i_seti_hex.glif │ │ │ ├── i_seti_html.glif │ │ │ ├── i_seti_ignored.glif │ │ │ ├── i_seti_illustrator.glif │ │ │ ├── i_seti_image.glif │ │ │ ├── i_seti_info.glif │ │ │ ├── i_seti_ionic.glif │ │ │ ├── i_seti_jade.glif │ │ │ ├── i_seti_java.glif │ │ │ ├── i_seti_javascript.glif │ │ │ ├── i_seti_jenkins.glif │ │ │ ├── i_seti_jinja.glif │ │ │ ├── i_seti_json.glif │ │ │ ├── i_seti_julia.glif │ │ │ ├── i_seti_karma.glif │ │ │ ├── i_seti_license.glif │ │ │ ├── i_seti_liquid.glif │ │ │ ├── i_seti_livescript.glif │ │ │ ├── i_seti_lock.glif │ │ │ ├── i_seti_lua.glif │ │ │ ├── i_seti_makefile.glif │ │ │ ├── i_seti_markdown.glif │ │ │ ├── i_seti_maven.glif │ │ │ ├── i_seti_mdo.glif │ │ │ ├── i_seti_mustache.glif │ │ │ ├── i_seti_new_file.glif │ │ │ ├── i_seti_nim.glif │ │ │ ├── i_seti_notebook.glif │ │ │ ├── i_seti_npm.glif │ │ │ ├── i_seti_nunjucks.glif │ │ │ ├── i_seti_ocaml.glif │ │ │ ├── i_seti_odata.glif │ │ │ ├── i_seti_pddl.glif │ │ │ ├── i_seti_pdf.glif │ │ │ ├── i_seti_perl.glif │ │ │ ├── i_seti_photoshop.glif │ │ │ ├── i_seti_php.glif │ │ │ ├── i_seti_pipeline.glif │ │ │ ├── i_seti_plan.glif │ │ │ ├── i_seti_platformio.glif │ │ │ ├── i_seti_powershell.glif │ │ │ ├── i_seti_prisma.glif │ │ │ ├── i_seti_project.glif │ │ │ ├── i_seti_prolog.glif │ │ │ ├── i_seti_pug.glif │ │ │ ├── i_seti_puppet.glif │ │ │ ├── i_seti_python.glif │ │ │ ├── i_seti_r.glif │ │ │ ├── i_seti_rails.glif │ │ │ ├── i_seti_react.glif │ │ │ ├── i_seti_reasonml.glif │ │ │ ├── i_seti_rescript.glif │ │ │ ├── i_seti_rollup.glif │ │ │ ├── i_seti_ruby.glif │ │ │ ├── i_seti_rust.glif │ │ │ ├── i_seti_salesforce.glif │ │ │ ├── i_seti_sass.glif │ │ │ ├── i_seti_sbt.glif │ │ │ ├── i_seti_scala.glif │ │ │ ├── i_seti_search.glif │ │ │ ├── i_seti_settings.glif │ │ │ ├── i_seti_shell.glif │ │ │ ├── i_seti_slim.glif │ │ │ ├── i_seti_smarty.glif │ │ │ ├── i_seti_spring.glif │ │ │ ├── i_seti_stylelint.glif │ │ │ ├── i_seti_stylus.glif │ │ │ ├── i_seti_sublime.glif │ │ │ ├── i_seti_svelte.glif │ │ │ ├── i_seti_svg.glif │ │ │ ├── i_seti_swift.glif │ │ │ ├── i_seti_terraform.glif │ │ │ ├── i_seti_tex.glif │ │ │ ├── i_seti_todo.glif │ │ │ ├── i_seti_tsconfig.glif │ │ │ ├── i_seti_twig.glif │ │ │ ├── i_seti_typescript.glif │ │ │ ├── i_seti_vala.glif │ │ │ ├── i_seti_video.glif │ │ │ ├── i_seti_vue.glif │ │ │ ├── i_seti_wasm.glif │ │ │ ├── i_seti_wat.glif │ │ │ ├── i_seti_webpack.glif │ │ │ ├── i_seti_wgt.glif │ │ │ ├── i_seti_word.glif │ │ │ ├── i_seti_xls.glif │ │ │ ├── i_seti_xml.glif │ │ │ ├── i_seti_yarn.glif │ │ │ ├── i_seti_yml.glif │ │ │ ├── i_seti_zig.glif │ │ │ └── i_seti_zip.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ └── weathericons-regular-webfont.ufo/ │ ├── fontinfo.plist │ ├── glyphs/ │ │ ├── contents.plist │ │ ├── uniF_000.glif │ │ ├── uniF_001.glif │ │ ├── uniF_002.glif │ │ ├── uniF_003.glif │ │ ├── uniF_004.glif │ │ ├── uniF_005.glif │ │ ├── uniF_006.glif │ │ ├── uniF_007.glif │ │ ├── uniF_008.glif │ │ ├── uniF_009.glif │ │ ├── uniF_00A_.glif │ │ ├── uniF_00B_.glif │ │ ├── uniF_00C_.glif │ │ ├── uniF_00D_.glif │ │ ├── uniF_00E_.glif │ │ ├── uniF_010.glif │ │ ├── uniF_011.glif │ │ ├── uniF_012.glif │ │ ├── uniF_013.glif │ │ ├── uniF_014.glif │ │ ├── uniF_015.glif │ │ ├── uniF_016.glif │ │ ├── uniF_017.glif │ │ ├── uniF_018.glif │ │ ├── uniF_019.glif │ │ ├── uniF_01A_.glif │ │ ├── uniF_01B_.glif │ │ ├── uniF_01C_.glif │ │ ├── uniF_01D_.glif │ │ ├── uniF_01E_.glif │ │ ├── uniF_021.glif │ │ ├── uniF_022.glif │ │ ├── uniF_023.glif │ │ ├── uniF_024.glif │ │ ├── uniF_025.glif │ │ ├── uniF_026.glif │ │ ├── uniF_027.glif │ │ ├── uniF_028.glif │ │ ├── uniF_029.glif │ │ ├── uniF_02A_.glif │ │ ├── uniF_02B_.glif │ │ ├── uniF_02C_.glif │ │ ├── uniF_02D_.glif │ │ ├── uniF_02E_.glif │ │ ├── uniF_02F_.glif │ │ ├── uniF_030.glif │ │ ├── uniF_031.glif │ │ ├── uniF_032.glif │ │ ├── uniF_033.glif │ │ ├── uniF_034.glif │ │ ├── uniF_035.glif │ │ ├── uniF_036.glif │ │ ├── uniF_037.glif │ │ ├── uniF_038.glif │ │ ├── uniF_039.glif │ │ ├── uniF_03A_.glif │ │ ├── uniF_03B_.glif │ │ ├── uniF_03C_.glif │ │ ├── uniF_03D_.glif │ │ ├── uniF_03E_.glif │ │ ├── uniF_040.glif │ │ ├── uniF_041.glif │ │ ├── uniF_042.glif │ │ ├── uniF_043.glif │ │ ├── uniF_044.glif │ │ ├── uniF_045.glif │ │ ├── uniF_046.glif │ │ ├── uniF_047.glif │ │ ├── uniF_048.glif │ │ ├── uniF_049.glif │ │ ├── uniF_04A_.glif │ │ ├── uniF_04B_.glif │ │ ├── uniF_04C_.glif │ │ ├── uniF_04D_.glif │ │ ├── uniF_04E_.glif │ │ ├── uniF_050.glif │ │ ├── uniF_051.glif │ │ ├── uniF_052.glif │ │ ├── uniF_053.glif │ │ ├── uniF_054.glif │ │ ├── uniF_055.glif │ │ ├── uniF_056.glif │ │ ├── uniF_057.glif │ │ ├── uniF_058.glif │ │ ├── uniF_059.glif │ │ ├── uniF_05A_.glif │ │ ├── uniF_05B_.glif │ │ ├── uniF_05C_.glif │ │ ├── uniF_05D_.glif │ │ ├── uniF_05E_.glif │ │ ├── uniF_060.glif │ │ ├── uniF_061.glif │ │ ├── uniF_062.glif │ │ ├── uniF_063.glif │ │ ├── uniF_064.glif │ │ ├── uniF_065.glif │ │ ├── uniF_066.glif │ │ ├── uniF_067.glif │ │ ├── uniF_068.glif │ │ ├── uniF_069.glif │ │ ├── uniF_06A_.glif │ │ ├── uniF_06B_.glif │ │ ├── uniF_06C_.glif │ │ ├── uniF_06D_.glif │ │ ├── uniF_06E_.glif │ │ ├── uniF_070.glif │ │ ├── uniF_071.glif │ │ ├── uniF_072.glif │ │ ├── uniF_073.glif │ │ ├── uniF_074.glif │ │ ├── uniF_075.glif │ │ ├── uniF_076.glif │ │ ├── uniF_077.glif │ │ ├── uniF_078.glif │ │ ├── uniF_079.glif │ │ ├── uniF_07A_.glif │ │ ├── uniF_07B_.glif │ │ ├── uniF_07C_.glif │ │ ├── uniF_07D_.glif │ │ ├── uniF_07E_.glif │ │ ├── uniF_080.glif │ │ ├── uniF_081.glif │ │ ├── uniF_082.glif │ │ ├── uniF_083.glif │ │ ├── uniF_084.glif │ │ ├── uniF_085.glif │ │ ├── uniF_086.glif │ │ ├── uniF_087.glif │ │ ├── uniF_088.glif │ │ ├── uniF_089.glif │ │ ├── uniF_08A_.glif │ │ ├── uniF_08B_.glif │ │ ├── uniF_08C_.glif │ │ ├── uniF_08D_.glif │ │ ├── uniF_08E_.glif │ │ ├── uniF_08F_.glif │ │ ├── uniF_090.glif │ │ ├── uniF_091.glif │ │ ├── uniF_092.glif │ │ ├── uniF_093.glif │ │ ├── uniF_094.glif │ │ ├── uniF_095.glif │ │ ├── uniF_096.glif │ │ ├── uniF_097.glif │ │ ├── uniF_098.glif │ │ ├── uniF_099.glif │ │ ├── uniF_09A_.glif │ │ ├── uniF_09B_.glif │ │ ├── uniF_09C_.glif │ │ ├── uniF_09D_.glif │ │ ├── uniF_09E_.glif │ │ ├── uniF_09F_.glif │ │ ├── uniF_0A_0.glif │ │ ├── uniF_0A_1.glif │ │ ├── uniF_0A_2.glif │ │ ├── uniF_0A_3.glif │ │ ├── uniF_0A_4.glif │ │ ├── uniF_0A_5.glif │ │ ├── uniF_0A_6.glif │ │ ├── uniF_0A_7.glif │ │ ├── uniF_0A_8.glif │ │ ├── uniF_0A_9.glif │ │ ├── uniF_0A_A_.glif │ │ ├── uniF_0A_B_.glif │ │ ├── uniF_0A_C_.glif │ │ ├── uniF_0A_D_.glif │ │ ├── uniF_0A_E_.glif │ │ ├── uniF_0A_F_.glif │ │ ├── uniF_0B_0.glif │ │ ├── uniF_0B_1.glif │ │ ├── uniF_0B_2.glif │ │ ├── uniF_0B_3.glif │ │ ├── uniF_0B_4.glif │ │ ├── uniF_0B_5.glif │ │ ├── uniF_0B_6.glif │ │ ├── uniF_0B_7.glif │ │ ├── uniF_0B_8.glif │ │ ├── uniF_0B_9.glif │ │ ├── uniF_0B_A_.glif │ │ ├── uniF_0B_B_.glif │ │ ├── uniF_0B_C_.glif │ │ ├── uniF_0B_D_.glif │ │ ├── uniF_0B_E_.glif │ │ ├── uniF_0B_F_.glif │ │ ├── uniF_0C_0.glif │ │ ├── uniF_0C_1.glif │ │ ├── uniF_0C_2.glif │ │ ├── uniF_0C_3.glif │ │ ├── uniF_0C_4.glif │ │ ├── uniF_0C_5.glif │ │ ├── uniF_0C_6.glif │ │ ├── uniF_0C_7.glif │ │ ├── uniF_0C_8.glif │ │ ├── uniF_0C_9.glif │ │ ├── uniF_0C_A_.glif │ │ ├── uniF_0C_B_.glif │ │ ├── uniF_0C_C_.glif │ │ ├── uniF_0C_D_.glif │ │ ├── uniF_0C_E_.glif │ │ ├── uniF_0C_F_.glif │ │ ├── uniF_0D_0.glif │ │ ├── uniF_0D_1.glif │ │ ├── uniF_0D_2.glif │ │ ├── uniF_0D_3.glif │ │ ├── uniF_0D_4.glif │ │ ├── uniF_0D_5.glif │ │ ├── uniF_0D_6.glif │ │ ├── uniF_0D_7.glif │ │ ├── uniF_0D_8.glif │ │ ├── uniF_0D_9.glif │ │ ├── uniF_0D_A_.glif │ │ ├── uniF_0D_B_.glif │ │ ├── uniF_0D_C_.glif │ │ ├── uniF_0D_D_.glif │ │ ├── uniF_0D_E_.glif │ │ ├── uniF_0D_F_.glif │ │ ├── uniF_0E_0.glif │ │ ├── uniF_0E_1.glif │ │ ├── uniF_0E_2.glif │ │ ├── uniF_0E_3.glif │ │ ├── uniF_0E_4.glif │ │ ├── uniF_0E_5.glif │ │ ├── uniF_0E_6.glif │ │ ├── uniF_0E_7.glif │ │ ├── uniF_0E_8.glif │ │ ├── uniF_0E_9.glif │ │ ├── uniF_0E_A_.glif │ │ └── uniF_0E_B_.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist └── stat.yaml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .azure-pipelines.yml ================================================ trigger: none pr: branches: include: - main parameters: - name: static displayName: Generate Static Fonts type: boolean default: true variables: - name: runCodesignValidationInjectionBG value: false jobs: - job: build displayName: Build Font pool: vmImage: macOS-latest steps: - task: UsePythonVersion@0 displayName: 'Use Python 3.8' inputs: versionSpec: '3.8' - bash: | brew install ttfautohint pip install -r requirements.txt ufolint displayName: 'Install build dependencies' - bash: | ufolint sources/*.ufo displayName: 'Lint sources' - ${{ if eq(parameters.static, true) }}: - bash: | python ./build.py -S -W displayName: 'Build variable + static fonts' - ${{ if eq(parameters.static, false) }}: - bash: | python ./build.py -W displayName: 'Build variable fonts only' - bash: | mkdir -p out cd build zip -r ../out/CascadiaCode.zip ttf otf woff2 displayName: 'Archive all fonts' - task: PublishPipelineArtifact@1 displayName: 'Publish archive' inputs: targetPath: out artifact: 'archive' ================================================ FILE: .github/ISSUE_TEMPLATE/Bug_Report.yml ================================================ name: "Bug report 🐛" description: Report rendering issues or unexpected behavior body: - type: markdown attributes: value: | Please make sure to [search for existing issues](https://github.com/microsoft/cascadia-code/issues) before filing a new one! - type: input id: version attributes: label: Cascadia family version placeholder: "2102.04, 2105.25" validations: required: true - type: dropdown id: variant attributes: label: Cascadia family variant(s) multiple: true options: - Cascadia Code (the version with ligatures) - Cascadia Mono (the version without ligatures) validations: required: true - type: dropdown id: format attributes: label: Font file format(s) multiple: true options: - Windows Terminal included version (TTF (variable)) - .ttf (variable) - .ttf (static) - .otf (static) - .woff2 (variable) - .woff2 (static) - I don't know validations: required: true - type: input id: platform attributes: label: Platform placeholder: "Windows; Linux (freetype 2.10.4); macOS 12.301" validations: required: true - type: textarea id: software attributes: label: Other Software description: If you're reporting a bug about Cascadia's interaction with other software, what software? What versions? placeholder: | Visual Studio Code Visual Studio 2019 Update 5 Windows Terminal 1.9 validations: required: false - type: textarea id: what-happened attributes: label: What happened? placeholder: Tell us what's happening. Include some screenshots! Does it happen only at a certain font size or a certain pixel density? validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/Documentation_Issue.md ================================================ --- name: Documentation Issue 📚 about: Report issues in our documentation title: "Documentation Issue" labels: Issue-Docs assignees: '' --- ================================================ FILE: .github/ISSUE_TEMPLATE/Feature_Request.md ================================================ --- name: Feature Request/Idea 🚀 about: Suggest a new feature or improvement (this does not mean you have to implement it) title: "Feature Request" labels: Issue-Feature assignees: '' --- # Description of the new feature/enhancement (with images if possible) # Proposed technical implementation details (optional) ================================================ FILE: .github/PULL_REQUEST_TEMPLATE.md ================================================ ## Summary of the Pull Request ## References ## PR Checklist * [ ] Closes #xxx * [ ] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA * [ ] Requires FONTLOG.txt to be updated * [ ] Requires [/images/cascadia-code.png](/microsoft/cascadia-code/blob/main/images/cascadia-code.png) and/or [/images/cascadia-code-characters.png](/microsoft/cascadia-code/blob/main/images/cascadia-code-characters.png) to be updated * [ ] I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. Issue number where discussion took place: #xxx ## Detailed Description of the Pull Request / Additional comments ## Before (if applicable) and After Images of the Character(s) ## Validation Steps Performed ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files *.suo *.user *.userosscache *.sln.docstates .DS_Store # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # Visual Studio 2017 auto generated files Generated\ Files/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUNIT *.VisualState.xml TestResult.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # Benchmark Results BenchmarkDotNet.Artifacts/ # .NET Core project.lock.json project.fragment.lock.json artifacts/ **/Properties/launchSettings.json # StyleCop StyleCopReport.xml # Files built by Visual Studio *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.iobj *.pch *.pdb *.ipdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # Visual Studio Trace Files *.e2e # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # AxoCover is a Code Coverage Tool .axoCover/* !.axoCover/settings.json # Visual Studio code coverage results *.coverage *.coveragexml # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # Note: Comment the next line if you want to checkin your web deploy settings, # but database connection strings (with potential passwords) will be unencrypted *.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # The packages folder can be ignored because of Package Restore **/[Pp]ackages/* # except build/, which is used as an MSBuild target. !**/[Pp]ackages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/[Pp]ackages/repositories.config # NuGet v3's project.json files produces more ignorable files *.nuget.props *.nuget.targets # Microsoft Azure Build Output csx/ *.build.csdef # Microsoft Azure Emulator ecf/ rcf/ # Windows Store app package directories and files AppPackages/ BundleArtifacts/ Package.StoreAssociation.xml _pkginfo.txt *.appx # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.pfx *.publishsettings orleans.codegen.cs # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm ServiceFabricBackup/ *.rptproj.bak # SQL Server files *.mdf *.ldf *.ndf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings *.rptproj.rsuser # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat node_modules/ # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) *.vbw # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # JetBrains Rider .idea/ *.sln.iml # CodeRush .cr/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc # Cake - Uncomment if you are using it # tools/** # !tools/packages.config # Tabs Studio *.tss # Telerik's JustMock configuration file *.jmconfig # BizTalk build output *.btp.cs *.btm.cs *.odx.cs *.xsd.cs # OpenCover UI analysis results OpenCover/ # Azure Stream Analytics local run output ASALocalRun/ # MSBuild Binary and Structured Log *.binlog # NVidia Nsight GPU debugger configuration file *.nvuser # MFractors (Xamarin productivity tool) working folder .mfractor/ # other files build/ testground/ newVTT.xml converter.py salishan/ fixTSI1.py venv/ .vscode/settings.json ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][conduct-code]. For more information see the [Code of Conduct FAQ][conduct-FAQ] or contact [opencode@microsoft.com][conduct-email] with any additional questions or comments. [conduct-code]: https://opensource.microsoft.com/codeofconduct/ [conduct-FAQ]: https://opensource.microsoft.com/codeofconduct/faq/ [conduct-email]: mailto:opencode@microsoft.com ================================================ FILE: FONTLOG.txt ================================================ FONTLOG for Cascadia Code =================================== This file provides detailed information on the Cascadia Code font. This information should be distributed along with the Cascadia Code font and any derivative works. Basic Font Information ----------------------------------- Cascadia Code is a monospaced font shipped by Microsoft. It includes programming ligatures and is intended for use in terminal applications as well as text editors. Contribution Information ----------------------------------- Documentation and contribution guidelines can be found at: https://github.com/microsoft/cascadia-code ChangeLog ----------------------------------- 09-25-2019 (Aaron Bell) Bug Fixes and Improvements 09-18-2019 (Aaron Bell) Cascadia Code Version 1909.16 - Initial release 10-04-2019 (Aaron Bell) Cascadia Code Version 1910.04 - Addition of Latin-1 characters - Addition of box drawing glyphs 11-20-2019 (Aaron Bell) Cascadia Code Version 1911.20 - Cyrillic, Greek, Vietnamese, and many other symbols added - Font converted to UFO with a build workflow - font rehinted - many other fixes! 04-29-2020 (Aaron Bell) April bug fixes - Many small bug fixes from the last few months 05-05-2020 Font vertical metrics locked 05-15-2020 (Aaron Bell, Dustin Howett) [Version 2005.15] Fixed WinDescent value to improve line spacing 06-29-2020 (Aaron Bell) Variable font conversion Converted Cascadia Code to a Variable font with a weight axis 06-29-2020 (Aaron Bell) [Version 2007.01] Reworked Cascadia Code to be a variable font with 6 named variations ranging from ExtraLight to Bold. Split the long equals ligature (==) for earier reading Removed the hexadeciaml 'x' alternate Corrected malformed IJacute dioacritics Introduced a compatibility layout for PowerLine glyphs that will be used in GDI 08-25-2020 (Aaron Bell) [Version 2008.25] Started generating static TTFs and hinting them with ttfautohint Aligned the powerline glyphs to the font metrics exactly Realigned the box drawing glyphs to match the letters Added anchors to all alphabetic characters (and brevecomb-cy) added fi/fl ligatures (decomposed!) Fixed the weight of horncomb in bold 9-14-2020 1) Added support for Salishan language groups 2) Remastered mark positioning for glyphs with 2 diacritics (needed for Salishan) 3) Rebuild Build Script to simplify code 4) Fixed minor other hinting issues 5) Fixed RVRN substitutions for heavy weight 9-21-2020 1) Correcting mark positioning for salishan 5-25-2021 CASCADIA CODE ITALIC 6-17-2021 CASCADIA CODE ARABIC & HEBREW ITALIC V2 01-19-2024 (Philippe Majerus) Checkerboard, more quadrants, and sextants. - Added some new checkerboard characters U+2427 - U+2429, U+1FB95, U+1FB96 (Symbols for Legacy Computing). - Added new centered Quadrants U+1FBE4 - U+1FBE7 (Symbols for Legacy Computing). - Added Triangular Quadrant characters U+1FB68 - U+1FB6F, U+1FB9A, U+1FB9B (Symbols for Legacy Computing). - Added Circular Quadrant characters U+1FBE8 - U+1FBEF (Symbols for Legacy Computing). - Added Sextant characters U+1FB00 - U+1FB3B (Symbols for Legacy Computing). 04-08-2024 (Aaron Bell) Nerd Fonts - Implemented Nerd Fonts, current as of 2024-04-08, as an optional build feature for the entire Cascadia family. 04-10-2024 (Philippe Majerus) Diagonals, octants, sedecimants & eights, separated quadrants & sextants, segmented digits, and large type pieces. - Added diagonals U+1FB3C - U+1FB67 (Symbols for Legacy Computing). - Added octants U+1CD00 - U+1CDE5 (Symbols for Legacy Computing). - Added sedecimants U+1CE90 - U+1CEAF (Symbols for Legacy Computing). - Added eights U+1FB70 - U+1FB80, U+1FB82 - U+1FB8B (Symbols for Legacy Computing). - Added misc. blocks U+1FB97, U+1FBCE, U+1FBCF (Symbols for Legacy Computing). - Added separated quadrants U+1CC21 - U+1CC2F (Symbols for Legacy Computing). - Added separated sextants U+1CE51 - U+1CE8F (Symbols for Legacy Computing). - Added segmented digits U+1CCF0 - U+1CCF9 (Symbols for Legacy Computing). - Added large type pieces U+1CE1A - U+1CE50 (Symbols for Legacy Computing). 04-23-2024 (Dustin L. Howett) - Minted version 2404.23 07-24-2024 (Aaron Bell, Dustin L. Howett) - Fixed hinting issue for Arabic glyphs - Minted version 2407.24 Acknowledgements ----------------------------------- If you make modifications, be sure to add your name (N), email (E), web-address (if you have one) (W), and description (D). This list is in alphabetical order. N: Aaron Bell E: aaron@sajatypeworks.com W: http://sajatypeworks.com D: Original font designer N: Philippe Majerus W: http://www.phm.lu D: Legacy computing, mosaic blocks, large type pieces ================================================ FILE: LICENSE ================================================ Copyright (c) 2019 - Present, Microsoft Corporation, with Reserved Font Name Cascadia Code. 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. ================================================ FILE: OFL-FAQ.txt ================================================ OFL FAQ - Frequently Asked Questions about the SIL Open Font License (OFL) Version 1.1-update5 - April 2017 The OFL FAQ is copyright (c) 2005-2017 SIL International. (See http://scripts.sil.org/OFL for updates) CONTENTS OF THIS FAQ 1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL 2 USING OFL FONTS FOR WEB PAGES AND ONLINE WEB FONT SERVICES 3 MODIFYING OFL-LICENSED FONTS 4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL 5 CHOOSING RESERVED FONT NAMES 6 ABOUT THE FONTLOG 7 MAKING CONTRIBUTIONS TO OFL PROJECTS 8 ABOUT THE LICENSE ITSELF 9 ABOUT SIL INTERNATIONAL APPENDIX A - FONTLOG EXAMPLE 1 USING AND DISTRIBUTING FONTS LICENSED UNDER THE OFL 1.1 Can I use the fonts for a book or other print publication, to create logos or other graphics or even to manufacture objects based on their outlines? Yes. You are very welcome to do so. Authors of fonts released under the OFL allow you to use their font software as such for any kind of design work. No additional license or permission is required, unlike with some other licenses. Some examples of these uses are: logos, posters, business cards, stationery, video titling, signage, t-shirts, personalised fabric, 3D-printed/laser-cut shapes, sculptures, rubber stamps, cookie cutters and lead type. 1.1.1 Does that restrict the license or distribution of that artwork? No. You remain the author and copyright holder of that newly derived graphic or object. You are simply using an open font in the design process. It is only when you redistribute, bundle or modify the font itself that other conditions of the license have to be respected (see below for more details). 1.1.2 Is any kind of acknowledgement required? No. Font authors may appreciate being mentioned in your artwork's acknowledgements alongside the name of the font, possibly with a link to their website, but that is not required. 1.2 Can the fonts be included with Free/Libre and Open Source Software collections such as GNU/Linux and BSD distributions and repositories? Yes! Fonts licensed under the OFL can be freely included alongside other software under FLOSS (Free/Libre and Open Source Software) licenses. Since fonts are typically aggregated with, not merged into, existing software, there is little need to be concerned about incompatibility with existing software licenses. You may also repackage the fonts and the accompanying components in a .rpm or .deb package (or other similar package formats or installers) and include them in distribution CD/DVDs and online repositories. (Also see section 5.9 about rebuilding from source.) 1.3 I want to distribute the fonts with my program. Does this mean my program also has to be Free/Libre and Open Source Software? No. Only the portions based on the Font Software are required to be released under the OFL. The intent of the license is to allow aggregation or bundling with software under restricted licensing as well. 1.4 Can I sell a software package that includes these fonts? Yes, you can do this with both the Original Version and a Modified Version of the fonts. Examples of bundling made possible by the OFL would include: word processors, design and publishing applications, training and educational software, games and entertainment software, mobile device applications, etc. 1.5 Can I include the fonts on a CD of freeware or commercial fonts? Yes, as long some other font or software is also on the disk, so the OFL font is not sold by itself. 1.6 Why won't the OFL let me sell the fonts alone? The intent is to keep people from making money by simply redistributing the fonts. The only people who ought to profit directly from the fonts should be the original authors, and those authors have kindly given up potential direct income to distribute their fonts under the OFL. Please honour and respect their contribution! 1.7 What about sharing OFL fonts with friends on a CD, DVD or USB stick? You are very welcome to share open fonts with friends, family and colleagues through removable media. Just remember to include the full font package, including any copyright notices and licensing information as available in OFL.txt. In the case where you sell the font, it has to come bundled with software. 1.8 Can I host the fonts on a web site for others to use? Yes, as long as you make the full font package available. In most cases it may be best to point users to the main site that distributes the Original Version so they always get the most recent stable and complete version. See also discussion of web fonts in Section 2. 1.9 Can I host the fonts on a server for use over our internal network? Yes. If the fonts are transferred from the server to the client computer by means that allow them to be used even if the computer is no longer attached to the network, the full package (copyright notices, licensing information, etc.) should be included. 1.10 Does the full OFL license text always need to accompany the font? The only situation in which an OFL font can be distributed without the text of the OFL (either in a separate file or in font metadata), is when a font is embedded in a document or bundled within a program. In the case of metadata included within a font, it is legally sufficient to include only a link to the text of the OFL on http://scripts.sil.org/OFL, but we strongly recommend against this. Most modern font formats include metadata fields that will accept the full OFL text, and full inclusion increases the likelihood that users will understand and properly apply the license. 1.11 What do you mean by 'embedding'? How does that differ from other means of distribution? By 'embedding' we mean inclusion of the font in a document or file in a way that makes extraction (and redistribution) difficult or clearly discouraged. In many cases the names of embedded fonts might also not be obvious to those reading the document, the font data format might be altered, and only a subset of the font - only the glyphs required for the text - might be included. Any other means of delivering a font to another person is considered 'distribution', and needs to be accompanied by any copyright notices and licensing information available in OFL.txt. 1.12 So can I embed OFL fonts in my document? Yes, either in full or a subset. The restrictions regarding font modification and redistribution do not apply, as the font is not intended for use outside the document. 1.13 Does embedding alter the license of the document itself? No. Referencing or embedding an OFL font in any document does not change the license of the document itself. The requirement for fonts to remain under the OFL does not apply to any document created using the fonts and their derivatives. Similarly, creating any kind of graphic using a font under OFL does not make the resulting artwork subject to the OFL. 1.14 If OFL fonts are extracted from a document in which they are embedded (such as a PDF file), what can be done with them? Is this a risk to author(s)? The few utilities that can extract fonts embedded in a PDF will typically output limited amounts of outlines - not a complete font. To create a working font from this method is much more difficult and time consuming than finding the source of the original OFL font. So there is little chance that an OFL font would be extracted and redistributed inappropriately through this method. Even so, copyright laws address any misrepresentation of authorship. All Font Software released under the OFL and marked as such by the author(s) is intended to remain under this license regardless of the distribution method, and cannot be redistributed under any other license. We strongly discourage any font extraction - we recommend directly using the font sources instead - but if you extract font outlines from a document, please be considerate: respect the work of the author(s) and the licensing model. 1.15 What about distributing fonts with a document? Within a compressed folder structure? Is it distribution, bundling or embedding? Certain document formats may allow the inclusion of an unmodified font within their file structure which may consist of a compressed folder containing the various resources forming the document (such as pictures and thumbnails). Including fonts within such a structure is understood as being different from embedding but rather similar to bundling (or mere aggregation) which the license explicitly allows. In this case the font is conveyed unchanged whereas embedding a font usually transforms it from the original format. The OFL does not allow anyone to extract the font from such a structure to then redistribute it under another license. The explicit permission to redistribute and embed does not cancel the requirement for the Font Software to remain under the license chosen by its author(s). Even if the font travels inside the document as one of its assets, it should not lose its authorship information and licensing. 1.16 What about ebooks shipping with open fonts? The requirements differ depending on whether the fonts are linked, embedded or distributed (bundled or aggregated). Some ebook formats use web technologies to do font linking via @font-face, others are designed for font embedding, some use fonts distributed with the document or reading software, and a few rely solely on the fonts already present on the target system. The license requirements depend on the type of inclusion as discussed in 1.15. 1.17 Can Font Software released under the OFL be subject to URL-based access restrictions methods or DRM (Digital Rights Management) mechanisms? Yes, but these issues are out-of-scope for the OFL. The license itself neither encourages their use nor prohibits them since such mechanisms are not implemented in the components of the Font Software but through external software. Such restrictions are put in place for many different purposes corresponding to various usage scenarios. One common example is to limit potentially dangerous cross-site scripting attacks. However, in the spirit of libre/open fonts and unrestricted writing systems, we strongly encourage open sharing and reuse of OFL fonts, and the establishment of an environment where such restrictions are unnecessary. Note that whether you wish to use such mechanisms or you prefer not to, you must still abide by the rules set forth by the OFL when using fonts released by their authors under this license. Derivative fonts must be licensed under the OFL, even if they are part of a service for which you charge fees and/or for which access to source code is restricted. You may not sell the fonts on their own - they must be part of a larger software package, bundle or subscription plan. For example, even if the OFL font is distributed in a software package or via an online service using a DRM mechanism, the user would still have the right to extract that font, use, study, modify and redistribute it under the OFL. 1.18 I've come across a font released under the OFL. How can I easily get more information about the Original Version? How can I know where it stands compared to the Original Version or other Modified Versions? Consult the copyright statement(s) in the license for ways to contact the original authors. Consult the FONTLOG (see section 6 for more details and examples) for information on how the font differs from the Original Version, and get in touch with the various contributors via the information in the acknowledgement section. Please consider using the Original Versions of the fonts whenever possible. 1.19 What do you mean in condition 4 of the OFL's permissions and conditions? Can you provide examples of abusive promotion / endorsement / advertisement vs. normal acknowledgement? The intent is that the goodwill and reputation of the author(s) should not be used in a way that makes it sound like the original author(s) endorse or approve of a specific Modified Version or software bundle. For example, it would not be right to advertise a word processor by naming the author(s) in a listing of software features, or to promote a Modified Version on a web site by saying "designed by ...". However, it would be appropriate to acknowledge the author(s) if your software package has a list of people who deserve thanks. We realize that this can seem to be a grey area, but the standard used to judge an acknowledgement is that if the acknowledgement benefits the author(s) it is allowed, but if it primarily benefits other parties, or could reflect poorly on the author(s), then it is not. 1.20 I'm writing a small app for mobile platforms, do I need to include the whole package? If you bundle a font under the OFL with your mobile app you must comply with the terms of the license. At a minimum you must include the copyright statement, the license notice and the license text. A mention of this information in your About box or Changelog, with a link to where the font package is from, is good practice, and the extra space needed to carry these items is very small. You do not, however, need to include the full contents of the font package - only the fonts you use and the copyright and license that apply to them. For example, if you only use the regular weight in your app, you do not need to include the italic and bold versions. 1.21 What about including OFL fonts by default in my firmware or dedicated operating system? Many such systems are restricted and turned into appliances so that users cannot study or modify them. Using open fonts to increase quality and language coverage is a great idea, but you need to be aware that if there is a way for users to extract fonts you cannot legally prevent them from doing that. The fonts themselves, including any changes you make to them, must be distributed under the OFL even if your firmware has a more restrictive license. If you do transform the fonts and change their formats when you include them in your firmware you must respect any names reserved by the font authors via the RFN mechanism and pick your own font name. Alternatively if you directly add a font under the OFL to the font folder of your firmware without modifying or optimizing it you are simply bundling the font like with any other software collection, and do not need to make any further changes. 1.22 Can I make and publish CMS themes or templates that use OFL fonts? Can I include the fonts themselves in the themes or templates? Can I sell the whole package? Yes, you are very welcome to integrate open fonts into themes and templates for your preferred CMS and make them more widely available. Remember that you can only sell the fonts and your CMS add-on as part of a software bundle. (See 1.4 for details and examples about selling bundles). 1.23 Can OFL fonts be included in services that deliver fonts to the desktop from remote repositories? Even if they contain both OFL and non-OFL fonts? Yes. Some foundries have set up services to deliver fonts to subscribers directly to desktops from their online repositories; similarly, plugins are available to preview and use fonts directly in your design tool or publishing suite. These services may mix open and restricted fonts in the same channel, however they should make a clear distinction between them to users. These services should also not hinder users (such as through DRM or obfuscation mechanisms) from extracting and using the OFL fonts in other environments, or continuing to use OFL fonts after subscription terms have ended, as those uses are specifically allowed by the OFL. 1.24 Can services that provide or distribute OFL fonts restrict my use of them? No. The terms of use of such services cannot replace or restrict the terms of the OFL, as that would be the same as distributing the fonts under a different license, which is not allowed. You are still entitled to use, modify and redistribute them as the original authors have intended outside of the sole control of that particular distribution channel. Note, however, that the fonts provided by these services may differ from the Original Versions. 2 USING OFL FONTS FOR WEBPAGES AND ONLINE WEB FONT SERVICES NOTE: This section often refers to a separate paper on 'Web Fonts & RFNs'. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs 2.1 Can I make webpages using these fonts? Yes! Go ahead! Using CSS (Cascading Style Sheets) is recommended. Your three best options are: - referring directly in your stylesheet to open fonts which may be available on the user's system - providing links to download the full package of the font - either from your own website or from elsewhere - so users can install it themselves - using @font-face to distribute the font directly to browsers. This is recommended and explicitly allowed by the licensing model because it is distribution. The font file itself is distributed with other components of the webpage. It is not embedded in the webpage but referenced through a web address which will cause the browser to retrieve and use the corresponding font to render the webpage (see 1.11 and 1.15 for details related to embedding fonts into documents). As you take advantage of the @font-face cross-platform standard, be aware that web fonts are often tuned for a web environment and not intended for installation and use outside a browser. The reasons in favour of using web fonts are to allow design of dynamic text elements instead of static graphics, to make it easier for content to be localized and translated, indexed and searched, and all this with cross-platform open standards without depending on restricted extensions or plugins. You should check the CSS cascade (the order in which fonts are being called or delivered to your users) when testing. 2.2 Can I make and use WOFF (Web Open Font Format) versions of OFL fonts? Yes, but you need to be careful. A change in font format normally is considered modification, and Reserved Font Names (RFNs) cannot be used. Because of the design of the WOFF format, however, it is possible to create a WOFF version that is not considered modification, and so would not require a name change. You are allowed to create, use and distribute a WOFF version of an OFL font without changing the font name, but only if: - the original font data remains unchanged except for WOFF compression, and - WOFF-specific metadata is either omitted altogether or present and includes, unaltered, the contents of all equivalent metadata in the original font. If the original font data or metadata is changed, or the WOFF-specific metadata is incomplete, the font must be considered a Modified Version, the OFL restrictions would apply and the name of the font must be changed: any RFNs cannot be used and copyright notices and licensing information must be included and cannot be deleted or modified. You must come up with a unique name - we recommend one corresponding to your domain or your particular web application. Be aware that only the original author(s) can use RFNs. This is to prevent collisions between a derivative tuned to your audience and the original upstream version and so to reduce confusion. Please note that most WOFF conversion tools and online services do not meet the two requirements listed above, and so their output must be considered a Modified Version. So be very careful and check to be sure that the tool or service you're using is compressing unchanged data and completely and accurately reflecting the original font metadata. 2.3 What about other web font formats such as EOT/EOTLite/CWT/etc.? In most cases these formats alter the original font data more than WOFF, and do not completely support appropriate metadata, so their use must be considered modification and RFNs may not be used. However, there may be certain formats or usage scenarios that may allow the use of RFNs. See http://scripts.sil.org/OFL_web_fonts_and_RFNs 2.4 Can I make OFL fonts available through web font online services? Yes, you are welcome to include OFL fonts in online web font services as long as you properly meet all the conditions of the license. The origin and open status of the font should be clear among the other fonts you are hosting. Authorship, copyright notices and license information must be sufficiently visible to your users or subscribers so they know where the font comes from and the rights granted by the author(s). Make sure the font file contains the needed copyright notice(s) and licensing information in its metadata. Please double-check the accuracy of every field to prevent contradictory information. Other font formats, including EOT/EOTLite/CWT and superior alternatives like WOFF, already provide fields for this information. Remember that if you modify the font within your library or convert it to another format for any reason the OFL restrictions apply and you need to change the names accordingly. Please respect the author's wishes as expressed in the OFL and do not misrepresent original designers and their work. Don't lump quality open fonts together with dubious freeware or public domain fonts. Consider how you can best work with the original designers and foundries, support their efforts and generate goodwill that will benefit your service. (See 1.17 for details related to URL-based access restrictions methods or DRM mechanisms). 2.5 Some web font formats and services provide ways of "optimizing" the font for a particular website or web application; is that allowed? Yes, it is permitted, but remember that these optimized versions are Modified Versions and so must follow OFL requirements like appropriate renaming. Also you need to bear in mind the other important parameters beyond compression, speed and responsiveness: you need to consider the audience of your particular website or web application, as choosing some optimization parameters may turn out to be less than ideal for them. Subsetting by removing certain glyphs or features may seriously limit functionality of the font in various languages that your users expect. It may also introduce degradation of quality in the rendering or specific bugs on the various target platforms compared to the original font from upstream. In other words, remember that one person's optimized font may be another person's missing feature. Various advanced typographic features (OpenType, Graphite or AAT) are also available through CSS and may provide the desired effects without the need to modify the font. 2.6 Is subsetting a web font considered modification? Yes. Removing any parts of the font when delivering a web font to a browser, including unused glyphs and smart font code, is considered modification. This is permitted by the OFL but would not normally allow the use of RFNs. Some newer subsetting technologies may be able to subset in a way that allows users to effectively have access to the complete font, including smart font behaviour. See 2.8 and http://scripts.sil.org/OFL_web_fonts_and_RFNs 2.7 Are there any situations in which a modified web font could use RFNs? Yes. If a web font is optimized only in ways that preserve Functional Equivalence (see 2.8), then it may use RFNs, as it reasonably represents the Original Version and respects the intentions of the author(s) and the main purposes of the RFN mechanism (avoids collisions, protects authors, minimizes support, encourages derivatives). However this is technically very difficult and often impractical, so a much better scenario is for the web font service or provider to sign a separate agreement with the author(s) that allows the use of RFNs for Modified Versions. 2.8 How do you know if an optimization to a web font preserves Functional Equivalence? Functional Equivalence is described in full in the 'Web fonts and RFNs' paper at http://scripts.sil.org/OFL_web_fonts_and_RFNs, in general, an optimized font is deemed to be Functionally Equivalent (FE) to the Original Version if it: - Supports the same full character inventory. If a character can be properly displayed using the Original Version, then that same character, encoded correctly on a web page, will display properly. - Provides the same smart font behavior. Any dynamic shaping behavior that works with the Original Version should work when optimized, unless the browser or environment does not support it. There does not need to be guaranteed support in the client, but there should be no forced degradation of smart font or shaping behavior, such as the removal or obfuscation of OpenType, Graphite or AAT tables. - Presents text with no obvious degradation in visual quality. The lettershapes should be equally (or more) readable, within limits of the rendering platform. - Preserves original author, project and license metadata. At a minimum, this should include: Copyright and authorship; The license as stated in the Original Version, whether that is the full text of the OFL or a link to the web version; Any RFN declarations; Information already present in the font or documentation that points back to the Original Version, such as a link to the project or the author's website. If an optimized font meets these requirements, and so is considered to be FE, then it's very likely that the original author would feel that the optimized font is a good and reasonable equivalent. If it falls short of any of these requirements, the optimized font does not reasonably represent the Original Version, and so should be considered to be a Modified Version. Like other Modified Versions, it would not be allowed to use any RFNs and you simply need to pick your own font name. 2.9 Isn't use of web fonts another form of embedding? No. Unlike embedded fonts in a PDF, web fonts are not an integrated part of the document itself. They are not specific to a single document and are often applied to thousands of documents around the world. The font data is not stored alongside the document data and often originates from a different location. The ease by which the web fonts used by a document may be identified and downloaded for desktop use demonstrates that they are philosophically and technically separate from the web pages that specify them. See http://scripts.sil.org/OFL_web_fonts_and_RFNs 2.10 So would it be better to not use RFNs at all if you want your font to be distributed by a web fonts service? No. Although the OFL does not require authors to use RFNs, the RFN mechanism is an important part of the OFL model and completely compatible with web font services. If that web font service modifies the fonts, then the best solution is to sign a separate agreement for the use of any RFNs. It is perfectly valid for an author to not declare any RFNs, but before they do so they need to fully understand the benefits they are giving up, and the overall negative effect of allowing many different versions bearing the same name to be widely distributed. As a result, we don't generally recommend it. 2.11 What should an agreement for the use of RFNs say? Are there any examples? There is no prescribed format for this agreement, as legal systems vary, and no recommended examples. Authors may wish to add specific clauses to further restrict use, require author review of Modified Versions, establish user support mechanisms or provide terms for ending the agreement. Such agreements are usually not public, and apply only to the main parties. However, it would be very beneficial for web font services to clearly state when they have established such agreements, so that the public understands clearly that their service is operating appropriately. See the separate paper on 'Web Fonts & RFNs' for in-depth discussion of issues related to the use of RFNs for web fonts. This is available at http://scripts.sil.org/OFL_web_fonts_and_RFNs 3 MODIFYING OFL-LICENSED FONTS 3.1 Can I change the fonts? Are there any limitations to what things I can and cannot change? You are allowed to change anything, as long as such changes do not violate the terms of the license. In other words, you are not allowed to remove the copyright statement(s) from the font, but you could put additional information into it that covers your contribution. See the placeholders in the OFL header template for recommendations on where to add your own statements. (Remember that, when authors have reserved names via the RFN mechanism, you need to change the internal names of the font to your own font name when making your modified version even if it is just a small change.) 3.2 I have a font that needs a few extra glyphs - can I take them from an OFL licensed font and copy them into mine? Yes, but if you distribute that font to others it must be under the OFL, and include the information mentioned in condition 2 of the license. 3.3 Can I charge people for my additional work? In other words, if I add a bunch of special glyphs or OpenType/Graphite/AAT code, can I sell the enhanced font? Not by itself. Derivative fonts must be released under the OFL and cannot be sold by themselves. It is permitted, however, to include them in a larger software package (such as text editors, office suites or operating systems), even if the larger package is sold. In that case, you are strongly encouraged, but not required, to also make that derived font easily and freely available outside of the larger package. 3.4 Can I pay someone to enhance the fonts for my use and distribution? Yes. This is a good way to fund the further development of the fonts. Keep in mind, however, that if the font is distributed to others it must be under the OFL. You won't be able to recover your investment by exclusively selling the font, but you will be making a valuable contribution to the community. Please remember how you have benefited from the contributions of others. 3.5 I need to make substantial revisions to the font to make it work with my program. It will be a lot of work, and a big investment, and I want to be sure that it can only be distributed with my program. Can I restrict its use? No. If you redistribute a Modified Version of the font it must be under the OFL. You may not restrict it in any way beyond what the OFL permits and requires. This is intended to ensure that all released improvements to the fonts become available to everyone. But you will likely get an edge over competitors by being the first to distribute a bundle with the enhancements. Again, please remember how you have benefited from the contributions of others. 3.6 Do I have to make any derivative fonts (including extended source files, build scripts, documentation, etc.) publicly available? No, but please consider sharing your improvements with others. You may find that you receive in return more than what you gave. 3.7 If a trademark is claimed in the OFL font, does that trademark need to remain in modified fonts? Yes. Any trademark notices must remain in any derivative fonts to respect trademark laws, but you may add any additional trademarks you claim, officially registered or not. For example if an OFL font called "Foo" contains a notice that "Foo is a trademark of Acme", then if you rename the font to "Bar" when creating a Modified Version, the new trademark notice could say "Foo is a trademark of Acme Inc. - Bar is a trademark of Roadrunner Technologies Ltd.". Trademarks work alongside the OFL and are not subject to the terms of the licensing agreement. The OFL does not grant any rights under trademark law. Bear in mind that trademark law varies from country to country and that there are no international trademark conventions as there are for copyright. You may need to significantly invest in registering and defending a trademark for it to remain valid in the countries you are interested in. This may be costly for an individual independent designer. 3.8 If I commit changes to a font (or publish a branch in a DVCS) as part of a public open source software project, do I have to change the internal font names? Only if there are declared RFNs. Making a public commit or publishing a public branch is effectively redistributing your modifications, so any change to the font will require that you do not use the RFNs. Even if there are no RFNs, it may be useful to change the name or add a suffix indicating that a particular version of the font is still in development and not released yet. This will clearly indicate to users and fellow designers that this particular font is not ready for release yet. See section 5 for more details. 4 LICENSING YOUR ORIGINAL FONTS UNDER THE OFL 4.1 Can I use the SIL OFL for my own fonts? Yes! We heartily encourage everyone to use the OFL to distribute their own original fonts. It is a carefully constructed license that allows great freedom along with enough artistic integrity protection for the work of the authors as well as clear rules for other contributors and those who redistribute the fonts. The licensing model is used successfully by various organisations, both for-profit and not-for-profit, to release fonts of varying levels of scope and complexity. 4.2 What do I have to do to apply the OFL to my font? If you want to release your fonts under the OFL, we recommend you do the following: 4.2.1 Put your copyright and Reserved Font Names information at the beginning of the main OFL.txt file in place of the dedicated placeholders (marked with the <> characters). Include this file in your release package. 4.2.2 Put your copyright and the OFL text with your chosen Reserved Font Name(s) into your font files (the copyright and license fields). A link to the OFL text on the OFL web site is an acceptable (but not recommended) alternative. Also add this information to any other components (build scripts, glyph databases, documentation, test files, etc). Accurate metadata in your font files is beneficial to you as an increasing number of applications are exposing this information to the user. For example, clickable links can bring users back to your website and let them know about other work you have done or services you provide. Depending on the format of your fonts and sources, you can use template human-readable headers or machine-readable metadata. You should also double-check that there is no conflicting metadata in the font itself contradicting the license, such as the fstype bits in the os2 table or fields in the name table. 4.2.3 Write an initial FONTLOG.txt for your font and include it in the release package (see Section 6 and Appendix A for details including a template). 4.2.4 Include the relevant practical documentation on the license by adding the current OFL-FAQ.txt file in your package. 4.2.5 If you wish you can use the OFL graphics (http://scripts.sil.org/OFL_logo) on your website. 4.3 Will you make my font OFL for me? We won't do the work for you. We can, however, try to answer your questions, unfortunately we do not have the resources to review and check your font packages for correct use of the OFL. We recommend you turn to designers, foundries or consulting companies with experience in doing open font design to provide this service to you. 4.4 Will you distribute my OFL font for me? No, although if the font is of sufficient quality and general interest we may include a link to it on our partial list of OFL fonts on the OFL web site. You may wish to consider other open font catalogs or hosting services, such as the Unifont Font Guide (http://unifont.org/fontguide), The League of Movable Type (http://theleagueofmovabletype.com) or the Open Font Library (http://openfontlibrary.org/), which despite the name has no direct relationship to the OFL or SIL. We do not endorse any particular catalog or hosting service - it is your responsibility to determine if the service is right for you and if it treats authors with fairness. 4.5 Why should I use the OFL for my fonts? - to meet needs for fonts that can be modified to support lesser-known languages - to provide a legal and clear way for people to respect your work but still use it (and reduce piracy) - to involve others in your font project - to enable your fonts to be expanded with new weights and improved writing system/language support - to allow more technical font developers to add features to your design (such as OpenType, Graphite or AAT support) - to renew the life of an old font lying on your hard drive with no business model - to allow your font to be included in Libre Software operating systems like Ubuntu - to give your font world status and wide, unrestricted distribution - to educate students about quality typeface and font design - to expand your test base and get more useful feedback - to extend your reach to new markets when users see your metadata and go to your website - to get your font more easily into one of the web font online services - to attract attention for your commercial fonts - to make money through web font services - to make money by bundling fonts with applications - to make money adjusting and extending existing open fonts - to get a better chance that foundations/NGOs/charities/companies who commission fonts will pick you - to be part of a sharing design and development community - to give back and contribute to a growing body of font sources 5 CHOOSING RESERVED FONT NAMES 5.1 What are Reserved Font Names? These are font names, or portions of font names, that the author has chosen to reserve for use only with the Original Version of the font, or for Modified Version(s) created by the original author. 5.2 Why can't I use the Reserved Font Names in my derivative font names? I'd like people to know where the design came from. The best way to acknowledge the source of the design is to thank the original authors and any other contributors in the files that are distributed with your revised font (although no acknowledgement is required). The FONTLOG is a natural place to do this. Reserved Font Names ensure that the only fonts that have the original names are the unmodified Original Versions. This allows designers to maintain artistic integrity while allowing collaboration to happen. It eliminates potential confusion and name conflicts. When choosing a name, be creative and avoid names that reuse almost all the same letters in the same order or sound like the original. It will help everyone if Original Versions and Modified Versions can easily be distinguished from one another and from other derivatives. Any substitution and matching mechanism is outside the scope of the license. 5.3 What do you mean by "primary name as presented to the user"? Are you referring to the font menu name? Yes, this applies to the font menu name and other mechanisms that specify a font in a document. It would be fine, however, to keep a text reference to the original fonts in the description field, in your modified source file or in documentation provided alongside your derivative as long as no one could be confused that your modified source is the original. But you cannot use the Reserved Font Names in any way to identify the font to the user (unless the Copyright Holder(s) allow(s) it through a separate agreement). Users who install derivatives (Modified Versions) on their systems should not see any of the original Reserved Font Names in their font menus, for example. Again, this is to ensure that users are not confused and do not mistake one font for another and so expect features only another derivative or the Original Version can actually offer. 5.4 Am I not allowed to use any part of the Reserved Font Names? You may not use individual words from the Reserved Font Names, but you would be allowed to use parts of words, as long as you do not use any word from the Reserved Font Names entirely. We do not recommend using parts of words because of potential confusion, but it is allowed. For example, if "Foobar" was a Reserved Font Name, you would be allowed to use "Foo" or "bar", although we would not recommend it. Such an unfortunate choice would confuse the users of your fonts as well as make it harder for other designers to contribute. 5.5 So what should I, as an author, identify as Reserved Font Names? Original authors are encouraged to name their fonts using clear, distinct names, and only declare the unique parts of the name as Reserved Font Names. For example, the author of a font called "Foobar Sans" would declare "Foobar" as a Reserved Font Name, but not "Sans", as that is a common typographical term, and may be a useful word to use in a derivative font name. Reserved Font Names should also be single words for simplicity and legibility. A font called "Flowing River" should have Reserved Font Names "Flowing" and "River", not "Flowing River". You also need to be very careful about reserving font names which are already linked to trademarks (whether registered or not) which you do not own. 5.6 Do I, as an author, have to identify any Reserved Font Names? No. RFNs are optional and not required, but we encourage you to use them. This is primarily to avoid confusion between your work and Modified Versions. As an author you can release a font under the OFL and not declare any Reserved Font Names. There may be situations where you find that using no RFNs and letting your font be changed and modified - including any kind of modification - without having to change the original name is desirable. However you need to be fully aware of the consequences. There will be no direct way for end-users and other designers to distinguish your Original Version from many Modified Versions that may be created. You have to trust whoever is making the changes and the optimizations to not introduce problematic changes. The RFNs you choose for your own creation have value to you as an author because they allow you to maintain artistic integrity and keep some control over the distribution channel to your end-users. For discussion of RFNs and web fonts see section 2. 5.7 Are any names (such as the main font name) reserved by default? No. That is a change to the license as of version 1.1. If you want any names to be Reserved Font Names, they must be specified after the copyright statement(s). 5.8 Is there any situation in which I can use Reserved Font Names for a Modified Version? The Copyright Holder(s) can give certain trusted parties the right to use any of the Reserved Font Names through separate written agreements. For example, even if "Foobar" is a RFN, you could write up an agreement to give company "XYZ" the right to distribute a modified version with a name that includes "Foobar". This allows for freedom without confusion. The existence of such an agreement should be made as clear as possible to downstream users and designers in the distribution package and the relevant documentation. They need to know if they are a party to the agreement or not and what they are practically allowed to do or not even if all the details of the agreement are not public. 5.9 Do font rebuilds require a name change? Do I have to change the name of the font when my packaging workflow includes a full rebuild from source? Yes, all rebuilds which change the font data and the smart code are Modified Versions and the requirements of the OFL apply: you need to respect what the Author(s) have chosen in terms of Reserved Font Names. However if a package (or installer) is simply a wrapper or a compressed structure around the final font - leaving them intact on the inside - then no name change is required. Please get in touch with the author(s) and copyright holder(s) to inquire about the presence of font sources beyond the final font file(s) and the recommended build path. That build path may very well be non-trivial and hard to reproduce accurately by the maintainer. If a full font build path is made available by the upstream author(s) please be aware that any regressions and changes you may introduce when doing a rebuild for packaging purposes is your own responsibility as a package maintainer since you are effectively creating a separate branch. You should make it very clear to your users that your rebuilt version is not the canonical one from upstream. 5.10 Can I add other Reserved Font Names when making a derivative font? Yes. List your additional Reserved Font Names after your additional copyright statement, as indicated with example placeholders at the top of the OFL.txt file. Be sure you do not remove any existing RFNs but only add your own. RFN statements should be placed next to the copyright statement of the relevant author as indicated in the OFL.txt template to make them visible to designers wishing to make their separate version. 6 ABOUT THE FONTLOG 6.1 What is this FONTLOG thing exactly? It has three purposes: 1) to provide basic information on the font to users and other designers and developers, 2) to document changes that have been made to the font or accompanying files, either by the original authors or others, and 3) to provide a place to acknowledge authors and other contributors. Please use it! 6.2 Is the FONTLOG required? It is not a requirement of the license, but we strongly recommend you have one. 6.3 Am I required to update the FONTLOG when making Modified Versions? No, but users, designers and other developers might get very frustrated with you if you don't. People need to know how derivative fonts differ from the original, and how to take advantage of the changes, or build on them. There are utilities that can help create and maintain a FONTLOG, such as the FONTLOG support in FontForge. 6.4 What should the FONTLOG look like? It is typically a separate text file (FONTLOG.txt), but can take other formats. It commonly includes these four sections: - brief header describing the FONTLOG itself and name of the font family - Basic Font Information - description of the font family, purpose and breadth - ChangeLog - chronological listing of changes - Acknowledgements - list of authors and contributors with contact information It could also include other sections, such as: where to find documentation, how to make contributions, information on contributing organizations, source code details, and a short design guide. See Appendix A for an example FONTLOG. 7 MAKING CONTRIBUTIONS TO OFL PROJECTS 7.1 Can I contribute work to OFL projects? In many cases, yes. It is common for OFL fonts to be developed by a team of people who welcome contributions from the wider community. Contact the original authors for specific information on how to participate in their projects. 7.2 Why should I contribute my changes back to the original authors? It would benefit many people if you contributed back in response to what you've received. Your contributions and improvements to the fonts and other components could be a tremendous help and would encourage others to contribute as well and 'give back'. You will then benefit from other people's contributions as well. Sometimes maintaining your own separate version takes more effort than merging back with the original. Be aware that any contributions, however, must be either your own original creation or work that you own, and you may be asked to affirm that clearly when you contribute. 7.3 I've made some very nice improvements to the font. Will you consider adopting them and putting them into future Original Versions? Most authors would be very happy to receive such contributions. Keep in mind that it is unlikely that they would want to incorporate major changes that would require additional work on their end. Any contributions would likely need to be made for all the fonts in a family and match the overall design and style. Authors are encouraged to include a guide to the design with the fonts. It would also help to have contributions submitted as patches or clearly marked changes - the use of smart source revision control systems like subversion, mercurial, git or bzr is a good idea. Please follow the recommendations given by the author(s) in terms of preferred source formats and configuration parameters for sending contributions. If this is not indicated in a FONTLOG or other documentation of the font, consider asking them directly. Examples of useful contributions are bug fixes, additional glyphs, stylistic alternates (and the smart font code to access them) or improved hinting. Keep in mind that some kinds of changes (esp. hinting) may be technically difficult to integrate. 7.4 How can I financially support the development of OFL fonts? It is likely that most authors of OFL fonts would accept financial contributions - contact them for instructions on how to do this. Such contributions would support future development. You can also pay for others to enhance the fonts and contribute the results back to the original authors for inclusion in the Original Version. 8 ABOUT THE LICENSE ITSELF 8.1 I see that this is version 1.1 of the license. Will there be later changes? Version 1.1 is the first minor revision of the OFL. We are confident that version 1.1 will meet most needs, but are open to future improvements. Any revisions would be for future font releases, and previously existing licenses would remain in effect. No retroactive changes are possible, although the Copyright Holder(s) can re-release the font under a revised OFL. All versions will be available on our web site: http://scripts.sil.org/OFL. 8.2 Does this license restrict the rights of the Copyright Holder(s)? No. The Copyright Holder(s) still retain(s) all the rights to their creation; they are only releasing a portion of it for use in a specific way. For example, the Copyright Holder(s) may choose to release a 'basic' version of their font under the OFL, but sell a restricted 'enhanced' version under a different license. They may also choose to release the same font under both the OFL and some other license. Only the Copyright Holder(s) can do this, and doing so does not change the terms of the OFL as it applies to that font. 8.3 Is the OFL a contract or a license? The OFL is a worldwide license based on international copyright agreements and conventions. It is not a contract and so does not require you to sign it to have legal validity. By using, modifying and redistributing components under the OFL you indicate that you accept the license. 8.4 I really like the terms of the OFL, but want to change it a little. Am I allowed to take ideas and actual wording from the OFL and put them into my own custom license for distributing my fonts? We strongly recommend against creating your very own unique open licensing model. Using a modified or derivative license will likely cut you off - along with the font(s) under that license - from the community of designers using the OFL, potentially expose you and your users to legal liabilities, and possibly put your work and rights at risk. The OFL went though a community and legal review process that took years of effort, and that review is only applicable to an unmodified OFL. The text of the OFL has been written by SIL (with review and consultation from the community) and is copyright (c) 2005-2017 SIL International. You may re-use the ideas and wording (in part, not in whole) in another non-proprietary license provided that you call your license by another unambiguous name, that you do not use the preamble, that you do not mention SIL and that you clearly present your license as different from the OFL so as not to cause confusion by being too similar to the original. If you feel the OFL does not meet your needs for an open license, please contact us. 8.5 Can I quote from the OFL FAQ? Yes, SIL gives permission to quote from the OFL FAQ (OFL-FAQ.txt), in whole or in part, provided that the quoted text is: - unmodified, - used to help explain the intent of the OFL, rather than cause misunderstanding, and - accompanied with the following attribution: "From the OFL FAQ (OFL-FAQ.txt), copyright (c) 2005-2017 SIL International. Used by permission. http://scripts.sil.org/OFL-FAQ_web". 8.6 Can I translate the license and the FAQ into other languages? SIL certainly recognises the need for people who are not familiar with English to be able to understand the OFL and its use. Making the license very clear and readable has been a key goal for the OFL, but we know that people understand their own language best. If you are an experienced translator, you are very welcome to translate the OFL and OFL-FAQ so that designers and users in your language community can understand the license better. But only the original English version of the license has legal value and has been approved by the community. Translations do not count as legal substitutes and should only serve as a way to explain the original license. SIL - as the author and steward of the license for the community at large - does not approve any translation of the OFL as legally valid because even small translation ambiguities could be abused and create problems. SIL gives permission to publish unofficial translations into other languages provided that they comply with the following guidelines: - Put the following disclaimer in both English and the target language stating clearly that the translation is unofficial: "This is an unofficial translation of the SIL Open Font License into . It was not published by SIL International, and does not legally state the distribution terms for fonts that use the OFL. A release under the OFL is only valid when using the original English text. However, we recognize that this unofficial translation will help users and designers not familiar with English to better understand and use the OFL. We encourage designers who consider releasing their creation under the OFL to read the OFL-FAQ in their own language if it is available. Please go to http://scripts.sil.org/OFL for the official version of the license and the accompanying OFL-FAQ." - Keep your unofficial translation current and update it at our request if needed, for example if there is any ambiguity which could lead to confusion. If you start such a unofficial translation effort of the OFL and OFL-FAQ please let us know. 8.7 Does the OFL have an explicit expiration term? No, the implicit intent of the OFL is that the permissions granted are perpetual and irrevocable. 9 ABOUT SIL INTERNATIONAL 9.1 Who is SIL International and what do they do? SIL serves language communities worldwide, building their capacity for sustainable language development, by means of research, translation, training and materials development. SIL makes its services available to all without regard to religious belief, political ideology, gender, race, or ethnic background. SIL's members and volunteers share a Christian commitment. 9.2 What does this have to do with font licensing? The ability to read, write, type and publish in one's own language is one of the most critical needs for millions of people around the world. This requires fonts that are widely available and support lesser-known languages. SIL develops - and encourages others to develop - a complete stack of writing systems implementation components available under open licenses. This open stack includes input methods, smart fonts, smart rendering libraries and smart applications. There has been a need for a common open license that is specifically applicable to fonts and related software (a crucial component of this stack), so SIL developed the SIL Open Font License with the help of the Free/Libre and Open Source Software community. 9.3 How can I contact SIL? Our main web site is: http://www.sil.org/ Our site about complex scripts is: http://scripts.sil.org/ Information about this license (and contact information) is at: http://scripts.sil.org/OFL APPENDIX A - FONTLOG EXAMPLE Here is an example of the recommended format for a FONTLOG, although other formats are allowed. ----- FONTLOG for the GlobalFontFamily fonts This file provides detailed information on the GlobalFontFamily Font Software. This information should be distributed along with the GlobalFontFamily fonts and any derivative works. Basic Font Information GlobalFontFamily is a Unicode typeface family that supports all languages that use the Latin script and its variants, and could be expanded to support other scripts. NewWorldFontFamily is based on the GlobalFontFamily and also supports Greek, Hebrew, Cyrillic and Armenian. More specifically, this release supports the following Unicode ranges... This release contains... Documentation can be found at... To contribute to the project... ChangeLog 10 December 2010 (Fred Foobar) GlobalFontFamily-devel version 1.4 - fix new build and testing system (bug #123456) 1 August 2008 (Tom Parker) GlobalFontFamily version 1.2.1 - Tweaked the smart font code (Branch merged with trunk version) - Provided improved build and debugging environment for smart behaviours 7 February 2007 (Pat Johnson) NewWorldFontFamily Version 1.3 - Added Greek and Cyrillic glyphs 7 March 2006 (Fred Foobar) NewWorldFontFamily Version 1.2 - Tweaked contextual behaviours 1 Feb 2005 (Jane Doe) NewWorldFontFamily Version 1.1 - Improved build script performance and verbosity - Extended the smart code documentation - Corrected minor typos in the documentation - Fixed position of combining inverted breve below (U+032F) - Added OpenType/Graphite smart code for Armenian - Added Armenian glyphs (U+0531 -> U+0587) - Released as "NewWorldFontFamily" 1 Jan 2005 (Joe Smith) GlobalFontFamily Version 1.0 - Initial release Acknowledgements If you make modifications be sure to add your name (N), email (E), web-address (if you have one) (W) and description (D). This list is in alphabetical order. N: Jane Doe E: jane@university.edu W: http://art.university.edu/projects/fonts D: Contributor - Armenian glyphs and code N: Fred Foobar E: fred@foobar.org W: http://foobar.org D: Contributor - misc Graphite fixes N: Pat Johnson E: pat@fontstudio.org W: http://pat.fontstudio.org D: Designer - Greek & Cyrillic glyphs based on Roman design N: Tom Parker E: tom@company.com W: http://www.company.com/tom/projects/fonts D: Engineer - original smart font code N: Joe Smith E: joe@fontstudio.org W: http://joe.fontstudio.org D: Designer - original Roman glyphs Fontstudio.org is an not-for-profit design group whose purpose is... Foobar.org is a distributed community of developers... Company.com is a small business who likes to support community designers... University.edu is a renowned educational institution with a strong design department... ----- ================================================ FILE: README.md ================================================ ![Cascadia Code](images/cascadia-code.png) # About Cascadia Code Cascadia is a fun new coding font that comes bundled with [Windows Terminal](https://github.com/microsoft/terminal), and is now the default font in Visual Studio as well. # Font Variants - `Cascadia Code`: standard version of Cascadia - `Cascadia Mono`: a version of Cascadia that doesn't have ligatures - `Cascadia (Code|Mono) PL`: a version of Cascadia that has embedded Powerline symbols - `Cascadia (Code|Mono) NF`: a version of Cascadia that has Nerd Font symbols For the italic, there is a standard `italic` and a `cursive` variant accessible via `ss01` (see [below](https://github.com/microsoft/cascadia-code/blob/main/README.md#to-enable-the-cursive-form-of-the-italic-heres-the-code-you-should-use)). # Font features ![Coding Ligatures](images/ligatures.png) ![Arrow Support](images/arrow_support.png) ![Stylistic Sets](images/stylistic_set.png) Enabling stylistic sets will [vary between applications](https://github.com/tonsky/FiraCode/wiki/How-to-enable-stylistic-sets). For example, in VS Code, you can enable stylistic sets (and other OpenType features) via `settings.json`: ``` "editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss19', 'ss20'" ``` #### To enable the Cursive form of the italic, here's the code you should use: ``` "editor.fontLigatures": "'calt', 'ss01'", ``` If you're using an environment that does not support the `ss01` OT feature, one option to consider is [opentype-feature-freezer](https://github.com/twardoch/fonttools-opentype-feature-freezer/). # Character Sets ![Cascadia Code](images/cascadia-code-characters.png) ![Cascadia Code Italic](images/cascadia-code-italic-characters.png) ![Symbols for Legacy Computing and other block elements](images/cascadia-legacycomputing-characters.png) # Installation **You can download the latest version of Cascadia Code from the releases page here:** [https://github.com/microsoft/cascadia-code/releases](https://github.com/microsoft/cascadia-code/releases) ##### Font formats: - `ttf variable`: we recommend this version for **all users,** and particularly those on Windows or any other OS that employs TrueType hinting. It offers the greatest diversity of weight options (anything from 200-700). - `ttf static`: in the rare situation where the above variable font version is not supported, or a singular weight is preferred to the entire range, static formats are supplied. However, please note they do not have the same degree of hinting quality as the variable font versions. - `otf static`: for users who prefer OTF format fonts, otf static instances are provided. At this time we do not have a variable font OTF version. - `WOFF2`: These versions are provided for the purposes of web use, and are available both as variable fonts, and static instances. Once unzipped, right-click the font file and click `Install for all users`. This will install the font onto your machine. 👉 **Note:** If you have previously installed a version of Cascadia Code, please uninstall the previous version *prior* to installing a new version. Not doing so can result in improper rendering. For more details and app-specific instructions, [please check the wiki](https://github.com/microsoft/cascadia-code/wiki/Installing-Cascadia-Code). # Get involved Instructions on how to modify and submit an update to the Cascadia Code source is [available in the wiki](https://github.com/microsoft/cascadia-code/wiki/Modifying-Cascadia-Code). # Communicating with the Team The easiest way to communicate with the team is via GitHub Issues. Please file new issues, feature requests and suggestions, but **DO search for similar open/closed pre-existing issues before you do**. Please help us keep this repository clean, inclusive, and fun! We will not tolerate any abusive, rude, disrespectful or inappropriate behavior. Read our [Code of Conduct](https://opensource.microsoft.com/codeofconduct/) for more details. If you would like to ask a question that you feel doesn't warrant an issue (yet), please reach out to us via Twitter: Aaron Bell, Font Designer: [@aaronbell](https://twitter.com/aaronbell) Christopher Nguyen, Product Manager: [@nguyen_dows](https://twitter.com/nguyen_dows) Dustin Howett, Software Engineer: [@DHowett](https://twitter.com/DHowett) _Special thanks_ to: - Fira Code – OpenType code for the coding ligatures – [github](https://github.com/tonsky/FiraCode) - Nerd Fonts – Centralizing app iconography – [github](https://github.com/ryanoasis/nerd-fonts) - Viktoriya Grabowska – Designer of Cyrillic Italic and Consultant – [@vika_grabowska](https://twitter.com/vika_grabowska) - Mohamad Dakak - Arabic designer - [@mohamaddakak](https://twitter.com/mohamaddakak) - Liron Lavi Turkenich - Hebrew designer - [@LironLaviTur](https://twitter.com/LironLaviTur) - Gerry Leonidas – Greek Consultant – [@gerryleonidas](https://twitter.com/gerryleonidas) - Donny Trương – Vietnamese Consultant – [Vietnamese Typography](https://vietnamesetypography.com) # Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments. ================================================ FILE: SECURITY.md ================================================ ## Security Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/). If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://docs.microsoft.com/en-us/previous-versions/tn-archive/cc751383(v=technet.10)), please report it to us as described below. ## Reporting Security Issues **Please do not report security vulnerabilities through public GitHub issues.** Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report). If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/en-us/msrc/pgp-key-msrc). You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc). Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue: * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) * Full paths of source file(s) related to the manifestation of the issue * The location of the affected source code (tag/branch/commit or direct URL) * Any special configuration required to reproduce the issue * Step-by-step instructions to reproduce the issue * Proof-of-concept or exploit code (if possible) * Impact of the issue, including how an attacker might exploit the issue This information will help us triage your report more quickly. If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://microsoft.com/msrc/bounty) page for more details about our active programs. ## Preferred Languages We prefer all communications to be in English. ## Policy Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://www.microsoft.com/en-us/msrc/cvd). ================================================ FILE: build.py ================================================ import argparse import multiprocessing import multiprocessing.pool import os import subprocess from pathlib import Path from typing import cast import xml.etree.cElementTree as ET import tempfile import glob import cffsubr.__main__ import fontmake.instantiator import fontTools.designspaceLib import fontTools.ttLib import fontTools.ttLib.tables._g_l_y_f as _g_l_y_f import psautohint.__main__ from gftools.stat import gen_stat_tables_from_config import yaml import ufo2ft import ufoLib2 import vttLib import vttLib.transfer from vttmisc import tsi1, tsic VERSION_YEAR_MONTH = 2407 VERSION_DAY = 24 OUTPUT_DIR = Path("build") OUTPUT_OTF_DIR = OUTPUT_DIR / "otf" OUTPUT_TTF_DIR = OUTPUT_DIR / "ttf" OUTPUT_WOFF2_DIR = OUTPUT_DIR / "woff2" OUTPUT_STATIC_OTF_DIR = OUTPUT_OTF_DIR / "static" OUTPUT_STATIC_TTF_DIR = OUTPUT_TTF_DIR / "static" OUTPUT_STATIC_WOFF2_DIR = OUTPUT_WOFF2_DIR / "static" INPUT_DIR = Path("sources") VTT_DATA_FILE = INPUT_DIR / "vtt_data" / "CascadiaCode_VTT.ttf" ITALIC_VTT_DATA_FILE = INPUT_DIR / "vtt_data" / "CascadiaCodeItalic_VTT.ttf" FEATURES_DIR = INPUT_DIR / "features" NERDFONTS_DIR = INPUT_DIR / "nerdfonts" # Font modifications # **************************************************************** def step_set_font_name(name: str, source: ufoLib2.Font) -> None: source.info.familyName = source.info.familyName.replace("Cascadia Code", name) # We have to change the style map family name because that's what # Windows uses to map Bold/Regular/Medium/etc. fonts if source.info.styleMapFamilyName: source.info.styleMapFamilyName = source.info.styleMapFamilyName.replace("Cascadia Code", name) def step_merge_glyphs_from_ufo(path: Path, instance: ufoLib2.Font) -> None: unicodes = [] for glyph in instance: unicodes.append(glyph.unicode) ufo = ufoLib2.Font.open(path) for glyph in ufo: if glyph.unicode: if glyph.unicode not in unicodes: newName = str(hex(glyph.unicode)).upper().replace("0X","uni") instance.layers.defaultLayer.insertGlyph(ufo[glyph.name],newName, overwrite=False, copy=False) else: instance.addGlyph(ufo[glyph.name]) def step_set_feature_file(path: Path, name: str, instance: ufoLib2.Font) -> None: featureSet = "" if "Italic" in name: #until I can come up with a more elegent solution, this'll do. featureList = [ "header_italic", # adds definitions, language systems "aalt_italic", "ccmp", "locl_italic", "calt_italic", "figures_italic", # contains subs/sinf/sups/numr/dnom "frac", "ordn", "case", "salt", "ss01", "ss02", "ss03", "ss19", "ss20", "rclt", "zero" ] else: featureList = [ "header", # adds definitions, language systems "aalt", "ccmp", "locl", "calt", "figures", # contains subs/sinf/sups/numr/dnom "frac", "ordn", "case", "ss02", "ss19", "ss20", "rclt", "zero", "init", "medi", "fina", "rlig", ] for item in featureList: if "PL" in name and item == "rclt": featureSet += Path(path / str("rclt_PL.fea")).read_text() elif "NF" in name and item == "rclt": featureSet += Path(path / str("rclt_PL.fea")).read_text() elif "Mono" in name and "calt" in item: featureSet += Path(path / str(item+"_mono.fea")).read_text() #both Italic and Regular can use same mono else: featureSet += Path(path / str(item+".fea")).read_text() instance.features.text = featureSet def set_font_metaData(font: ufoLib2.Font) -> None: font.info.versionMajor = VERSION_YEAR_MONTH font.info.versionMinor = VERSION_DAY font.info.openTypeOS2TypoAscender = 1900 font.info.openTypeOS2TypoDescender = -480 font.info.openTypeOS2TypoLineGap = 0 font.info.openTypeHheaAscender = font.info.openTypeOS2TypoAscender font.info.openTypeHheaDescender = font.info.openTypeOS2TypoDescender font.info.openTypeHheaLineGap = font.info.openTypeOS2TypoLineGap font.info.openTypeOS2WinAscent = 2226 font.info.openTypeOS2WinDescent = abs(font.info.openTypeOS2TypoDescender) font.info.openTypeGaspRangeRecords = [ {"rangeMaxPPEM": 9, "rangeGaspBehavior": [1, 3]}, {"rangeMaxPPEM": 50, "rangeGaspBehavior": [0, 1, 2, 3]}, {"rangeMaxPPEM": 65535, "rangeGaspBehavior": [1, 3]}, ] def set_overlap_flag(varfont: fontTools.ttLib.TTFont) -> fontTools.ttLib.TTFont: glyf = cast(_g_l_y_f.table__g_l_y_f, varfont["glyf"]) for glyph_name in glyf.keys(): glyph = glyf[glyph_name] if glyph.isComposite(): # Set OVERLAP_COMPOUND bit for compound glyphs glyph.components[0].flags |= 0x400 elif glyph.numberOfContours > 0: # Set OVERLAP_SIMPLE bit for simple glyphs glyph.flags[0] |= 0x40 def prepare_fonts( designspace: fontTools.designspaceLib.DesignSpaceDocument, name: str ) -> None: designspace.loadSourceFonts(ufoLib2.Font.open) for source in designspace.sources: step_set_feature_file(FEATURES_DIR, name, source.font) if "PL" in name or "NF" in name or "Mono" in name: step_set_font_name(name, source.font) if "PL" in name or "NF" in name: print(f"[{name} {source.styleName}] Merging PL glyphs") step_merge_glyphs_from_ufo( NERDFONTS_DIR / "NerdfontsPL-Regular.ufo", source.font ) if "NF" in name: print(f"[{name} {source.styleName}] Merging NF glyphs") for ufo in Path(NERDFONTS_DIR/"full"/"processed").glob("*.ufo"): step_merge_glyphs_from_ufo( ufo, source.font ) set_font_metaData(source.font) for instance in designspace.instances: instance.name = instance.name.replace("Cascadia Code", name) instance.familyName = instance.familyName.replace("Cascadia Code", name) if instance.styleMapFamilyName: instance.styleMapFamilyName = instance.styleMapFamilyName.replace("Cascadia Code", name) def to_woff2(source_path: Path, target_path: Path) -> None: print(f"[WOFF2] Compressing {source_path} to {target_path}") font = fontTools.ttLib.TTFont(source_path) font.flavor = "woff2" target_path.parent.mkdir(exist_ok=True, parents=True) font.save(target_path) # Build fonts # **************************************************************** def build_font_variable( designspace: fontTools.designspaceLib.DesignSpaceDocument, name: str, vtt_compile: bool = True, ) -> None: prepare_fonts(designspace, name) compile_variable_and_save(designspace, vtt_compile) def build_font_static( designspace: fontTools.designspaceLib.DesignSpaceDocument, instance_descriptor: fontTools.designspaceLib.InstanceDescriptor, name: str, ) -> None: prepare_fonts(designspace, name) generator = fontmake.instantiator.Instantiator.from_designspace(designspace) instance = generator.generate_instance(instance_descriptor) instance.info.familyName = instance.info.familyName.replace(" Italic","") if instance.info.styleMapFamilyName: instance.info.styleMapFamilyName = instance.info.styleMapFamilyName.replace(" Italic","") compile_static_and_save(instance, name.replace(" Italic","")) # Export fonts # **************************************************************** def compile_variable_and_save( designspace: fontTools.designspaceLib.DesignSpaceDocument, vtt_compile: bool = True, ) -> None: if "Italic" in designspace.default.font.info.familyName: #Some weird stuff happens with Italics designspace.default.font.info.familyName = designspace.default.font.info.familyName.replace(" Italic", "") familyName = designspace.default.font.info.familyName styleName = designspace.default.font.info.styleName file_stem = familyName.replace(" ", "") if "Italic" in styleName and "Italic" not in file_stem: file_stem = file_stem+"Italic" file_path: Path = (OUTPUT_TTF_DIR / file_stem).with_suffix(".ttf") print(f"[{familyName} {styleName}] Compiling") varFont = ufo2ft.compileVariableTTF(designspace, inplace=True) print(f"[{familyName} {styleName}] Merging VTT") if "Italic" in styleName: font_vtt = fontTools.ttLib.TTFont(ITALIC_VTT_DATA_FILE) else: font_vtt = fontTools.ttLib.TTFont(VTT_DATA_FILE) for table in ["TSI0", "TSI1", "TSI2", "TSI3", "TSI5", "TSIC", "maxp"]: varFont[table] = fontTools.ttLib.newTable(table) varFont[table] = font_vtt[table] # this will correct the OFFSET[R] commands in TSI1 if font_vtt.getGlyphOrder() != varFont.getGlyphOrder(): tsi1.fixOFFSET(varFont, font_vtt) pass if vtt_compile: print(f"[{familyName} {styleName}] Compiling VTT") vttLib.compile_instructions(varFont, ship=True) else: file_path = (OUTPUT_TTF_DIR / str(file_stem+"_VTT")).with_suffix(".ttf") # last minute manual corrections to set things correctly # set two flags to enable proper rendering (one for overlaps in Mac, the other for windows hinting) # Helping mac office generage the postscript name correctly for variable fonts when an italic is present set_overlap_flag(varFont) varFont["head"].flags = 0x000b if "Regular" in styleName: varFont["name"].setName(familyName.replace(" ","")+"Roman", 25, 3, 1, 1033) print(f"[{familyName} {styleName}] Saving") file_path.parent.mkdir(exist_ok=True, parents=True) varFont.save(file_path) print(f"[{familyName}] Done: {file_path}") def compile_static_and_save(instance: ufoLib2.Font, name:str) -> None: family_name = name style_name = instance.info.styleName print(f"[{family_name}] Building static instance: {style_name}") # Use pathops backend for overlap removal because it is, at the time of this # writing, massively faster than booleanOperations and thanks to autohinting, # there is no need to keep outlines compatible to previous releases. static_ttf = ufo2ft.compileTTF( instance, removeOverlaps=True, overlapsBackend="pathops" ) static_otf = ufo2ft.compileOTF( instance, removeOverlaps=True, overlapsBackend="pathops", # Can do inplace now because TTF is already done. inplace=True, # Don't optimize here, will be optimized after autohinting. optimizeCFF=ufo2ft.CFFOptimization.NONE, ) file_name = f"{family_name}-{style_name}".replace(" ", "") file_path_static = (OUTPUT_STATIC_TTF_DIR / file_name).with_suffix(".ttf") file_path_static_otf = (OUTPUT_STATIC_OTF_DIR / file_name).with_suffix(".otf") file_path_static.parent.mkdir(exist_ok=True, parents=True) static_ttf.save(file_path_static) file_path_static_otf.parent.mkdir(exist_ok=True, parents=True) static_otf.save(file_path_static_otf) print(f"[{family_name}] Done: {file_path_static}, {file_path_static_otf}") # Font hinting # **************************************************************** def autohint(otf_path: Path) -> None: path = os.fspath(otf_path) print(f"Autohinting {path}") psautohint.__main__.main([path]) print(f"Compressing {path}") cffsubr.__main__.main(["-i", path]) def ttfautohint(path: str) -> None: print(f"Autohinting {path}") subprocess.check_call( [ "ttfautohint", "--stem-width", "nsn", "--increase-x-height", "0", "--reference", os.fspath(OUTPUT_STATIC_TTF_DIR / "CascadiaCode-Regular.ttf"), path, path[:-4] + "-hinted.ttf", ] ) os.remove(path) os.rename(path[:-4] + "-hinted.ttf", path) # Main build script # **************************************************************** if __name__ == "__main__": parser = argparse.ArgumentParser(description="build some fonts") parser.add_argument("-P", "--no-powerline", action="store_false", dest="powerline") parser.add_argument("-NF", "--no-nerdfonts", action="store_false", dest="nerdfonts") parser.add_argument("-M", "--no-mono", action="store_false", dest="mono") parser.add_argument("-S", "--static-fonts", action="store_true") parser.add_argument("-I", "--no-italic", action="store_false", dest="italic") parser.add_argument( "-V", "--no-vtt-compile", action="store_false", dest="vtt_compile", help="Do not compile VTT code but leave in the VTT sources.", ) parser.add_argument("-W", "--web-fonts", action="store_true") args = parser.parse_args() # Load Designspace and filter out instances that are marked as non-exportable. designspace = fontTools.designspaceLib.DesignSpaceDocument.fromfile( INPUT_DIR / "CascadiaCode_variable.designspace" ) designspace.instances = [ s for s in designspace.instances if s.lib.get("com.schriftgestaltung.export", True) ] designspaceItalic = fontTools.designspaceLib.DesignSpaceDocument.fromfile( INPUT_DIR / "CascadiaCode_variable_italic.designspace" ) designspaceItalic.instances = [ s for s in designspaceItalic.instances if s.lib.get("com.schriftgestaltung.export", True) ] #Stage 1: Make all the things. pool = multiprocessing.pool.Pool(processes=multiprocessing.cpu_count()) processes = [] processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Code", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Code Italic", args.vtt_compile, ), ) ) if args.mono: processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Mono", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Mono Italic", args.vtt_compile, ), ) ) if args.powerline: processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Code PL", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Code PL Italic", args.vtt_compile, ), ) ) if args.mono: processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Mono PL", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Mono PL Italic", args.vtt_compile, ), ) ) if args.nerdfonts: processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Code NF", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Code NF Italic", args.vtt_compile, ), ) ) if args.mono: processes.append( pool.apply_async( build_font_variable, ( designspace, "Cascadia Mono NF", args.vtt_compile, ), ) ) if args.italic: processes.append( pool.apply_async( build_font_variable, ( designspaceItalic, "Cascadia Mono NF Italic", args.vtt_compile, ), ) ) if args.static_fonts: # Build the Regulars for instance_descriptor in designspace.instances: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Code", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Mono", ), ) ) if args.powerline: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Code PL", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Mono PL", ), ) ) if args.nerdfonts: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Code NF", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspace, instance_descriptor, "Cascadia Mono NF", ), ) ) if args.italic: # Build the Regulars for instance_descriptor in designspaceItalic.instances: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Code Italic", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Mono Italic", ), ) ) if args.powerline: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Code PL Italic", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Mono PL Italic", ), ) ) if args.nerdfonts: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Code NF Italic", ), ) ) if args.mono: processes.append( pool.apply_async( build_font_static, ( designspaceItalic, instance_descriptor, "Cascadia Mono NF Italic", ), ) ) pool.close() pool.join() for process in processes: process.get() del processes, pool # Step 1.5: Adding STAT tables in one go print ("[Cascadia Variable fonts] Fixing STAT tables") fontSTAT = [fontTools.ttLib.TTFont(f) for f in list(OUTPUT_TTF_DIR.glob("*.ttf"))] with open(INPUT_DIR/"stat.yaml") as f: config = yaml.load(f, Loader=yaml.SafeLoader) gen_stat_tables_from_config(config, fontSTAT) for font in fontSTAT: font.save(font.reader.file.name) # Stage 2: Autohint and maybe compress all the static things. if args.static_fonts is True: otfs = list(OUTPUT_STATIC_OTF_DIR.glob("*.otf")) if otfs: pool = multiprocessing.Pool(processes=multiprocessing.cpu_count()) processes = [pool.apply_async(autohint, (otf,)) for otf in otfs] pool.close() pool.join() for process in processes: process.get() del processes, pool try: for ttf_path in OUTPUT_STATIC_TTF_DIR.glob("*.ttf"): if not ttf_path.stem.endswith("-hinted"): ttfautohint(os.fspath(ttf_path)) except Exception as e: print(f"ttfautohint failed. Please reinstall and try again. {str(e)}") # Stage 3: Have some web fonts. if args.web_fonts: pool = multiprocessing.Pool(processes=multiprocessing.cpu_count()) processes = [ pool.apply_async( to_woff2, ( path, # This removes build/ttf from the found files and prepends # build/woff2 instead, keeping the sub-structure. OUTPUT_WOFF2_DIR / path.relative_to(OUTPUT_TTF_DIR).with_suffix(".woff2"), ), ) for path in OUTPUT_TTF_DIR.glob("**/*.ttf") ] pool.close() pool.join() for process in processes: process.get() print("All done.") ================================================ FILE: doc/CONTRIBUTING.md ================================================ # Cascadia Code Contributor's Guide Below is our guidance for how to report issues, propose new features, and submit contributions via Pull Requests (PRs). ## Before you start, file an issue Please follow this simple rule to help us eliminate any unnecessary wasted effort & frustration, and ensure an efficient and effective use of everyone's time - yours, ours, and other community members': > 👉 If you have a question, think you've discovered an issue, would like to propose a new feature, etc., then find/file an issue **BEFORE** starting work to fix/implement it. ### Search existing issues first Before filing a new issue, search existing open and closed issues first: It is likely someone else has found the problem you're seeing, and someone may be working on or have already contributed a fix! If no existing item describes your issue/feature, great - please file a new issue: ### File a new issue * Don't know whether you're reporting an issue or requesting a feature? File an issue * Have a question that you don't see answered in docs, videos, etc.? File an issue * Want to know if we're planning on building a particular feature? File an issue * Got a great idea for a new feature? File an issue/request/idea * Don't understand how to do something? File an issue * Found an existing issue that describes yours? Great - upvote and add additional commentary / info / repro-steps / etc. When you hit "New Issue", select the type of issue closest to what you want to report/ask/request: ![New issue types](/images/new-issue-template.png) ### Complete the template **Complete the information requested in the issue template, providing as much information as possible**. The more information you provide, the more likely your issue/ask will be understood and implemented. Helpful information includes: * What version of Cascadia Code you have? * What application you are using to view the font? * What is your screen resolution? * Don't assume we're experts in setting up YOUR environment. Teach us to help you! * **We LOVE detailed repro steps!** What steps do we need to take to reproduce the issue? Assume we love to read repro steps. As much detail as you can stand is probably _barely_ enough detail for us! * Please try to provide the exact Unicode codepoint for the glyphs you're talking about. (e.g. U+1F4AF, U+4382) * **If you intend to implement the fix/feature yourself then say so!** If you do not indicate otherwise we will assume that the issue is our to solve, or may label the issue as `Help-Wanted`. ### DO NOT post "+1" comments > ⚠ DO NOT post "+1", "me too", or similar comments - they just add noise to an issue. If you don't have any additional info/context to add but would like to indicate that you're affected by the issue, upvote the original issue by clicking its [+😊] button and hitting 👍 (+1) icon. This way we can actually measure how impactful an issue is. --- ## Contributing fixes / features For those able & willing to help fix issues and/or implement features ... ### To Spec or not to Spec Some issues/features may be quick and simple to describe and understand. For such scenarios, once a team member has agreed with your approach, skip ahead to the section headed "Fork, Branch, and Create your PR", below. Small issues that do not require a spec will be labelled Issue-Bug or Issue-Task. However, some issues/features will require careful thought & formal design before implementation. For these scenarios, we'll request that a spec is written and the associated issue will be labeled Issue-Feature. Specs help collaborators discuss different approaches to solve a problem, describe how the feature will behave, how the feature will impact the user, what happens if something goes wrong, etc. Driving towards agreement in a spec, before any code is written, often results in less wasted effort in the long run. Specs will be managed in a very similar manner as code contributions so please follow the "Fork, Branch and Create your PR" below. ### Writing / Contributing-to a Spec To write/contribute to a spec: fork, branch and commit via PRs, as you would with any code changes. Specs are written in markdown, stored under the `\doc\spec` folder and named `[issue id] - [spec description].md`. Team members will be happy to help review specs and guide them to completion. ### Help Wanted Once the team have approved an issue/spec, development can proceed. If no developers are immediately available, the spec can be parked ready for a developer to get started. Parked specs' issues will be labeled "Help Wanted". To find a list of development opportunities waiting for developer involvement, visit the Issues and filter on [the Help-Wanted label](https://github.com/microsoft/terminal/labels/Help-Wanted). --- ## Development ### Fork, Clone, Branch and Create your PR Once you've discussed your proposed feature/fix/etc. with a team member, and you've agreed an approach or a spec has been written and approved, it's time to start development: 1. Fork the repo if you haven't already 1. Clone your fork locally 1. Create & push a feature branch 1. Create a [Draft Pull Request (PR)](https://github.blog/2019-02-14-introducing-draft-pull-requests/) 1. Work on your changes ### Code Review When you'd like the team to take a look, (even if the work is not yet fully-complete), mark the PR as 'Ready For Review' so that the team can review your work and provide comments, suggestions, and request changes. It may take several cycles, but the end result will be solid, testable, conformant code that is safe for us to merge. ### Merge Once your code has been reviewed and approved by the requisite number of team members, it will be merged into the main branch. Once merged, your PR will be automatically closed. --- ## Thank you Thank you in advance for your contribution! Now, [what's next on the list](https://github.com/microsoft/cascadia-code/labels/Help-Wanted)? 😜 ================================================ FILE: pipelines/release.yml ================================================ parameters: - name: minimal type: boolean displayName: Build Minimal Font (testing only) default: false resources: repositories: - repository: 1ESPipelineTemplates type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: pool: name: Azure Pipelines image: macOS-13 os: macOS sdl: sourceAnalysisPool: name: SHINE-INT-L os: windows stages: - stage: build displayName: Build jobs: - job: build displayName: Build and Sign Cascadia templateContext: outputs: - output: pipelineArtifact targetPath: $(Build.SourcesDirectory)/out artifactName: archive steps: - task: UsePythonVersion@0 displayName: 'Use Python 3.11' inputs: versionSpec: 3.11 - task: UseDotNet@2 displayName: 'Use .NET sdk 6.x' inputs: version: 6.x - bash: |- brew install ttfautohint pip install pip-tools pip-compile -U requirements.in pip install -r requirements.txt ufolint displayName: 'Install build dependencies' - bash: 'ufolint sources/*.ufo' displayName: 'Lint sources' - ${{ if eq(true, parameters.minimal) }}: - bash: 'python ./build.py -P -NF -M -I' displayName: 'Build font (minimal)' - ${{ else }}: - bash: 'python ./build.py -S -W' displayName: 'Build font(s)' - template: ./pipelines/templates/steps-esrp-signing.yml@self parameters: displayName: Submit Signing Request signingIdentity: serviceName: $(SigningServiceName) appId: $(SigningAppId) tenantId: $(SigningTenantId) akvName: $(SigningAKVName) authCertName: $(SigningAuthCertName) signCertName: $(SigningSignCertName) inputs: FolderPath: build Pattern: '*.ttf,*.otf' signConfigType: inlineSignParams inlineOperation: | [ { "KeyCode": "CP-230012", "OperationCode": "SigntoolSign", "Parameters": { "OpusName": "Microsoft", "OpusInfo": "http://www.microsoft.com", "FileDigest": "/fd \"SHA256\"", "PageHash": "/NPH", "TimeStamp": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256" }, "ToolName": "sign", "ToolVersion": "1.0" }, { "KeyCode": "CP-230012", "OperationCode": "SigntoolVerify", "Parameters": {}, "ToolName": "sign", "ToolVersion": "1.0" } ] - bash: |- mkdir -p out cd build zip -r ../out/CascadiaCode.zip ttf otf woff2 displayName: 'Build Final Archive' ================================================ FILE: pipelines/templates/steps-esrp-signing.yml ================================================ parameters: - name: displayName type: string default: ESRP Code Signing - name: inputs type: object default: {} - name: signingIdentity type: object default: {} steps: - task: EsrpCodeSigning@5 displayName: ${{ parameters.displayName }} inputs: ConnectedServiceName: ${{ parameters.signingIdentity.serviceName }} AppRegistrationClientId: ${{ parameters.signingIdentity.appId }} AppRegistrationTenantId: ${{ parameters.signingIdentity.tenantId }} AuthAKVName: ${{ parameters.signingIdentity.akvName }} AuthCertName: ${{ parameters.signingIdentity.authCertName }} AuthSignCertName: ${{ parameters.signingIdentity.signCertName }} ${{ insert }}: ${{ parameters.inputs }} ================================================ FILE: requirements.in ================================================ # Add or remove dependencies here and then use pip-tool's # pip-compile -U requirements.in # to update requirements.txt (the lock file, so to speak). fontmake psautohint gftools vttLib skia-pathops fontTools[ufo,lxml,woff] vttmisc ================================================ FILE: requirements.txt ================================================ # # This file is autogenerated by pip-compile with Python 3.11 # by the following command: # # pip-compile # absl-py==2.1.0 # via # gftools # nanoemoji # picosvg afdko==4.0.1 # via gftools appdirs==1.4.4 # via fs attrs==23.2.0 # via # cattrs # statmake # ufolib2 axisregistry==0.4.9 # via gftools babelfont==3.0.4 # via gftools beautifulsoup4==4.12.3 # via gftools booleanoperations==0.9.0 # via # afdko # fontparts # ufo2ft brotli==1.1.0 # via # fonttools # gftools bump2version==1.0.1 # via bumpfontversion bumpfontversion==0.4.1 # via gftools cattrs==23.2.3 # via # statmake # ufolib2 certifi==2024.2.2 # via requests cffi==1.16.0 # via # cryptography # pygit2 # pynacl cffsubr==0.3.0 # via ufo2ft charset-normalizer==3.3.2 # via requests click==8.1.7 # via hyperglot colorlog==6.8.2 # via hyperglot compreffor==0.5.5 # via ufo2ft cryptography==42.0.5 # via pyjwt defcon[lxml,pens]==0.10.3 # via # afdko # fontparts # glyphsets # mutatormath # ufoprocessor deprecated==1.2.14 # via pygithub font-v==2.1.0 # via gftools fontfeatures==1.8.0 # via # babelfont # gftools fontmake[json]==3.9.0 # via # -r requirements.in # gftools fontmath==0.9.3 # via # afdko # fontmake # fontparts # mutatormath # ufo2ft # ufoprocessor fontparts==0.12.1 # via ufoprocessor fontpens==0.2.4 # via defcon fonttools[lxml,ufo,unicode,woff]==4.51.0 # via # -r requirements.in # afdko # axisregistry # babelfont # booleanoperations # bumpfontversion # cffsubr # compreffor # defcon # font-v # fontfeatures # fontmake # fontmath # fontparts # fontpens # gftools # glyphsets # glyphslib # hyperglot # mutatormath # nanoemoji # psautohint # statmake # ufo2ft # ufolib2 # ufoprocessor # vttlib # vttmisc fs==2.4.16 # via # fontfeatures # fonttools gflanguages==0.5.17 # via # gftools # glyphsets gfsubsets==2024.2.5 # via gftools gftools==0.9.54 # via -r requirements.in gitdb==4.0.11 # via gitpython gitpython==3.1.43 # via font-v glyphsets==0.6.19 # via gftools glyphslib==6.7.0 # via # babelfont # bumpfontversion # fontmake # gftools # glyphsets hyperglot==0.6.2 # via gftools idna==3.7 # via requests importlib-resources==6.4.0 # via gfsubsets jinja2==3.1.3 # via gftools lxml==5.2.1 # via # afdko # fontfeatures # fonttools # nanoemoji # picosvg markdown-it-py==3.0.0 # via rich markupsafe==2.1.5 # via jinja2 mdurl==0.1.2 # via markdown-it-py mutatormath==3.0.1 # via ufoprocessor nanoemoji==0.15.1 # via gftools networkx==3.3 # via gftools ninja==1.11.1.1 # via # gftools # nanoemoji openstep-plist==0.3.1 # via # babelfont # bumpfontversion # glyphslib opentype-sanitizer==9.1.0 # via gftools orjson==3.10.1 # via # babelfont # ufolib2 packaging==24.0 # via gftools picosvg==0.22.1 # via nanoemoji pillow==10.3.0 # via # gftools # nanoemoji pngquant-cli==2.17.0.post5 # via nanoemoji protobuf==3.20.3 # via # axisregistry # gflanguages # gftools psautohint==2.4.0 # via -r requirements.in pyclipper==1.3.0.post5 # via booleanoperations pycparser==2.22 # via cffi pygit2==1.14.1 # via gftools pygithub==2.3.0 # via gftools pygments==2.17.2 # via rich pyjwt[crypto]==2.8.0 # via pygithub pynacl==1.5.0 # via pygithub pyparsing==3.1.2 # via vttlib python-dateutil==2.9.0.post0 # via strictyaml pyyaml==6.0.1 # via # gftools # glyphsets # hyperglot regex==2024.4.16 # via nanoemoji requests==2.31.0 # via # gftools # glyphsets # pygithub resvg-cli==0.22.0.post3 # via nanoemoji rich==13.7.1 # via gftools six==1.16.0 # via # fs # python-dateutil skia-pathops==0.8.0.post1 # via # -r requirements.in # gftools # picosvg smmap==5.0.1 # via gitdb soupsieve==2.5 # via beautifulsoup4 statmake==0.6.0 # via gftools strictyaml==1.7.3 # via gftools tabulate==0.9.0 # via gftools toml==0.10.2 # via nanoemoji tqdm==4.66.2 # via afdko ttfautohint-py==0.5.1 # via gftools typing-extensions==4.11.0 # via pygithub ufo2ft[cffsubr,compreffor]==3.2.1 # via # fontmake # nanoemoji ufolib2[json]==0.16.0 # via # babelfont # bumpfontversion # fontmake # glyphslib # nanoemoji # vttlib ufonormalizer==0.6.1 # via afdko ufoprocessor==1.9.0 # via afdko uharfbuzz==0.39.1 # via # hyperglot # vharfbuzz unicodedata2==15.1.0 # via # fonttools # glyphsets # hyperglot unidecode==1.3.8 # via gftools urllib3==2.2.1 # via # pygithub # requests vharfbuzz==0.3.0 # via gftools vttlib==0.12.0 # via # -r requirements.in # gftools vttmisc==0.0.5 # via -r requirements.in wrapt==1.16.0 # via deprecated zopfli==0.2.3 # via # fonttools # nanoemoji # The following packages are considered to be unsafe in a requirements file: # setuptools ================================================ FILE: sources/CascadiaCode-Bold.ufo/features.fea ================================================ # automatic @Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ]; # automatic @Lowercase = [ Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol ]; @OpeningBracket = [ bracketleft braceleft parenleft ]; @Digit = [ zero one two three four five six seven eight nine segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 ]; @HexDigit = [ @Digit a b c d e f A B C D E F ]; @ClosingBracket = [ bracketright braceright parenright ]; @Tall = [ @Uppercase @Digit @OpeningBracket @ClosingBracket bar ]; @NotSpace = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol thetamod zmod zero one two three four five six seven eight nine zero.zero zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq anoteleia questiongreek .notdef baht cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand strictlyequivalentto vectorOrCrossProduct greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga greater_equal.liga greater_greater.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC by blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo LIG ]; @NRW = [ behDotless-ar behDotless-ar.fina beh-ar beh-ar.fina peh-ar peh-ar.fina beeh-ar beeh-ar.fina beheh-ar beheh-ar.fina teh-ar teh-ar.fina tehRing-ar tehRing-ar.fina tehThreedotsdown-ar tehThreedotsdown-ar.fina theh-ar theh-ar.fina tteh-ar tteh-ar.fina tteheh-ar tteheh-ar.fina teheh-ar teheh-ar.fina behThreedotshorizontalbelow-ar behThreedotshorizontalbelow-ar.fina behThreedotsupabove-ar behThreedotsupabove-ar.fina behThreedotsupbelow-ar behThreedotsupbelow-ar.fina tehThreedotsupbelow-ar tehThreedotsupbelow-ar.fina behTwodotsbelowDotabove-ar behTwodotsbelowDotabove-ar.fina behVinvertedbelow-ar behVinvertedbelow-ar.fina behVabove-ar behVabove-ar.fina behVbelow-ar behVbelow-ar.fina behhamzaabove-ar behhamzaabove-ar.fina seen-ar seen-ar.fina seenDotbelowDotabove-ar seenDotbelowDotabove-ar.fina seenThreedotsbelow-ar seenThreedotsbelow-ar.fina sheen-ar sheen-ar.fina sheenDotbelow-ar sheenDotbelow-ar.fina seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedots-ar.fina sad-ar sad-ar.fina sadTwodotsbelow-ar sadTwodotsbelow-ar.fina sadThreedots-ar sadThreedots-ar.fina sadThreedotsbelow-ar sadThreedotsbelow-ar.fina dad-ar dad-ar.fina dadDotbelow-ar dadDotbelow-ar.fina feh-ar feh-ar.fina veh-ar veh-ar.fina fehDotless-ar fehDotless-ar.fina fehDotMovedbelow-ar fehDotbelow-ar fehDotbelow-ar.fina fehThreedotsbelow-ar fehThreedotsbelow-ar.fina fehDotbelowThreedotsabove-ar fehDotbelowThreedotsabove-ar.fina peheh-ar peheh-ar.fina seenFourdotsabove-ar seenFourdotsabove-ar.fina fehTwodotsbelow-ar fehTwodotsbelow-ar.fina fehThreedotsupbelow-ar fehThreedotsupbelow-ar.fina seenTwodotshorizontalabove-ar seenTwodotshorizontalabove-ar.fina seenTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar.fina seenFourabove-ar seenFourabove-ar.fina seenVinvertedabove-ar seenVinvertedabove-ar.fina seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedots-ar.fina behMeemabove-ar behMeemabove-ar.fina pehMeemabove-ar pehMeemabove-ar.fina tehTehabove-ar tehTehabove-ar.fina ]; @EXD = [ behDotless-ar.alt behDotless-ar.fina.alt beh-ar.alt beh-ar.fina.alt peh-ar.alt peh-ar.fina.alt beeh-ar.alt beeh-ar.fina.alt beheh-ar.alt beheh-ar.fina.alt teh-ar.alt teh-ar.fina.alt tehRing-ar.alt tehRing-ar.fina.alt tehThreedotsdown-ar.alt tehThreedotsdown-ar.fina.alt theh-ar.alt theh-ar.fina.alt tteh-ar.alt tteh-ar.fina.alt tteheh-ar.alt tteheh-ar.fina.alt teheh-ar.alt teheh-ar.fina.alt behThreedotshorizontalbelow-ar.alt behThreedotshorizontalbelow-ar.fina.alt behThreedotsupabove-ar.alt behThreedotsupabove-ar.fina.alt behThreedotsupbelow-ar.alt behThreedotsupbelow-ar.fina.alt tehThreedotsupbelow-ar.alt tehThreedotsupbelow-ar.fina.alt behTwodotsbelowDotabove-ar.alt behTwodotsbelowDotabove-ar.fina.alt behVinvertedbelow-ar.alt behVinvertedbelow-ar.fina.alt behVabove-ar.alt behVabove-ar.fina.alt behVbelow-ar.alt behVbelow-ar.fina.alt behhamzaabove-ar.alt behhamzaabove-ar.fina.alt seen-ar.alt seen-ar.fina.alt seenDotbelowDotabove-ar.alt seenDotbelowDotabove-ar.fina.alt seenThreedotsbelow-ar.alt seenThreedotsbelow-ar.fina.alt sheen-ar.alt sheen-ar.fina.alt sheenDotbelow-ar.alt sheenDotbelow-ar.fina.alt seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt sad-ar.alt sad-ar.fina.alt sadTwodotsbelow-ar.alt sadTwodotsbelow-ar.fina.alt sadThreedots-ar.alt sadThreedots-ar.fina.alt sadThreedotsbelow-ar.alt sadThreedotsbelow-ar.fina.alt dad-ar.alt dad-ar.fina.alt dadDotbelow-ar.alt dadDotbelow-ar.fina.alt feh-ar.alt feh-ar.fina.alt veh-ar.alt veh-ar.fina.alt fehDotless-ar.alt fehDotless-ar.fina.alt fehDotMovedbelow-ar.alt fehDotbelow-ar.alt fehDotbelow-ar.fina.alt fehThreedotsbelow-ar.alt fehThreedotsbelow-ar.fina.alt fehDotbelowThreedotsabove-ar.alt fehDotbelowThreedotsabove-ar.fina.alt peheh-ar.alt peheh-ar.fina.alt seenFourdotsabove-ar.alt seenFourdotsabove-ar.fina.alt fehTwodotsbelow-ar.alt fehTwodotsbelow-ar.fina.alt fehThreedotsupbelow-ar.alt fehThreedotsupbelow-ar.fina.alt seenTwodotsverticalabove-ar.alt seenTwodotsverticalabove-ar.fina.alt seenTahTwodotshorizontalabove-ar.alt seenTahTwodotshorizontalabove-ar.fina.alt seenFourabove-ar.alt seenFourabove-ar.fina.alt seenVinvertedabove-ar.alt seenVinvertedabove-ar.fina.alt seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt behMeemabove-ar.alt behMeemabove-ar.fina.alt pehMeemabove-ar.alt pehMeemabove-ar.fina.alt tehTehabove-ar.alt tehTehabove-ar.fina.alt ]; @beh1 = [ beh-ar.init peh-ar.init beeh-ar.init beheh-ar.init teh-ar.init tehRing-ar.init tehThreedotsdown-ar.init theh-ar.init tteh-ar.init tteheh-ar.init teheh-ar.init behThreedotshorizontalbelow-ar.init behThreedotsupabove-ar.init behThreedotsupbelow-ar.init behTwodotsbelowDotabove-ar.init behVinvertedbelow-ar.init behVabove-ar.init behVbelow-ar.init noon-ar.init noonghunna-ar.init noonAfrican-ar.init hehgoal-ar.init yeh-ar.init yehHamzaabove-ar.init yehVabove-ar.init yehTwodotsbelowHamzaabove-ar.init yehTwodotsbelowDotabove-ar.init yehVinverted-farsi.init yehTwodotsabove-farsi.init yehThreedotsabove-farsi.init yehTwoabove-farsi.init yehThreeabove-farsi.init yehFourbelow-farsi.init yehKashmiri-ar.init yehThreedotsbelow-ar.init yehbarreeTwoabove-ar.init yehbarreeThreeabove-ar.init highhamzaYeh-ar.init noonTwodotsbelow-ar.init noonTahabove-ar.init noonVabove-ar.init behMeemabove-ar.init pehMeemabove-ar.init tehTehabove-ar.init yehTwodotsbelowNoonabove-ar.init noonThreedotsabove-ar.init noonDotbelow-ar.init rnoon-ar.init noonRing-ar.init hehgoalHamzaabove-ar.init yeh-farsi.init e-ar.init ]; @beh2 = [ beh-ar.init.alt peh-ar.init.alt beeh-ar.init.alt beheh-ar.init.alt teh-ar.init.alt tehRing-ar.init.alt tehThreedotsdown-ar.init.alt theh-ar.init.alt tteh-ar.init.alt tteheh-ar.init.alt teheh-ar.init.alt behThreedotshorizontalbelow-ar.init.alt behThreedotsupabove-ar.init.alt behThreedotsupbelow-ar.init.alt behTwodotsbelowDotabove-ar.init.alt behVinvertedbelow-ar.init.alt behVabove-ar.init.alt behVbelow-ar.init.alt noon-ar.init.alt noonghunna-ar.init.alt noonAfrican-ar.init.alt hehgoal-ar.init.alt yeh-ar.init.alt yehHamzaabove-ar.init.alt yehVabove-ar.init.alt yehTwodotsbelowHamzaabove-ar.init.alt yehTwodotsbelowDotabove-ar.init.alt yehVinverted-farsi.init.alt yehTwodotsabove-farsi.init.alt yehThreedotsabove-farsi.init.alt yehTwoabove-farsi.init.alt yehThreeabove-farsi.init.alt yehFourbelow-farsi.init.alt yehKashmiri-ar.init.alt yehThreedotsbelow-ar.init.alt yehbarreeTwoabove-ar.init.alt yehbarreeThreeabove-ar.init.alt highhamzaYeh-ar.init.alt noonTwodotsbelow-ar.init.alt noonTahabove-ar.init.alt noonVabove-ar.init.alt behMeemabove-ar.init.alt pehMeemabove-ar.init.alt tehTehabove-ar.init.alt yehTwodotsbelowNoonabove-ar.init.alt noonThreedotsabove-ar.init.alt noonDotbelow-ar.init.alt rnoon-ar.init.alt noonRing-ar.init.alt hehgoalHamzaabove-ar.init.alt yeh-farsi.init.alt e-ar.init.alt ]; @alef1 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzabelow-ar.fina alefWavyhamzaabove-ar.fina ]; @alef2 = [ alef-ar.fina.alt alef-ar.fina.short.alt alefHamzaabove-ar.fina.alt alefHamzabelow-ar.fina.alt alefMadda-ar.fina.alt alefWasla-ar.fina.alt alefTwoabove-ar.fina.alt alefThreeabove-ar.fina.alt alefWavyhamzabelow-ar.fina.alt alefWavyhamzaabove-ar.fina.alt ]; @arlig1 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzaabove-ar.fina alefWavyhamzabelow-ar.fina highhamzaAlef-ar.fina alefFathatan-ar.fina lam-ar.init lamVabove-ar.init lamDotabove-ar.init lamThreedotsabove-ar.init lamThreedotsbelow-ar.init lamDoublebar-ar.init lamBar-ar.init ]; @arlig2 = [ _alef-ar.fina.rlig _alef-ar.fina.short.rlig _alefHamzaabove-ar.fina.rlig _alefHamzabelow-ar.fina.rlig _alefMadda-ar.fina.rlig _alefWasla-ar.fina.rlig _alefTwoabove-ar.fina.rlig _alefThreeabove-ar.fina.rlig _highhamzaAlef-ar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _alefWavyhamzabelow-ar.fina.rlig _alefFathatan-ar.fina.rlig lam-ar.init.rlig lamVabove-ar.init.rlig lamDotabove-ar.init.rlig lamThreedotsabove-ar.init.rlig lamThreedotsbelow-ar.init.rlig lamDoublebar-ar.init.rlig lamBar-ar.init.rlig ]; @arlig3 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzaabove-ar.fina alefWavyhamzabelow-ar.fina highhamzaAlef-ar.fina alefFathatan-ar.fina lam-ar.medi lamVabove-ar.medi lamDotabove-ar.medi lamThreedotsabove-ar.medi lamThreedotsbelow-ar.medi lamDoublebar-ar.medi lamBar-ar.medi ]; @arlig4 = [ alef-ar.fina.rlig alef-ar.fina.short.rlig alefHamzaabove-ar.fina.rlig alefHamzabelow-ar.fina.rlig alefMadda-ar.fina.rlig alefWasla-ar.fina.rlig alefTwoabove-ar.fina.rlig alefThreeabove-ar.fina.rlig alefWavyhamzaabove-ar.fina.rlig alefWavyhamzabelow-ar.fina.rlig highhamzaAlef-ar.fina.rlig alefFathatan-ar.fina.rlig lam-ar.medi.rlig lamVabove-ar.medi.rlig lamDotabove-ar.medi.rlig lamThreedotsabove-ar.medi.rlig lamThreedotsbelow-ar.medi.rlig lamDoublebar-ar.medi.rlig lamBar-ar.medi.rlig ]; # Prefix: Languagesystems # automatic languagesystem DFLT dflt; languagesystem arab dflt; languagesystem latn dflt; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn PLK; languagesystem latn NLD; languagesystem cyrl dflt; languagesystem cyrl BGR; languagesystem cyrl SRB; languagesystem hebr dflt; feature aalt { # automatic feature calt; feature locl; feature subs; feature sinf; feature sups; feature numr; feature dnom; feature frac; feature ordn; feature case; feature ss02; feature zero; feature ss19; feature rclt; feature zero; feature ss20; } aalt; feature calt { ### Less - It is convenient to have this lookup set at the start. lookup less_asciitilde { ignore sub less less' asciitilde; ignore sub less' asciitilde asciitilde asciitilde; sub less_asciitilde.liga asciitilde' by LIG; sub less' asciitilde by less_asciitilde.liga; } less_asciitilde; lookup less_asciitilde_asciitilde { sub less_asciitilde_asciitilde.liga LIG asciitilde' by LIG; sub less_asciitilde.liga' LIG asciitilde by less_asciitilde_asciitilde.liga; } less_asciitilde_asciitilde; lookup less_asterisk { ignore sub less less' asterisk; ignore sub less' asterisk asterisk; sub less_asterisk.liga asterisk' by LIG; sub less' asterisk by less_asterisk.liga; } less_asterisk; lookup less_dollar { ignore sub less less' dollar; ignore sub less' dollar dollar; sub less_dollar.liga dollar' by LIG; sub less' dollar by less_dollar.liga; } less_dollar; lookup less_equal { ignore sub less less' equal; ignore sub less' equal equal; ignore sub parenleft question less' equal; ignore sub equal less' equal; ignore sub less' equal [less greater bar colon exclam slash]; sub less_equal.liga equal' by LIG; sub less' equal by less_equal.liga; } less_equal; lookup less_greater { ignore sub less less' greater; ignore sub less' greater greater; sub less_greater.liga greater' by LIG; sub less' greater by less_greater.liga; } less_greater; lookup less_plus { ignore sub less less' plus; ignore sub less' plus plus; sub less_plus.liga plus' by LIG; sub less' plus by less_plus.liga; } less_plus; lookup less_slash { ignore sub less less' slash; ignore sub less' slash slash; sub less_slash.liga slash' by LIG; sub less' slash by less_slash.liga; } less_slash; lookup less_bar { ignore sub less less' bar; ignore sub less' bar bar bar bar; ignore sub less' bar bar greater; sub less_bar.liga bar' by LIG; sub less' bar by less_bar.liga; } less_bar; lookup less_bar_bar { sub less_bar_bar.liga LIG bar' by LIG; sub less_bar.liga' LIG bar by less_bar_bar.liga; } less_bar_bar; lookup less_bar_bar_bar { sub less_bar_bar_bar.liga LIG LIG bar' by LIG; sub less_bar_bar.liga' LIG LIG bar by less_bar_bar_bar.liga; } less_bar_bar_bar; # generally it is useful to have the duplicating sequences in a row. This avoids potential badness. lookup less_less { ignore sub less less' less; ignore sub less' less less less; ignore sub less' less [asterisk plus dollar]; ignore sub [hyphen equal] less' less; ignore sub less' less hyphen; ignore sub less' less equal [equal less greater bar colon exclam slash]; ignore sub less' less less [asterisk plus dollar]; sub less_less.liga less' by LIG; sub less' less by less_less.liga; } less_less; lookup less_less_less { sub less_less_less.liga LIG less' by LIG; sub less_less.liga' LIG less by less_less_less.liga; } less_less_less; lookup less_asciitilde_greater { ignore sub less_asciitilde.liga' LIG greater greater; sub less_asciitilde_greater.liga LIG greater' by LIG; sub less_asciitilde.liga' LIG greater by less_asciitilde_greater.liga; } less_asciitilde_greater; lookup less_asterisk_greater { sub less_asterisk_greater.liga LIG greater' by LIG; sub less_asterisk.liga' LIG greater by less_asterisk_greater.liga; } less_asterisk_greater; lookup less_dollar_greater { sub less_dollar_greater.liga LIG greater' by LIG; sub less_dollar.liga' LIG greater by less_dollar_greater.liga; } less_dollar_greater; lookup less_plus_greater { sub less_plus_greater.liga LIG greater' by LIG; sub less_plus.liga' LIG greater by less_plus_greater.liga; } less_plus_greater; lookup less_slash_greater { ignore sub less_slash.liga' LIG greater greater; sub less_slash_greater.liga LIG greater' by LIG; sub less_slash.liga' LIG greater by less_slash_greater.liga; } less_slash_greater; lookup less_bar_greater { ignore sub less_bar.liga' LIG greater greater; sub less_bar_greater.liga LIG greater' by LIG; sub less_bar.liga' LIG greater by less_bar_greater.liga; } less_bar_greater; lookup less_exclam_hyphen_hyphen { ignore sub less less' exclam hyphen hyphen; ignore sub less' exclam hyphen hyphen hyphen; ignore sub parenleft question less' exclam hyphen hyphen; sub less_exclam_hyphen_hyphen.liga LIG LIG hyphen' by LIG; sub less_exclam_hyphen_hyphen.liga LIG hyphen' hyphen by LIG; sub less_exclam_hyphen_hyphen.liga exclam' hyphen hyphen by LIG; sub less' exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga; } less_exclam_hyphen_hyphen; ### Ampersand lookup ampersand_ampersand { ignore sub ampersand ampersand' ampersand; ignore sub ampersand' ampersand ampersand; sub ampersand_ampersand.liga ampersand' by LIG; sub ampersand' ampersand by ampersand_ampersand.liga; } ampersand_ampersand; ### Asciicircum lookup asciicircum_equal { ignore sub asciicircum asciicircum' equal; ignore sub asciicircum' equal equal; sub asciicircum_equal.liga equal' by LIG; sub asciicircum' equal by asciicircum_equal.liga; } asciicircum_equal; ### Asciitilde lookup asciitilde_asciitilde { ignore sub asciitilde asciitilde' asciitilde; ignore sub asciitilde' asciitilde asciitilde; sub asciitilde_asciitilde.liga asciitilde' by LIG; sub asciitilde' asciitilde by asciitilde_asciitilde.liga; } asciitilde_asciitilde; lookup asciitilde_at { ignore sub asciitilde asciitilde' at; ignore sub asciitilde' at at; sub asciitilde_at.liga at' by LIG; sub asciitilde' at by asciitilde_at.liga; } asciitilde_at; lookup asciitilde_greater { ignore sub asciitilde asciitilde' greater; ignore sub asciitilde' greater greater; sub asciitilde_greater.liga greater' by LIG; sub asciitilde' greater by asciitilde_greater.liga; } asciitilde_greater; lookup asciitilde_hyphen { ignore sub asciitilde asciitilde' hyphen; ignore sub asciitilde' hyphen hyphen; sub asciitilde_hyphen.liga hyphen' by LIG; sub asciitilde' hyphen by asciitilde_hyphen.liga; } asciitilde_hyphen; lookup asciitilde_asciitilde_greater { ignore sub asciitilde_asciitilde.liga' LIG greater greater; sub asciitilde_asciitilde_greater.liga LIG greater' by LIG; sub asciitilde_asciitilde.liga' LIG greater by asciitilde_asciitilde_greater.liga; } asciitilde_asciitilde_greater; lookup asciitilde_equal { ignore sub asciitilde asciitilde' equal; ignore sub asciitilde' equal equal; sub asciitilde_equal.liga equal' by LIG; sub asciitilde' equal by asciitilde_equal.liga; } asciitilde_equal; ### Asterisk lookup asterisk_asterisk { ignore sub asterisk asterisk' asterisk; ignore sub asterisk' asterisk asterisk asterisk; ignore sub slash asterisk' asterisk; ignore sub asterisk' asterisk slash; sub asterisk_asterisk.liga asterisk' by LIG; sub asterisk' asterisk by asterisk_asterisk.liga; } asterisk_asterisk; lookup asterisk_asterisk_asterisk { ignore sub asterisk_asterisk.liga' LIG asterisk slash; sub asterisk_asterisk_asterisk.liga LIG asterisk' by LIG; sub asterisk_asterisk.liga' LIG asterisk by asterisk_asterisk_asterisk.liga; } asterisk_asterisk_asterisk; lookup asterisk_greater { ignore sub asterisk asterisk' greater; ignore sub asterisk' greater greater; sub asterisk_greater.liga greater' by LIG; sub asterisk' greater by asterisk_greater.liga; } asterisk_greater; lookup asterisk_slash { ignore sub asterisk asterisk' slash; ignore sub asterisk' slash slash; ignore sub slash asterisk' slash; ignore sub asterisk' slash asterisk; sub asterisk_slash.liga slash' by LIG; sub asterisk' slash by asterisk_slash.liga; } asterisk_slash; lookup asterisk_parenright { ignore sub asterisk asterisk' parenright; ignore sub asterisk' parenright parenright; sub asterisk_parenright.liga parenright' by LIG; sub asterisk' parenright by asterisk_parenright.liga; } asterisk_parenright; ### Backslash lookup backslash_slash { ignore sub @NotSpace backslash' slash; ignore sub backslash' slash @NotSpace; sub backslash_slash.liga slash' by LIG; sub backslash' slash by backslash_slash.liga; } backslash_slash; lookup backslash_backslash { ignore sub backslash backslash' backslash; ignore sub backslash' backslash backslash; sub backslash_backslash.liga backslash' by LIG; sub backslash' backslash by backslash_backslash.liga; } backslash_backslash; ### Bar lookup bar_bar { ignore sub bar bar' bar; ignore sub bar' bar bar bar; ignore sub [hyphen equal] bar' bar; ignore sub bar' bar [hyphen equal]; ignore sub bar' bar bar [hyphen equal]; ignore sub bar' bar equal [equal less greater bar colon exclam slash]; ignore sub bar bar' bar greater; ignore sub [less greater] bar' bar [less greater]; ignore sub less bar' bar; ignore sub less bar bar'; sub bar_bar.liga bar' by LIG; sub bar' bar by bar_bar.liga; } bar_bar; lookup bar_bar_bar { sub bar_bar_bar.liga LIG bar' by LIG; sub bar_bar.liga' LIG bar by bar_bar_bar.liga; } bar_bar_bar; lookup bar_greater { ignore sub bar bar' greater; ignore sub bar' greater greater; ignore sub less bar bar' greater; sub bar_greater.liga greater' by LIG; sub bar' greater by bar_greater.liga; } bar_greater; lookup bar_braceright { ignore sub bar bar' braceright; ignore sub bar' braceright braceright; ignore sub braceleft bar' braceright; sub bar_braceright.liga braceright' by LIG; sub bar' braceright by bar_braceright.liga; } bar_braceright; lookup bar_bracketright { ignore sub bar bar' bracketright; ignore sub bar' bracketright bracketright; ignore sub bracketleft bar' bracketright; sub bar_bracketright.liga bracketright' by LIG; sub bar' bracketright by bar_bracketright.liga; } bar_bracketright; lookup bar_bar_greater { ignore sub bar_bar.liga' LIG greater greater; sub bar_bar_greater.liga LIG greater' by LIG; sub bar_bar.liga' LIG greater by bar_bar_greater.liga; } bar_bar_greater; lookup bar_bar_bar_greater { ignore sub bar_bar_bar.liga' LIG LIG greater greater; sub bar_bar_bar_greater.liga LIG LIG greater' by LIG; sub bar_bar_bar.liga' LIG LIG greater by bar_bar_bar_greater.liga; } bar_bar_bar_greater; ### Brace left lookup braceleft_bar { ignore sub braceleft braceleft' bar; ignore sub braceleft' bar bar; ignore sub braceleft' bar braceright; sub braceleft_bar.liga bar' by LIG; sub braceleft' bar by braceleft_bar.liga; } braceleft_bar; ### Brace right lookup braceright_numbersign { ignore sub braceright braceright' numbersign; ignore sub braceright' numbersign numbersign; sub braceright_numbersign.liga numbersign' by LIG; sub braceright' numbersign by braceright_numbersign.liga; } braceright_numbersign; ### Bracket left lookup bracketleft_bar { ignore sub bracketleft bracketleft' bar; ignore sub bracketleft' bar bar; ignore sub bracketleft' bar bracketright; sub bracketleft_bar.liga bar' by LIG; sub bracketleft' bar by bracketleft_bar.liga; } bracketleft_bar; ### Bracket right lookup bracketright_numbersign { ignore sub bracketright bracketright' numbersign; ignore sub bracketright' numbersign numbersign; sub bracketright_numbersign.liga numbersign' by LIG; sub bracketright' numbersign by bracketright_numbersign.liga; } bracketright_numbersign; ### Colon lookup colon_colon { ignore sub colon colon' colon; ignore sub colon' colon colon colon; ignore sub parenleft question colon' colon; ignore sub colon' colon [less greater]; ignore sub [less greater] colon' colon; sub colon_colon.liga colon' by LIG; sub colon' colon by colon_colon.liga; } colon_colon; lookup colon_colon_colon { sub colon_colon_colon.liga LIG colon' by LIG; sub colon_colon.liga' LIG colon by colon_colon_colon.liga; } colon_colon_colon; lookup colon_equal { ignore sub colon colon' equal; ignore sub colon' equal equal; ignore sub parenleft question colon' equal; ignore sub equal colon' equal; sub colon_equal.liga equal' by LIG; sub colon' equal by colon_equal.liga; } colon_equal; lookup colon_colon_equal { ignore sub colon_colon.liga' LIG equal equal; sub colon_colon_equal.liga LIG equal' by LIG; sub colon_colon.liga' LIG equal by colon_colon_equal.liga; } colon_colon_equal; lookup colon_slash_slash { ignore sub colon colon' slash slash; ignore sub colon' slash slash slash; sub colon_slash_slash.liga LIG slash' by LIG; sub colon_slash_slash.liga slash' slash by LIG; sub colon' slash slash by colon_slash_slash.liga; } colon_slash_slash; ## Dollar lookup dollar_greater { ignore sub dollar dollar' greater; ignore sub dollar' greater greater; sub dollar_greater.liga greater' by LIG; sub dollar' greater by dollar_greater.liga; } dollar_greater; ### Exclam (for equal see below) lookup exclam_equal { ignore sub exclam exclam' equal; ignore sub exclam' equal equal equal; ignore sub parenleft question exclam' equal; ignore sub parenleft question less exclam' equal; ignore sub equal exclam' equal; sub exclam_equal.liga equal' by LIG; sub exclam' equal by exclam_equal.liga; } exclam_equal; lookup exclam_equal_equal { sub exclam_equal_equal.liga LIG equal' by LIG; sub exclam_equal.liga' LIG equal by exclam_equal_equal.liga; } exclam_equal_equal; lookup exclam_exclam { ignore sub exclam exclam' exclam; ignore sub exclam' exclam exclam; ignore sub parenleft question exclam' exclam; ignore sub parenleft question less exclam' exclam; sub exclam_exclam.liga exclam' by LIG; sub exclam' exclam by exclam_exclam.liga; } exclam_exclam; lookup exclam_exclam_period { ignore sub exclam_exclam.liga' LIG period period; sub exclam_exclam_period.liga LIG period' by LIG; sub exclam_exclam.liga' LIG period by exclam_exclam_period.liga; } exclam_exclam_period; lookup exclam_period { ignore sub exclam exclam' period; ignore sub exclam' period period; sub exclam_period.liga period' by LIG; sub exclam' period by exclam_period.liga; } exclam_period; lookup exclam_colon { ignore sub exclam exclam' colon; ignore sub exclam' colon colon; sub exclam_colon.liga colon' by LIG; sub exclam' colon by exclam_colon.liga; } exclam_colon; ## Equal - Made sense to shift this below the exclam to avoid issues lookup equal_equal { ignore sub equal equal' equal; ignore sub equal' equal equal equal; ignore sub parenleft question equal' equal; ignore sub parenleft question less equal' equal; ignore sub less question equal' equal; ignore sub bracketleft equal' equal; ignore sub equal' equal bracketright; ignore sub equal [colon exclam] equal' equal; ignore sub [less greater bar slash] equal' equal; ignore sub equal' equal [less greater bar slash] ; ignore sub equal' equal [colon exclam] equal; sub equal_equal.liga equal' by LIG; sub equal' equal by equal_equal.liga; } equal_equal; lookup equal_equal_equal { sub equal_equal_equal.liga LIG equal' by LIG; sub equal_equal.liga' LIG equal by equal_equal_equal.liga; } equal_equal_equal; ### Hyphen lookup hyphen_asciitilde { ignore sub hyphen hyphen' asciitilde; ignore sub hyphen' asciitilde asciitilde; sub hyphen_asciitilde.liga asciitilde' by LIG; sub hyphen' asciitilde by hyphen_asciitilde.liga; } hyphen_asciitilde; lookup hyphen_hyphen { ignore sub hyphen hyphen' hyphen; ignore sub hyphen' hyphen hyphen hyphen; ignore sub [less greater bar] hyphen' hyphen; ignore sub hyphen' hyphen [less greater bar]; sub hyphen_hyphen.liga hyphen' by LIG; sub hyphen' hyphen by hyphen_hyphen.liga; } hyphen_hyphen; lookup hyphen_hyphen_hyphen { ignore sub hyphen_hyphen.liga' LIG hyphen [less greater bar]; sub hyphen_hyphen_hyphen.liga LIG hyphen' by LIG; sub hyphen_hyphen.liga' LIG hyphen by hyphen_hyphen_hyphen.liga; } hyphen_hyphen_hyphen; ### Greater lookup greater_greater { ignore sub greater greater' greater; ignore sub greater' greater greater greater; ignore sub [asterisk plus dollar] greater' greater; ignore sub [hyphen equal] greater' greater; ignore sub greater' greater hyphen; ignore sub greater' greater equal [equal less greater bar colon exclam slash]; sub greater_greater.liga greater' by LIG; sub greater' greater by greater_greater.liga; } greater_greater; lookup greater_greater_greater { sub greater_greater_greater.liga LIG greater' by LIG; sub greater_greater.liga' LIG greater by greater_greater_greater.liga; } greater_greater_greater; lookup greater_equal { ignore sub greater greater' equal; ignore sub greater' equal equal; ignore sub equal greater' equal; ignore sub greater' equal [less greater bar colon exclam slash]; sub greater_equal.liga equal' by LIG; sub greater' equal by greater_equal.liga; } greater_equal; ### Less moved to top of CALT ### Numbersign lookup numbersign_braceleft { ignore sub numbersign numbersign' braceleft; ignore sub numbersign' braceleft braceleft; sub numbersign_braceleft.liga braceleft' by LIG; sub numbersign' braceleft by numbersign_braceleft.liga; } numbersign_braceleft; lookup numbersign_bracketleft { ignore sub numbersign numbersign' bracketleft; ignore sub numbersign' bracketleft bracketleft; sub numbersign_bracketleft.liga bracketleft' by LIG; sub numbersign' bracketleft by numbersign_bracketleft.liga; } numbersign_bracketleft; lookup numbersign_colon { ignore sub numbersign numbersign' colon; ignore sub numbersign' colon colon; sub numbersign_colon.liga colon' by LIG; sub numbersign' colon by numbersign_colon.liga; } numbersign_colon; lookup numbersign_equal { ignore sub numbersign numbersign' equal; ignore sub numbersign' equal equal; sub numbersign_equal.liga equal' by LIG; sub numbersign' equal by numbersign_equal.liga; } numbersign_equal; lookup numbersign_exclam { ignore sub numbersign numbersign' exclam; ignore sub numbersign' exclam exclam; sub numbersign_exclam.liga exclam' by LIG; sub numbersign' exclam by numbersign_exclam.liga; } numbersign_exclam; lookup numbersign_parenleft { ignore sub numbersign numbersign' parenleft; ignore sub numbersign' parenleft parenleft; sub numbersign_parenleft.liga parenleft' by LIG; sub numbersign' parenleft by numbersign_parenleft.liga; } numbersign_parenleft; lookup numbersign_question { ignore sub numbersign numbersign' question; ignore sub numbersign' question question; sub numbersign_question.liga question' by LIG; sub numbersign' question by numbersign_question.liga; } numbersign_question; lookup numbersign_underscore { ignore sub numbersign numbersign' underscore; ignore sub numbersign' underscore underscore; sub numbersign_underscore.liga underscore' by LIG; sub numbersign' underscore by numbersign_underscore.liga; } numbersign_underscore; lookup numbersign_underscore_parenleft { ignore sub numbersign_underscore.liga' LIG parenleft parenleft; sub numbersign_underscore_parenleft.liga LIG parenleft' by LIG; sub numbersign_underscore.liga' LIG parenleft by numbersign_underscore_parenleft.liga; } numbersign_underscore_parenleft; ### Paren left lookup parenleft_asterisk { ignore sub parenleft parenleft' asterisk; ignore sub parenleft' asterisk asterisk; sub parenleft_asterisk.liga asterisk' by LIG; sub parenleft' asterisk by parenleft_asterisk.liga; } parenleft_asterisk; ### Percent lookup percent_percent { ignore sub percent percent' percent; ignore sub percent' percent percent; sub percent_percent.liga percent' by LIG; sub percent' percent by percent_percent.liga; } percent_percent; ### Period lookup period_equal { ignore sub period period' equal; ignore sub period' equal equal; sub period_equal.liga equal' by LIG; sub period' equal by period_equal.liga; } period_equal; lookup period_period { ignore sub period period' period; ignore sub period' period period period; sub period_period.liga period' by LIG; sub period' period by period_period.liga; } period_period; lookup period_period_period { sub period_period_period.liga LIG period' by LIG; sub period_period.liga' LIG period by period_period_period.liga; } period_period_period; lookup period_question { ignore sub period period' question; ignore sub period' question question; sub period_question.liga question' by LIG; sub period' question by period_question.liga; } period_question; lookup period_hyphen { ignore sub period period' hyphen; ignore sub period' hyphen hyphen; sub period_hyphen.liga hyphen' by LIG; sub period' hyphen by period_hyphen.liga; } period_hyphen; lookup period_period_equal { ignore sub period_period.liga' LIG equal equal; sub period_period_equal.liga LIG equal' by LIG; sub period_period.liga' LIG equal by period_period_equal.liga; } period_period_equal; lookup period_period_less { ignore sub period_period.liga' LIG less less; sub period_period_less.liga LIG less' by LIG; sub period_period.liga' LIG less by period_period_less.liga; } period_period_less; ### Plus lookup plus_greater { ignore sub plus plus' greater; ignore sub plus' greater greater; sub plus_greater.liga greater' by LIG; sub plus' greater by plus_greater.liga; } plus_greater; lookup plus_plus { ignore sub plus plus' plus; ignore sub plus' plus plus plus; sub plus_plus.liga plus' by LIG; sub plus' plus by plus_plus.liga; } plus_plus; lookup plus_plus_plus { ignore sub plus_plus.liga' LIG plus plus; sub plus_plus_plus.liga LIG plus' by LIG; sub plus_plus.liga' LIG plus by plus_plus_plus.liga; } plus_plus_plus; ### Question lookup question_equal { ignore sub question question' equal; ignore sub question' equal equal; ignore sub parenleft question' equal; ignore sub less question' equal; sub question_equal.liga equal' by LIG; sub question' equal by question_equal.liga; } question_equal; lookup question_period { ignore sub question question' period; ignore sub question' period period; sub question_period.liga period' by LIG; sub question' period by question_period.liga; } question_period; lookup question_question { ignore sub question question' question; ignore sub question' question question; sub question_question.liga question' by LIG; sub question' question by question_question.liga; } question_question; lookup question_question_equal { sub question_question_equal.liga LIG equal' by LIG; sub question_question.liga' LIG equal by question_question_equal.liga; } question_question_equal; lookup question_colon { ignore sub question question' colon; ignore sub question' colon colon; sub question_colon.liga colon' by LIG; sub question' colon by question_colon.liga; } question_colon; ### Semicolon lookup semicolon_semicolon { ignore sub semicolon semicolon' semicolon; ignore sub semicolon' semicolon semicolon; sub semicolon_semicolon.liga semicolon' by LIG; sub semicolon' semicolon by semicolon_semicolon.liga; } semicolon_semicolon; ### Slash lookup slash_asterisk { ignore sub slash slash' asterisk; ignore sub slash' asterisk asterisk; ignore sub slash' asterisk slash; ignore sub asterisk slash' asterisk; sub slash_asterisk.liga asterisk' by LIG; sub slash' asterisk by slash_asterisk.liga; } slash_asterisk; lookup slash_greater { ignore sub slash slash' greater; ignore sub slash' greater greater; sub slash_greater.liga greater' by LIG; sub slash' greater by slash_greater.liga; } slash_greater; lookup slash_slash { ignore sub slash slash' slash; ignore sub slash' slash slash slash; ignore sub equal slash' slash; ignore sub slash' slash equal; sub slash_slash.liga slash' by LIG; sub slash' slash by slash_slash.liga; } slash_slash; lookup slash_slash_slash { sub slash_slash_slash.liga LIG slash' by LIG; sub slash_slash.liga' LIG slash by slash_slash_slash.liga; } slash_slash_slash; lookup slash_backslash { ignore sub @NotSpace slash' backslash; ignore sub slash' backslash @NotSpace; sub slash_backslash.liga backslash' by LIG; sub slash' backslash by slash_backslash.liga; } slash_backslash; ### WWW lookup w_w_w { ignore sub w w' w w; ignore sub w' w w w; sub w_w_w.liga LIG w' by LIG; sub w_w_w.liga w' w by LIG; sub w' w w by w_w_w.liga; } w_w_w; ### Vertical-align colon/greater/less # :> :< >: <: # :>: :<: # <:> >:< <:< >:> # <::> <::< >::< >::> # <:::> <:::< >:::< >:::> # <::::> <::::< >::::< >::::> lookup center { #574 :>= :<= ignore sub colon' [less greater] [equal hyphen]; ignore sub colon colon' [less greater]; # ignores the :::< case # middles & ends sub [less.center greater.center colon.center] colon' by colon.center; sub colon.center [less greater]' by [less.center greater.center]; # starts sub [less greater]' colon by [less.center greater.center]; sub colon' [less greater] by colon.center; } center; lookup equal_arrows { # Disable ||| ignore sub bar bar' bar equal; ignore sub bar bar' equal; ignore sub [equal_start.seq equal_middle.seq] bar' bar bar; # equal middle & end sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' [equal less greater bar slash colon exclam] by equal_middle.seq; sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' [equal less greater bar slash colon exclam] by equal_middle.seq; sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' by equal_end.seq; sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' by equal_end.seq; # double middles sub [equal_start.seq equal_middle.seq] less_less_equal_middle.seq less' equal by LIG; sub [equal_start.seq equal_middle.seq] less' less equal by less_less_equal_middle.seq; sub [equal_start.seq equal_middle.seq] greater_greater_equal_middle.seq greater' equal by LIG; sub [equal_start.seq equal_middle.seq] greater' greater equal by greater_greater_equal_middle.seq; sub [equal_start.seq equal_middle.seq] bar_bar_equal_middle.seq bar' equal by LIG; sub [equal_start.seq equal_middle.seq] bar' bar equal by bar_bar_equal_middle.seq; sub [equal_start.seq equal_middle.seq] slash_slash_equal_middle.seq slash' equal by LIG; sub [equal_start.seq equal_middle.seq] slash' slash equal by slash_slash_equal_middle.seq; # single middles sub [equal_start.seq equal_middle.seq] less' equal by less_equal_middle.seq; sub [equal_start.seq equal_middle.seq] greater' equal by greater_equal_middle.seq; sub [equal_start.seq equal_middle.seq] bar' equal by bar_equal_middle.seq; sub [equal_start.seq equal_middle.seq] slash' equal by slash_equal_middle.seq; sub [equal_start.seq equal_middle.seq] colon' equal by colon_equal_middle.seq; sub [equal_start.seq equal_middle.seq] exclam' equal by exclam_equal_middle.seq; # double ends sub [equal_start.seq equal_middle.seq] less_less_equal_end.seq less' by LIG; sub [equal_start.seq equal_middle.seq] less' less by less_less_equal_end.seq; sub [equal_start.seq equal_middle.seq] greater_greater_equal_end.seq greater' by LIG; sub [equal_start.seq equal_middle.seq] greater' greater by greater_greater_equal_end.seq; sub [equal_start.seq equal_middle.seq] bar_bar_equal_end.seq bar' by LIG; sub [equal_start.seq equal_middle.seq] bar' bar by bar_bar_equal_end.seq; sub [equal_start.seq equal_middle.seq] slash_slash_equal_end.seq slash' by LIG; sub [equal_start.seq equal_middle.seq] slash' slash by slash_slash_equal_end.seq; # single ends sub [equal_start.seq equal_middle.seq] less' by less_equal_end.seq; sub [equal_start.seq equal_middle.seq] greater' by greater_equal_end.seq; sub [equal_start.seq equal_middle.seq] bar' by bar_equal_end.seq; sub [equal_start.seq equal_middle.seq] slash' by slash_equal_end.seq; # double beginnings sub less_less_equal_start.seq less' equal by LIG; sub less' less equal by less_less_equal_start.seq; sub greater_greater_equal_start.seq greater' equal by LIG; sub greater' greater equal by greater_greater_equal_start.seq; sub bar_bar_equal_start.seq bar' equal by LIG; sub bar' bar equal by bar_bar_equal_start.seq; sub slash_slash_equal_start.seq slash' equal by LIG; sub slash' slash equal by slash_slash_equal_start.seq; # Disable >=< #548 sub greater' equal less [equal less] by greater_equal_start.seq; ignore sub greater' equal less; # Disable =< #479 #468 #424 #406 #355 #305 sub equal' less [equal less] by equal_start.seq; # Disable =/ #1056 sub equal' slash [equal slash] by equal_start.seq; # single beginnings sub less' equal [equal less greater bar slash colon exclam] by less_equal_start.seq; # disable >= <= as they're used in math sub greater' equal [equal less greater bar slash colon exclam] by greater_equal_start.seq; sub bar' equal [equal less greater bar slash colon exclam] by bar_equal_start.seq; # disable |= sub slash' equal by slash_equal_start.seq; sub equal' [equal greater bar colon exclam] by equal_start.seq; } equal_arrows; ### Arbitrary-length arrows #346 lookup hyphen_arrows { # Disable ||| ignore sub bar bar' bar hyphen; ignore sub bar bar' hyphen; ignore sub [hyphen_start.seq hyphen_middle.seq] bar' bar bar; # hyphen middle & end sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' [hyphen less greater bar] by hyphen_middle.seq; sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' [hyphen less greater bar] by hyphen_middle.seq; sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' by hyphen_end.seq; sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' by hyphen_end.seq; # double middles sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_middle.seq less' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] less' less hyphen by less_less_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_middle.seq greater' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] greater' greater hyphen by greater_greater_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_middle.seq bar' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] bar' bar hyphen by bar_bar_hyphen_middle.seq; # single middles sub [hyphen_start.seq hyphen_middle.seq] less' hyphen by less_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] greater' hyphen by greater_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] bar' hyphen by bar_hyphen_middle.seq; # double ends sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_end.seq less' by LIG; sub [hyphen_start.seq hyphen_middle.seq] less' less by less_less_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_end.seq greater' by LIG; sub [hyphen_start.seq hyphen_middle.seq] greater' greater by greater_greater_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_end.seq bar' by LIG; sub [hyphen_start.seq hyphen_middle.seq] bar' bar by bar_bar_hyphen_end.seq; # single ends sub [hyphen_start.seq hyphen_middle.seq] less' by less_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] greater' by greater_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] bar' by bar_hyphen_end.seq; # double beginnings sub less_less_hyphen_start.seq less' hyphen by LIG; sub less' less hyphen by less_less_hyphen_start.seq; sub greater_greater_hyphen_start.seq greater' hyphen by LIG; sub greater' greater hyphen by greater_greater_hyphen_start.seq; sub bar_bar_hyphen_start.seq bar' hyphen by LIG; sub bar' bar hyphen by bar_bar_hyphen_start.seq; # single beginnings sub less' hyphen by less_hyphen_start.seq; sub greater' hyphen by greater_hyphen_start.seq; sub bar' hyphen by bar_hyphen_start.seq; sub hyphen' [hyphen less greater bar] by hyphen_start.seq; } hyphen_arrows; lookup numbersigns { # middle parts sub [numbersign_start.seq numbersign_middle.seq] numbersign' numbersign by numbersign_middle.seq; # ends sub [numbersign_start.seq numbersign_middle.seq] numbersign' by numbersign_end.seq; # beginnings sub numbersign' numbersign by numbersign_start.seq; } numbersigns; lookup underscores { # middle parts sub [underscore_start.seq underscore_middle.seq] bar' underscore by bar_underscore_middle.seq; sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' bar underscore by underscore_middle.seq; sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' underscore by underscore_middle.seq; # ends sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' by underscore_end.seq; # beginnings sub underscore' bar underscore by underscore_start.seq; sub underscore' underscore by underscore_start.seq; } underscores; #Other non-ligature bits sub dcaron' [lacute lcaron lcommaaccent ldot lslash b h k l hbar hcircumflex kcommaaccent @Uppercase] by dcaron.alt; # Arabic test lookup arabiclong1 { script arab; lookupflag IgnoreMarks RightToLeft; sub @NRW' by @EXD; } arabiclong1; lookup arabiclong2 { script arab; lookupflag IgnoreMarks RightToLeft; sub @NRW' by @EXD; sub behDotless-ar.alt' by behDotless-ar.alt LIG; sub behDotless-ar.fina.alt' by behDotless-ar.fina.alt LIG; sub beh-ar.alt' by beh-ar.alt LIG; sub beh-ar.fina.alt' by beh-ar.fina.alt LIG; sub peh-ar.alt' by peh-ar.alt LIG; sub peh-ar.fina.alt' by peh-ar.fina.alt LIG; sub beeh-ar.alt' by beeh-ar.alt LIG; sub beeh-ar.fina.alt' by beeh-ar.fina.alt LIG; sub beheh-ar.alt' by beheh-ar.alt LIG; sub beheh-ar.fina.alt' by beheh-ar.fina.alt LIG; sub teh-ar.alt' by teh-ar.alt LIG; sub teh-ar.fina.alt' by teh-ar.fina.alt LIG; sub tehRing-ar.alt' by tehRing-ar.alt LIG; sub tehRing-ar.fina.alt' by tehRing-ar.fina.alt LIG; sub tehThreedotsdown-ar.alt' by tehThreedotsdown-ar.alt LIG; sub tehThreedotsdown-ar.fina.alt' by tehThreedotsdown-ar.fina.alt LIG; sub theh-ar.alt' by theh-ar.alt LIG; sub theh-ar.fina.alt' by theh-ar.fina.alt LIG; sub tteh-ar.alt' by tteh-ar.alt LIG; sub tteh-ar.fina.alt' by tteh-ar.fina.alt LIG; sub tteheh-ar.alt' by tteheh-ar.alt LIG; sub tteheh-ar.fina.alt' by tteheh-ar.fina.alt LIG; sub teheh-ar.alt' by teheh-ar.alt LIG; sub teheh-ar.fina.alt' by teheh-ar.fina.alt LIG; sub behThreedotshorizontalbelow-ar.alt' by behThreedotshorizontalbelow-ar.alt LIG; sub behThreedotshorizontalbelow-ar.fina.alt' by behThreedotshorizontalbelow-ar.fina.alt LIG; sub behThreedotsupabove-ar.alt' by behThreedotsupabove-ar.alt LIG; sub behThreedotsupabove-ar.fina.alt' by behThreedotsupabove-ar.fina.alt LIG; sub behThreedotsupbelow-ar.alt' by behThreedotsupbelow-ar.alt LIG; sub behThreedotsupbelow-ar.fina.alt' by behThreedotsupbelow-ar.fina.alt LIG; sub tehThreedotsupbelow-ar.alt' by tehThreedotsupbelow-ar.alt LIG; sub tehThreedotsupbelow-ar.fina.alt' by tehThreedotsupbelow-ar.fina.alt LIG; sub behTwodotsbelowDotabove-ar.alt' by behTwodotsbelowDotabove-ar.alt LIG; sub behTwodotsbelowDotabove-ar.fina.alt' by behTwodotsbelowDotabove-ar.fina.alt LIG; sub behVinvertedbelow-ar.alt' by behVinvertedbelow-ar.alt LIG; sub behVinvertedbelow-ar.fina.alt' by behVinvertedbelow-ar.fina.alt LIG; sub behVabove-ar.alt' by behVabove-ar.alt LIG; sub behVabove-ar.fina.alt' by behVabove-ar.fina.alt LIG; sub behVbelow-ar.alt' by behVbelow-ar.alt LIG; sub behVbelow-ar.fina.alt' by behVbelow-ar.fina.alt LIG; sub behhamzaabove-ar.alt' by behhamzaabove-ar.alt LIG; sub behhamzaabove-ar.fina.alt' by behhamzaabove-ar.fina.alt LIG; sub seen-ar.alt' by seen-ar.alt LIG; sub seen-ar.fina.alt' by seen-ar.fina.alt LIG; sub seenDotbelowDotabove-ar.alt' by seenDotbelowDotabove-ar.alt LIG; sub seenDotbelowDotabove-ar.fina.alt' by seenDotbelowDotabove-ar.fina.alt LIG; sub seenThreedotsbelow-ar.alt' by seenThreedotsbelow-ar.alt LIG; sub seenThreedotsbelow-ar.fina.alt' by seenThreedotsbelow-ar.fina.alt LIG; sub sheen-ar.alt' by sheen-ar.alt LIG; sub sheen-ar.fina.alt' by sheen-ar.fina.alt LIG; sub sheenDotbelow-ar.alt' by sheenDotbelow-ar.alt LIG; sub sheenDotbelow-ar.fina.alt' by sheenDotbelow-ar.fina.alt LIG; sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG; sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG; sub sad-ar.alt' by sad-ar.alt LIG; sub sad-ar.fina.alt' by sad-ar.fina.alt LIG; sub sadTwodotsbelow-ar.alt' by sadTwodotsbelow-ar.alt LIG; sub sadTwodotsbelow-ar.fina.alt' by sadTwodotsbelow-ar.fina.alt LIG; sub sadThreedots-ar.alt' by sadThreedots-ar.alt LIG; sub sadThreedots-ar.fina.alt' by sadThreedots-ar.fina.alt LIG; sub sadThreedotsbelow-ar.alt' by sadThreedotsbelow-ar.alt LIG; sub sadThreedotsbelow-ar.fina.alt' by sadThreedotsbelow-ar.fina.alt LIG; sub dad-ar.alt' by dad-ar.alt LIG; sub dad-ar.fina.alt' by dad-ar.fina.alt LIG; sub dadDotbelow-ar.alt' by dadDotbelow-ar.alt LIG; sub dadDotbelow-ar.fina.alt' by dadDotbelow-ar.fina.alt LIG; sub feh-ar.alt' by feh-ar.alt LIG; sub feh-ar.fina.alt' by feh-ar.fina.alt LIG; sub veh-ar.alt' by veh-ar.alt LIG; sub veh-ar.fina.alt' by veh-ar.fina.alt LIG; sub fehDotless-ar.alt' by fehDotless-ar.alt LIG; sub fehDotless-ar.fina.alt' by fehDotless-ar.fina.alt LIG; sub fehDotMovedbelow-ar.alt' by fehDotMovedbelow-ar.alt LIG; sub fehDotbelow-ar.alt' by fehDotbelow-ar.alt LIG; sub fehDotbelow-ar.fina.alt' by fehDotbelow-ar.fina.alt LIG; sub fehThreedotsbelow-ar.alt' by fehThreedotsbelow-ar.alt LIG; sub fehThreedotsbelow-ar.fina.alt' by fehThreedotsbelow-ar.fina.alt LIG; sub fehDotbelowThreedotsabove-ar.alt' by fehDotbelowThreedotsabove-ar.alt LIG; sub fehDotbelowThreedotsabove-ar.fina.alt' by fehDotbelowThreedotsabove-ar.fina.alt LIG; sub peheh-ar.alt' by peheh-ar.alt LIG; sub peheh-ar.fina.alt' by peheh-ar.fina.alt LIG; sub seenFourdotsabove-ar.alt' by seenFourdotsabove-ar.alt LIG; sub seenFourdotsabove-ar.fina.alt' by seenFourdotsabove-ar.fina.alt LIG; sub fehTwodotsbelow-ar.alt' by fehTwodotsbelow-ar.alt LIG; sub fehTwodotsbelow-ar.fina.alt' by fehTwodotsbelow-ar.fina.alt LIG; sub fehThreedotsupbelow-ar.alt' by fehThreedotsupbelow-ar.alt LIG; sub fehThreedotsupbelow-ar.fina.alt' by fehThreedotsupbelow-ar.fina.alt LIG; sub seenTwodotsverticalabove-ar.alt' by seenTwodotsverticalabove-ar.alt LIG; sub seenTwodotsverticalabove-ar.fina.alt' by seenTwodotsverticalabove-ar.fina.alt LIG; sub seenTahTwodotshorizontalabove-ar.alt' by seenTahTwodotshorizontalabove-ar.alt LIG; sub seenTahTwodotshorizontalabove-ar.fina.alt' by seenTahTwodotshorizontalabove-ar.fina.alt LIG; sub seenFourabove-ar.alt' by seenFourabove-ar.alt LIG; sub seenFourabove-ar.fina.alt' by seenFourabove-ar.fina.alt LIG; sub seenVinvertedabove-ar.alt' by seenVinvertedabove-ar.alt LIG; sub seenVinvertedabove-ar.fina.alt' by seenVinvertedabove-ar.fina.alt LIG; sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG; sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG; sub behMeemabove-ar.alt' by behMeemabove-ar.alt LIG; sub behMeemabove-ar.fina.alt' by behMeemabove-ar.fina.alt LIG; sub pehMeemabove-ar.alt' by pehMeemabove-ar.alt LIG; sub pehMeemabove-ar.fina.alt' by pehMeemabove-ar.fina.alt LIG; sub tehTehabove-ar.alt' by tehTehabove-ar.alt LIG; sub tehTehabove-ar.fina.alt' by tehTehabove-ar.fina.alt LIG; } arabiclong2; lookup condensedar { script arab; lookupflag IgnoreMarks RightToLeft; lookupflag IgnoreMarks RightToLeft; sub @beh1' @alef1 by @beh2; sub @beh2 @alef1' by @alef2; } condensedar; } calt; feature ccmp { lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb]; sub [i j i-cy je-cy]' @CombiningTopAccents by [idotless jdotless idotless jdotless]; sub iogonek' @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; sub [i j i-cy je-cy]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless idotless jdotless]; sub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; lookup ccmp_latn_1 { sub fi by f i; sub fl by f l; } ccmp_latn_1; script latn; lookup ccmp_latn_1; } ccmp; feature locl { lookup locl_latn_0 { script latn; language ROM; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language PLK; sub Cacute by Cacute.loclPLK; sub Nacute by Nacute.loclPLK; sub Oacute by Oacute.loclPLK; sub Sacute by Sacute.loclPLK; sub Zacute by Zacute.loclPLK; sub cacute by cacute.loclPLK; sub nacute by nacute.loclPLK; sub oacute by oacute.loclPLK; sub sacute by sacute.loclPLK; sub zacute by zacute.loclPLK; sub acutecomb by acutecomb.loclPLK; } locl_latn_1; lookup locl_latn_2 { script latn; language NLD; sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_2; lookup locl_cyrl_0 { script cyrl; language BGR; sub De-cy by De-cy.loclBGR; sub El-cy by El-cy.loclBGR; sub Ef-cy by Ef-cy.loclBGR; sub ve-cy by ve-cy.loclBGR; sub ge-cy by ge-cy.loclBGR; sub de-cy by de-cy.loclBGR; sub zhe-cy by zhe-cy.loclBGR; sub ze-cy by ze-cy.loclBGR; sub ii-cy by ii-cy.loclBGR; sub iishort-cy by iishort-cy.loclBGR; sub iigrave-cy by iigrave-cy.loclBGR; sub ka-cy by ka-cy.loclBGR; sub el-cy by el-cy.loclBGR; sub pe-cy by pe-cy.loclBGR; sub te-cy by te-cy.loclBGR; sub tse-cy by tse-cy.loclBGR; sub sha-cy by sha-cy.loclBGR; sub shcha-cy by shcha-cy.loclBGR; sub softsign-cy by softsign-cy.loclBGR; sub hardsign-cy by hardsign-cy.loclBGR; sub iu-cy by iu-cy.loclBGR; } locl_cyrl_0; lookup locl_cyrl_1 { script cyrl; language SRB; sub be-cy by be-cy.loclSRB; } locl_cyrl_1; } locl; feature subs { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } subs; feature sinf { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } sinf; feature sups { # automatic sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; } sups; feature numr { # automatic sub zero by zero.numr; sub one by one.numr; sub two by two.numr; sub three by three.numr; sub four by four.numr; sub five by five.numr; sub six by six.numr; sub seven by seven.numr; sub eight by eight.numr; sub nine by nine.numr; } numr; feature dnom { # automatic sub zero by zero.dnom; sub one by one.dnom; sub two by two.dnom; sub three by three.dnom; sub four by four.dnom; sub five by five.dnom; sub six by six.dnom; sub seven by seven.dnom; sub eight by eight.dnom; sub nine by nine.dnom; } dnom; feature frac { # automatic lookup FRAC { sub slash by fraction; } FRAC; lookup UP { sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; } UP; lookup DOWN { sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; } DOWN; } frac; feature ordn { # automatic sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; } ordn; feature case { # automatic sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub horncomb by horncomb.case; sub tonos by tonos.case; sub brevecomb-cy by brevecomb-cy.case; } case; feature liga { # disabled # } liga; feature ss02 { sub asciitilde_equal.liga by exclam_equal.liga; } ss02; feature zero { # automatic sub zero by zero.zero; } zero; feature ss19 { # notes: # Name: Slashed zero sub zero by zero.zero; } ss19; feature rclt { # this subs the GDI-centric versions of these symbols with DWrite-centric ones sub lowerOneEighthBlock by lowerOneEighthBlock.stypo; sub lowerOneQuarterBlock by lowerOneQuarterBlock.stypo; sub lowerThreeEighthsBlock by lowerThreeEighthsBlock.stypo; sub lowerHalfBlock by lowerHalfBlock.stypo; sub lowerFiveEighthsBlock by lowerFiveEighthsBlock.stypo; sub lowerThreeQuartersBlock by lowerThreeQuartersBlock.stypo; sub lowerSevenEighthsBlock by lowerSevenEighthsBlock.stypo; sub fullBlock by fullBlock.stypo; sub upperHalfBlock by upperHalfBlock.stypo; sub upperOneEighthBlock by upperOneEighthBlock.stypo; sub leftOneEighthBlock by leftOneEighthBlock.stypo; sub leftOneQuarterBlock by leftOneQuarterBlock.stypo; sub leftThreeEighthsBlock by leftThreeEighthsBlock.stypo; sub leftBlock by leftBlock.stypo; sub leftFiveEighthsBlock by leftFiveEighthsBlock.stypo; sub leftThreeQuartersBlock by leftThreeQuartersBlock.stypo; sub leftSevenEighthsBlock by leftSevenEighthsBlock.stypo; sub rightBlock by rightBlock.stypo; sub rightOneEighthBlock by rightOneEighthBlock.stypo; sub lowerLeftBlock by lowerLeftBlock.stypo; sub lowerRightBlock by lowerRightBlock.stypo; sub upperLeftBlock by upperLeftBlock.stypo; sub upperLeftAndLowerLeftAndLowerRightBlock by upperLeftAndLowerLeftAndLowerRightBlock.stypo; sub upperLeftAndLowerRightBlock by upperLeftAndLowerRightBlock.stypo; sub upperLeftAndUpperRightAndLowerLeftBlock by upperLeftAndUpperRightAndLowerLeftBlock.stypo; sub upperLeftAndUpperRightAndLowerRightBlock by upperLeftAndUpperRightAndLowerRightBlock.stypo; sub upperRightBlock by upperRightBlock.stypo; sub upperRightAndLowerLeftBlock by upperRightAndLowerLeftBlock.stypo; sub upperRightAndLowerLeftAndLowerRightBlock by upperRightAndLowerLeftAndLowerRightBlock.stypo; sub shadelight by shadelight.stypo; sub shademedium by shademedium.stypo; sub shadedark by shadedark.stypo; sub checkerBoardDeleteAmstradCpc by checkerBoardDeleteAmstradCpc.stypo; sub checkerBoardFill by checkerBoardFill.stypo; sub checkerBoardFillInverse by checkerBoardFillInverse.stypo; sub blockQuadrant-UC by blockQuadrant-UC.stypo; sub blockQuadrant-LC by blockQuadrant-LC.stypo; sub blockQuadrant-ML by blockQuadrant-ML.stypo; sub blockQuadrant-MR by blockQuadrant-MR.stypo; sub blockTriangle-1 by blockTriangle-1.stypo; sub blockTriangle-2 by blockTriangle-2.stypo; sub blockTriangle-3 by blockTriangle-3.stypo; sub blockTriangle-4 by blockTriangle-4.stypo; sub blockTriangle-14 by blockTriangle-14.stypo; sub blockTriangle-23 by blockTriangle-23.stypo; sub blockTriangle-123 by blockTriangle-123.stypo; sub blockTriangle-124 by blockTriangle-124.stypo; sub blockTriangle-134 by blockTriangle-134.stypo; sub blockTriangle-234 by blockTriangle-234.stypo; sub blockCircle-1 by blockCircle-1.stypo; sub blockCircle-2 by blockCircle-2.stypo; sub blockCircle-3 by blockCircle-3.stypo; sub blockCircle-4 by blockCircle-4.stypo; sub blockCircle-UC by blockCircle-UC.stypo; sub blockCircle-LC by blockCircle-LC.stypo; sub blockCircle-ML by blockCircle-ML.stypo; sub blockCircle-MR by blockCircle-MR.stypo; sub blockSextant-1 by blockSextant-1.stypo; sub blockSextant-2 by blockSextant-2.stypo; sub blockSextant-12 by blockSextant-12.stypo; sub blockSextant-3 by blockSextant-3.stypo; sub blockSextant-13 by blockSextant-13.stypo; sub blockSextant-23 by blockSextant-23.stypo; sub blockSextant-123 by blockSextant-123.stypo; sub blockSextant-4 by blockSextant-4.stypo; sub blockSextant-14 by blockSextant-14.stypo; sub blockSextant-24 by blockSextant-24.stypo; sub blockSextant-124 by blockSextant-124.stypo; sub blockSextant-34 by blockSextant-34.stypo; sub blockSextant-134 by blockSextant-134.stypo; sub blockSextant-234 by blockSextant-234.stypo; sub blockSextant-1234 by blockSextant-1234.stypo; sub blockSextant-5 by blockSextant-5.stypo; sub blockSextant-15 by blockSextant-15.stypo; sub blockSextant-25 by blockSextant-25.stypo; sub blockSextant-125 by blockSextant-125.stypo; sub blockSextant-35 by blockSextant-35.stypo; sub blockSextant-235 by blockSextant-235.stypo; sub blockSextant-1235 by blockSextant-1235.stypo; sub blockSextant-45 by blockSextant-45.stypo; sub blockSextant-145 by blockSextant-145.stypo; sub blockSextant-245 by blockSextant-245.stypo; sub blockSextant-1245 by blockSextant-1245.stypo; sub blockSextant-345 by blockSextant-345.stypo; sub blockSextant-1345 by blockSextant-1345.stypo; sub blockSextant-2345 by blockSextant-2345.stypo; sub blockSextant-12345 by blockSextant-12345.stypo; sub blockSextant-6 by blockSextant-6.stypo; sub blockSextant-16 by blockSextant-16.stypo; sub blockSextant-26 by blockSextant-26.stypo; sub blockSextant-126 by blockSextant-126.stypo; sub blockSextant-36 by blockSextant-36.stypo; sub blockSextant-136 by blockSextant-136.stypo; sub blockSextant-236 by blockSextant-236.stypo; sub blockSextant-1236 by blockSextant-1236.stypo; sub blockSextant-46 by blockSextant-46.stypo; sub blockSextant-146 by blockSextant-146.stypo; sub blockSextant-1246 by blockSextant-1246.stypo; sub blockSextant-346 by blockSextant-346.stypo; sub blockSextant-1346 by blockSextant-1346.stypo; sub blockSextant-2346 by blockSextant-2346.stypo; sub blockSextant-12346 by blockSextant-12346.stypo; sub blockSextant-56 by blockSextant-56.stypo; sub blockSextant-156 by blockSextant-156.stypo; sub blockSextant-256 by blockSextant-256.stypo; sub blockSextant-1256 by blockSextant-1256.stypo; sub blockSextant-356 by blockSextant-356.stypo; sub blockSextant-1356 by blockSextant-1356.stypo; sub blockSextant-2356 by blockSextant-2356.stypo; sub blockSextant-12356 by blockSextant-12356.stypo; sub blockSextant-456 by blockSextant-456.stypo; sub blockSextant-1456 by blockSextant-1456.stypo; sub blockSextant-2456 by blockSextant-2456.stypo; sub blockSextant-12456 by blockSextant-12456.stypo; sub blockSextant-3456 by blockSextant-3456.stypo; sub blockSextant-13456 by blockSextant-13456.stypo; sub blockSextant-23456 by blockSextant-23456.stypo; sub blockDiagonal-1FB3C by blockDiagonal-1FB3C.stypo; sub blockDiagonal-1FB3D by blockDiagonal-1FB3D.stypo; sub blockDiagonal-1FB3E by blockDiagonal-1FB3E.stypo; sub blockDiagonal-1FB3F by blockDiagonal-1FB3F.stypo; sub blockDiagonal-1FB40 by blockDiagonal-1FB40.stypo; sub blockDiagonal-1FB41 by blockDiagonal-1FB41.stypo; sub blockDiagonal-1FB42 by blockDiagonal-1FB42.stypo; sub blockDiagonal-1FB43 by blockDiagonal-1FB43.stypo; sub blockDiagonal-1FB44 by blockDiagonal-1FB44.stypo; sub blockDiagonal-1FB45 by blockDiagonal-1FB45.stypo; sub blockDiagonal-1FB46 by blockDiagonal-1FB46.stypo; sub blockDiagonal-1FB47 by blockDiagonal-1FB47.stypo; sub blockDiagonal-1FB48 by blockDiagonal-1FB48.stypo; sub blockDiagonal-1FB49 by blockDiagonal-1FB49.stypo; sub blockDiagonal-1FB4A by blockDiagonal-1FB4A.stypo; sub blockDiagonal-1FB4B by blockDiagonal-1FB4B.stypo; sub blockDiagonal-1FB4C by blockDiagonal-1FB4C.stypo; sub blockDiagonal-1FB4D by blockDiagonal-1FB4D.stypo; sub blockDiagonal-1FB4E by blockDiagonal-1FB4E.stypo; sub blockDiagonal-1FB4F by blockDiagonal-1FB4F.stypo; sub blockDiagonal-1FB50 by blockDiagonal-1FB50.stypo; sub blockDiagonal-1FB51 by blockDiagonal-1FB51.stypo; sub blockDiagonal-1FB52 by blockDiagonal-1FB52.stypo; sub blockDiagonal-1FB53 by blockDiagonal-1FB53.stypo; sub blockDiagonal-1FB54 by blockDiagonal-1FB54.stypo; sub blockDiagonal-1FB55 by blockDiagonal-1FB55.stypo; sub blockDiagonal-1FB56 by blockDiagonal-1FB56.stypo; sub blockDiagonal-1FB57 by blockDiagonal-1FB57.stypo; sub blockDiagonal-1FB58 by blockDiagonal-1FB58.stypo; sub blockDiagonal-1FB59 by blockDiagonal-1FB59.stypo; sub blockDiagonal-1FB5A by blockDiagonal-1FB5A.stypo; sub blockDiagonal-1FB5B by blockDiagonal-1FB5B.stypo; sub blockDiagonal-1FB5C by blockDiagonal-1FB5C.stypo; sub blockDiagonal-1FB5D by blockDiagonal-1FB5D.stypo; sub blockDiagonal-1FB5E by blockDiagonal-1FB5E.stypo; sub blockDiagonal-1FB5F by blockDiagonal-1FB5F.stypo; sub blockDiagonal-1FB60 by blockDiagonal-1FB60.stypo; sub blockDiagonal-1FB61 by blockDiagonal-1FB61.stypo; sub blockDiagonal-1FB62 by blockDiagonal-1FB62.stypo; sub blockDiagonal-1FB63 by blockDiagonal-1FB63.stypo; sub blockDiagonal-1FB64 by blockDiagonal-1FB64.stypo; sub blockDiagonal-1FB65 by blockDiagonal-1FB65.stypo; sub blockDiagonal-1FB66 by blockDiagonal-1FB66.stypo; sub blockDiagonal-1FB67 by blockDiagonal-1FB67.stypo; sub blockOctant-1 by blockOctant-1.stypo; sub blockOctant-2 by blockOctant-2.stypo; sub blockOctant-12 by blockOctant-12.stypo; sub blockOctant-3 by blockOctant-3.stypo; sub blockOctant-23 by blockOctant-23.stypo; sub blockOctant-123 by blockOctant-123.stypo; sub blockOctant-4 by blockOctant-4.stypo; sub blockOctant-14 by blockOctant-14.stypo; sub blockOctant-124 by blockOctant-124.stypo; sub blockOctant-34 by blockOctant-34.stypo; sub blockOctant-134 by blockOctant-134.stypo; sub blockOctant-234 by blockOctant-234.stypo; sub blockOctant-5 by blockOctant-5.stypo; sub blockOctant-15 by blockOctant-15.stypo; sub blockOctant-25 by blockOctant-25.stypo; sub blockOctant-125 by blockOctant-125.stypo; sub blockOctant-135 by blockOctant-135.stypo; sub blockOctant-235 by blockOctant-235.stypo; sub blockOctant-1235 by blockOctant-1235.stypo; sub blockOctant-45 by blockOctant-45.stypo; sub blockOctant-145 by blockOctant-145.stypo; sub blockOctant-245 by blockOctant-245.stypo; sub blockOctant-1245 by blockOctant-1245.stypo; sub blockOctant-345 by blockOctant-345.stypo; sub blockOctant-1345 by blockOctant-1345.stypo; sub blockOctant-2345 by blockOctant-2345.stypo; sub blockOctant-12345 by blockOctant-12345.stypo; sub blockOctant-6 by blockOctant-6.stypo; sub blockOctant-16 by blockOctant-16.stypo; sub blockOctant-26 by blockOctant-26.stypo; sub blockOctant-126 by blockOctant-126.stypo; sub blockOctant-36 by blockOctant-36.stypo; sub blockOctant-136 by blockOctant-136.stypo; sub blockOctant-236 by blockOctant-236.stypo; sub blockOctant-1236 by blockOctant-1236.stypo; sub blockOctant-146 by blockOctant-146.stypo; sub blockOctant-246 by blockOctant-246.stypo; sub blockOctant-1246 by blockOctant-1246.stypo; sub blockOctant-346 by blockOctant-346.stypo; sub blockOctant-1346 by blockOctant-1346.stypo; sub blockOctant-2346 by blockOctant-2346.stypo; sub blockOctant-12346 by blockOctant-12346.stypo; sub blockOctant-56 by blockOctant-56.stypo; sub blockOctant-156 by blockOctant-156.stypo; sub blockOctant-256 by blockOctant-256.stypo; sub blockOctant-1256 by blockOctant-1256.stypo; sub blockOctant-356 by blockOctant-356.stypo; sub blockOctant-1356 by blockOctant-1356.stypo; sub blockOctant-2356 by blockOctant-2356.stypo; sub blockOctant-12356 by blockOctant-12356.stypo; sub blockOctant-456 by blockOctant-456.stypo; sub blockOctant-1456 by blockOctant-1456.stypo; sub blockOctant-2456 by blockOctant-2456.stypo; sub blockOctant-12456 by blockOctant-12456.stypo; sub blockOctant-3456 by blockOctant-3456.stypo; sub blockOctant-13456 by blockOctant-13456.stypo; sub blockOctant-23456 by blockOctant-23456.stypo; sub blockOctant-123456 by blockOctant-123456.stypo; sub blockOctant-7 by blockOctant-7.stypo; sub blockOctant-17 by blockOctant-17.stypo; sub blockOctant-27 by blockOctant-27.stypo; sub blockOctant-127 by blockOctant-127.stypo; sub blockOctant-37 by blockOctant-37.stypo; sub blockOctant-137 by blockOctant-137.stypo; sub blockOctant-237 by blockOctant-237.stypo; sub blockOctant-1237 by blockOctant-1237.stypo; sub blockOctant-47 by blockOctant-47.stypo; sub blockOctant-147 by blockOctant-147.stypo; sub blockOctant-247 by blockOctant-247.stypo; sub blockOctant-1247 by blockOctant-1247.stypo; sub blockOctant-347 by blockOctant-347.stypo; sub blockOctant-1347 by blockOctant-1347.stypo; sub blockOctant-2347 by blockOctant-2347.stypo; sub blockOctant-12347 by blockOctant-12347.stypo; sub blockOctant-157 by blockOctant-157.stypo; sub blockOctant-257 by blockOctant-257.stypo; sub blockOctant-1257 by blockOctant-1257.stypo; sub blockOctant-357 by blockOctant-357.stypo; sub blockOctant-2357 by blockOctant-2357.stypo; sub blockOctant-12357 by blockOctant-12357.stypo; sub blockOctant-457 by blockOctant-457.stypo; sub blockOctant-1457 by blockOctant-1457.stypo; sub blockOctant-12457 by blockOctant-12457.stypo; sub blockOctant-3457 by blockOctant-3457.stypo; sub blockOctant-13457 by blockOctant-13457.stypo; sub blockOctant-23457 by blockOctant-23457.stypo; sub blockOctant-67 by blockOctant-67.stypo; sub blockOctant-167 by blockOctant-167.stypo; sub blockOctant-267 by blockOctant-267.stypo; sub blockOctant-1267 by blockOctant-1267.stypo; sub blockOctant-367 by blockOctant-367.stypo; sub blockOctant-1367 by blockOctant-1367.stypo; sub blockOctant-2367 by blockOctant-2367.stypo; sub blockOctant-12367 by blockOctant-12367.stypo; sub blockOctant-467 by blockOctant-467.stypo; sub blockOctant-1467 by blockOctant-1467.stypo; sub blockOctant-2467 by blockOctant-2467.stypo; sub blockOctant-12467 by blockOctant-12467.stypo; sub blockOctant-3467 by blockOctant-3467.stypo; sub blockOctant-13467 by blockOctant-13467.stypo; sub blockOctant-23467 by blockOctant-23467.stypo; sub blockOctant-123467 by blockOctant-123467.stypo; sub blockOctant-567 by blockOctant-567.stypo; sub blockOctant-1567 by blockOctant-1567.stypo; sub blockOctant-2567 by blockOctant-2567.stypo; sub blockOctant-12567 by blockOctant-12567.stypo; sub blockOctant-3567 by blockOctant-3567.stypo; sub blockOctant-13567 by blockOctant-13567.stypo; sub blockOctant-23567 by blockOctant-23567.stypo; sub blockOctant-123567 by blockOctant-123567.stypo; sub blockOctant-4567 by blockOctant-4567.stypo; sub blockOctant-14567 by blockOctant-14567.stypo; sub blockOctant-24567 by blockOctant-24567.stypo; sub blockOctant-124567 by blockOctant-124567.stypo; sub blockOctant-34567 by blockOctant-34567.stypo; sub blockOctant-134567 by blockOctant-134567.stypo; sub blockOctant-234567 by blockOctant-234567.stypo; sub blockOctant-1234567 by blockOctant-1234567.stypo; sub blockOctant-8 by blockOctant-8.stypo; sub blockOctant-18 by blockOctant-18.stypo; sub blockOctant-28 by blockOctant-28.stypo; sub blockOctant-128 by blockOctant-128.stypo; sub blockOctant-38 by blockOctant-38.stypo; sub blockOctant-138 by blockOctant-138.stypo; sub blockOctant-238 by blockOctant-238.stypo; sub blockOctant-1238 by blockOctant-1238.stypo; sub blockOctant-48 by blockOctant-48.stypo; sub blockOctant-148 by blockOctant-148.stypo; sub blockOctant-248 by blockOctant-248.stypo; sub blockOctant-1248 by blockOctant-1248.stypo; sub blockOctant-348 by blockOctant-348.stypo; sub blockOctant-1348 by blockOctant-1348.stypo; sub blockOctant-2348 by blockOctant-2348.stypo; sub blockOctant-12348 by blockOctant-12348.stypo; sub blockOctant-58 by blockOctant-58.stypo; sub blockOctant-158 by blockOctant-158.stypo; sub blockOctant-258 by blockOctant-258.stypo; sub blockOctant-1258 by blockOctant-1258.stypo; sub blockOctant-358 by blockOctant-358.stypo; sub blockOctant-1358 by blockOctant-1358.stypo; sub blockOctant-2358 by blockOctant-2358.stypo; sub blockOctant-12358 by blockOctant-12358.stypo; sub blockOctant-458 by blockOctant-458.stypo; sub blockOctant-1458 by blockOctant-1458.stypo; sub blockOctant-2458 by blockOctant-2458.stypo; sub blockOctant-12458 by blockOctant-12458.stypo; sub blockOctant-3458 by blockOctant-3458.stypo; sub blockOctant-13458 by blockOctant-13458.stypo; sub blockOctant-23458 by blockOctant-23458.stypo; sub blockOctant-123458 by blockOctant-123458.stypo; sub blockOctant-168 by blockOctant-168.stypo; sub blockOctant-268 by blockOctant-268.stypo; sub blockOctant-1268 by blockOctant-1268.stypo; sub blockOctant-368 by blockOctant-368.stypo; sub blockOctant-2368 by blockOctant-2368.stypo; sub blockOctant-12368 by blockOctant-12368.stypo; sub blockOctant-468 by blockOctant-468.stypo; sub blockOctant-1468 by blockOctant-1468.stypo; sub blockOctant-12468 by blockOctant-12468.stypo; sub blockOctant-3468 by blockOctant-3468.stypo; sub blockOctant-13468 by blockOctant-13468.stypo; sub blockOctant-23468 by blockOctant-23468.stypo; sub blockOctant-568 by blockOctant-568.stypo; sub blockOctant-1568 by blockOctant-1568.stypo; sub blockOctant-2568 by blockOctant-2568.stypo; sub blockOctant-12568 by blockOctant-12568.stypo; sub blockOctant-3568 by blockOctant-3568.stypo; sub blockOctant-13568 by blockOctant-13568.stypo; sub blockOctant-23568 by blockOctant-23568.stypo; sub blockOctant-123568 by blockOctant-123568.stypo; sub blockOctant-4568 by blockOctant-4568.stypo; sub blockOctant-14568 by blockOctant-14568.stypo; sub blockOctant-24568 by blockOctant-24568.stypo; sub blockOctant-124568 by blockOctant-124568.stypo; sub blockOctant-34568 by blockOctant-34568.stypo; sub blockOctant-134568 by blockOctant-134568.stypo; sub blockOctant-234568 by blockOctant-234568.stypo; sub blockOctant-1234568 by blockOctant-1234568.stypo; sub blockOctant-178 by blockOctant-178.stypo; sub blockOctant-278 by blockOctant-278.stypo; sub blockOctant-1278 by blockOctant-1278.stypo; sub blockOctant-378 by blockOctant-378.stypo; sub blockOctant-1378 by blockOctant-1378.stypo; sub blockOctant-2378 by blockOctant-2378.stypo; sub blockOctant-12378 by blockOctant-12378.stypo; sub blockOctant-478 by blockOctant-478.stypo; sub blockOctant-1478 by blockOctant-1478.stypo; sub blockOctant-2478 by blockOctant-2478.stypo; sub blockOctant-12478 by blockOctant-12478.stypo; sub blockOctant-3478 by blockOctant-3478.stypo; sub blockOctant-13478 by blockOctant-13478.stypo; sub blockOctant-23478 by blockOctant-23478.stypo; sub blockOctant-123478 by blockOctant-123478.stypo; sub blockOctant-578 by blockOctant-578.stypo; sub blockOctant-1578 by blockOctant-1578.stypo; sub blockOctant-2578 by blockOctant-2578.stypo; sub blockOctant-12578 by blockOctant-12578.stypo; sub blockOctant-3578 by blockOctant-3578.stypo; sub blockOctant-13578 by blockOctant-13578.stypo; sub blockOctant-23578 by blockOctant-23578.stypo; sub blockOctant-123578 by blockOctant-123578.stypo; sub blockOctant-4578 by blockOctant-4578.stypo; sub blockOctant-14578 by blockOctant-14578.stypo; sub blockOctant-24578 by blockOctant-24578.stypo; sub blockOctant-124578 by blockOctant-124578.stypo; sub blockOctant-34578 by blockOctant-34578.stypo; sub blockOctant-134578 by blockOctant-134578.stypo; sub blockOctant-234578 by blockOctant-234578.stypo; sub blockOctant-1234578 by blockOctant-1234578.stypo; sub blockOctant-678 by blockOctant-678.stypo; sub blockOctant-1678 by blockOctant-1678.stypo; sub blockOctant-2678 by blockOctant-2678.stypo; sub blockOctant-12678 by blockOctant-12678.stypo; sub blockOctant-3678 by blockOctant-3678.stypo; sub blockOctant-13678 by blockOctant-13678.stypo; sub blockOctant-23678 by blockOctant-23678.stypo; sub blockOctant-123678 by blockOctant-123678.stypo; sub blockOctant-4678 by blockOctant-4678.stypo; sub blockOctant-14678 by blockOctant-14678.stypo; sub blockOctant-24678 by blockOctant-24678.stypo; sub blockOctant-124678 by blockOctant-124678.stypo; sub blockOctant-34678 by blockOctant-34678.stypo; sub blockOctant-134678 by blockOctant-134678.stypo; sub blockOctant-234678 by blockOctant-234678.stypo; sub blockOctant-1234678 by blockOctant-1234678.stypo; sub blockOctant-15678 by blockOctant-15678.stypo; sub blockOctant-25678 by blockOctant-25678.stypo; sub blockOctant-125678 by blockOctant-125678.stypo; sub blockOctant-35678 by blockOctant-35678.stypo; sub blockOctant-235678 by blockOctant-235678.stypo; sub blockOctant-1235678 by blockOctant-1235678.stypo; sub blockOctant-45678 by blockOctant-45678.stypo; sub blockOctant-145678 by blockOctant-145678.stypo; sub blockOctant-1245678 by blockOctant-1245678.stypo; sub blockOctant-1345678 by blockOctant-1345678.stypo; sub blockOctant-2345678 by blockOctant-2345678.stypo; sub blockSedecimant-1 by blockSedecimant-1.stypo; sub blockSedecimant-2 by blockSedecimant-2.stypo; sub blockSedecimant-3 by blockSedecimant-3.stypo; sub blockSedecimant-4 by blockSedecimant-4.stypo; sub blockSedecimant-5 by blockSedecimant-5.stypo; sub blockSedecimant-6 by blockSedecimant-6.stypo; sub blockSedecimant-7 by blockSedecimant-7.stypo; sub blockSedecimant-8 by blockSedecimant-8.stypo; sub blockSedecimant-9 by blockSedecimant-9.stypo; sub blockSedecimant-A by blockSedecimant-A.stypo; sub blockSedecimant-B by blockSedecimant-B.stypo; sub blockSedecimant-C by blockSedecimant-C.stypo; sub blockSedecimant-D by blockSedecimant-D.stypo; sub blockSedecimant-E by blockSedecimant-E.stypo; sub blockSedecimant-F by blockSedecimant-F.stypo; sub blockSedecimant-G by blockSedecimant-G.stypo; sub blockSedecimant-EFG by blockSedecimant-EFG.stypo; sub blockSedecimant-DEF by blockSedecimant-DEF.stypo; sub blockSedecimant-9D by blockSedecimant-9D.stypo; sub blockSedecimant-59D by blockSedecimant-59D.stypo; sub blockSedecimant-159 by blockSedecimant-159.stypo; sub blockSedecimant-15 by blockSedecimant-15.stypo; sub blockSedecimant-123 by blockSedecimant-123.stypo; sub blockSedecimant-234 by blockSedecimant-234.stypo; sub blockSedecimant-48 by blockSedecimant-48.stypo; sub blockSedecimant-48C by blockSedecimant-48C.stypo; sub blockSedecimant-8CG by blockSedecimant-8CG.stypo; sub blockSedecimant-CG by blockSedecimant-CG.stypo; sub verticalOneEighthBlock-2 by verticalOneEighthBlock-2.stypo; sub verticalOneEighthBlock-3 by verticalOneEighthBlock-3.stypo; sub verticalOneEighthBlock-4 by verticalOneEighthBlock-4.stypo; sub verticalOneEighthBlock-5 by verticalOneEighthBlock-5.stypo; sub verticalOneEighthBlock-6 by verticalOneEighthBlock-6.stypo; sub verticalOneEighthBlock-7 by verticalOneEighthBlock-7.stypo; sub horizontalOneEightBlock-2 by horizontalOneEightBlock-2.stypo; sub horizontalOneEightBlock-3 by horizontalOneEightBlock-3.stypo; sub horizontalOneEightBlock-4 by horizontalOneEightBlock-4.stypo; sub horizontalOneEightBlock-5 by horizontalOneEightBlock-5.stypo; sub horizontalOneEightBlock-6 by horizontalOneEightBlock-6.stypo; sub horizontalOneEightBlock-7 by horizontalOneEightBlock-7.stypo; sub leftAndLowerOneEightBlock by leftAndLowerOneEightBlock.stypo; sub leftAndUpperOneEightBlock by leftAndUpperOneEightBlock.stypo; sub rightAndUpperOneEightBlock by rightAndUpperOneEightBlock.stypo; sub rightAndLowerOneEightBlock by rightAndLowerOneEightBlock.stypo; sub upperAndLowerOneEightBlock by upperAndLowerOneEightBlock.stypo; sub upperThreeEighthsBlock by upperThreeEighthsBlock.stypo; sub upperFiveEighthsBlock by upperFiveEighthsBlock.stypo; sub upperSevenEighthsBlock by upperSevenEighthsBlock.stypo; sub rightOneQuarterBlock by rightOneQuarterBlock.stypo; sub rightThreeEighthsBlock by rightThreeEighthsBlock.stypo; sub rightFiveEighthsBlock by rightFiveEighthsBlock.stypo; sub rightThreeQuartersBlock by rightThreeQuartersBlock.stypo; sub rightSevenEighthsBlock by rightSevenEighthsBlock.stypo; sub leftTwoThirdsBlock by leftTwoThirdsBlock.stypo; sub leftOneThirdBlock by leftOneThirdBlock.stypo; sub heavyHorizontalFill by heavyHorizontalFill.stypo; sub blockSeparatedQuadrant-1 by blockSeparatedQuadrant-1.stypo; sub blockSeparatedQuadrant-2 by blockSeparatedQuadrant-2.stypo; sub blockSeparatedQuadrant-12 by blockSeparatedQuadrant-12.stypo; sub blockSeparatedQuadrant-3 by blockSeparatedQuadrant-3.stypo; sub blockSeparatedQuadrant-13 by blockSeparatedQuadrant-13.stypo; sub blockSeparatedQuadrant-23 by blockSeparatedQuadrant-23.stypo; sub blockSeparatedQuadrant-123 by blockSeparatedQuadrant-123.stypo; sub blockSeparatedQuadrant-4 by blockSeparatedQuadrant-4.stypo; sub blockSeparatedQuadrant-14 by blockSeparatedQuadrant-14.stypo; sub blockSeparatedQuadrant-24 by blockSeparatedQuadrant-24.stypo; sub blockSeparatedQuadrant-124 by blockSeparatedQuadrant-124.stypo; sub blockSeparatedQuadrant-34 by blockSeparatedQuadrant-34.stypo; sub blockSeparatedQuadrant-134 by blockSeparatedQuadrant-134.stypo; sub blockSeparatedQuadrant-234 by blockSeparatedQuadrant-234.stypo; sub blockSeparatedQuadrant-1234 by blockSeparatedQuadrant-1234.stypo; sub blockSeparatedSextant-1 by blockSeparatedSextant-1.stypo; sub blockSeparatedSextant-2 by blockSeparatedSextant-2.stypo; sub blockSeparatedSextant-12 by blockSeparatedSextant-12.stypo; sub blockSeparatedSextant-3 by blockSeparatedSextant-3.stypo; sub blockSeparatedSextant-13 by blockSeparatedSextant-13.stypo; sub blockSeparatedSextant-23 by blockSeparatedSextant-23.stypo; sub blockSeparatedSextant-123 by blockSeparatedSextant-123.stypo; sub blockSeparatedSextant-4 by blockSeparatedSextant-4.stypo; sub blockSeparatedSextant-14 by blockSeparatedSextant-14.stypo; sub blockSeparatedSextant-24 by blockSeparatedSextant-24.stypo; sub blockSeparatedSextant-124 by blockSeparatedSextant-124.stypo; sub blockSeparatedSextant-34 by blockSeparatedSextant-34.stypo; sub blockSeparatedSextant-134 by blockSeparatedSextant-134.stypo; sub blockSeparatedSextant-234 by blockSeparatedSextant-234.stypo; sub blockSeparatedSextant-1234 by blockSeparatedSextant-1234.stypo; sub blockSeparatedSextant-5 by blockSeparatedSextant-5.stypo; sub blockSeparatedSextant-15 by blockSeparatedSextant-15.stypo; sub blockSeparatedSextant-25 by blockSeparatedSextant-25.stypo; sub blockSeparatedSextant-125 by blockSeparatedSextant-125.stypo; sub blockSeparatedSextant-35 by blockSeparatedSextant-35.stypo; sub blockSeparatedSextant-135 by blockSeparatedSextant-135.stypo; sub blockSeparatedSextant-235 by blockSeparatedSextant-235.stypo; sub blockSeparatedSextant-1235 by blockSeparatedSextant-1235.stypo; sub blockSeparatedSextant-45 by blockSeparatedSextant-45.stypo; sub blockSeparatedSextant-145 by blockSeparatedSextant-145.stypo; sub blockSeparatedSextant-245 by blockSeparatedSextant-245.stypo; sub blockSeparatedSextant-1245 by blockSeparatedSextant-1245.stypo; sub blockSeparatedSextant-345 by blockSeparatedSextant-345.stypo; sub blockSeparatedSextant-1345 by blockSeparatedSextant-1345.stypo; sub blockSeparatedSextant-2345 by blockSeparatedSextant-2345.stypo; sub blockSeparatedSextant-12345 by blockSeparatedSextant-12345.stypo; sub blockSeparatedSextant-6 by blockSeparatedSextant-6.stypo; sub blockSeparatedSextant-16 by blockSeparatedSextant-16.stypo; sub blockSeparatedSextant-26 by blockSeparatedSextant-26.stypo; sub blockSeparatedSextant-126 by blockSeparatedSextant-126.stypo; sub blockSeparatedSextant-36 by blockSeparatedSextant-36.stypo; sub blockSeparatedSextant-136 by blockSeparatedSextant-136.stypo; sub blockSeparatedSextant-236 by blockSeparatedSextant-236.stypo; sub blockSeparatedSextant-1236 by blockSeparatedSextant-1236.stypo; sub blockSeparatedSextant-46 by blockSeparatedSextant-46.stypo; sub blockSeparatedSextant-146 by blockSeparatedSextant-146.stypo; sub blockSeparatedSextant-246 by blockSeparatedSextant-246.stypo; sub blockSeparatedSextant-1246 by blockSeparatedSextant-1246.stypo; sub blockSeparatedSextant-346 by blockSeparatedSextant-346.stypo; sub blockSeparatedSextant-1346 by blockSeparatedSextant-1346.stypo; sub blockSeparatedSextant-2346 by blockSeparatedSextant-2346.stypo; sub blockSeparatedSextant-12346 by blockSeparatedSextant-12346.stypo; sub blockSeparatedSextant-56 by blockSeparatedSextant-56.stypo; sub blockSeparatedSextant-156 by blockSeparatedSextant-156.stypo; sub blockSeparatedSextant-256 by blockSeparatedSextant-256.stypo; sub blockSeparatedSextant-1256 by blockSeparatedSextant-1256.stypo; sub blockSeparatedSextant-356 by blockSeparatedSextant-356.stypo; sub blockSeparatedSextant-1356 by blockSeparatedSextant-1356.stypo; sub blockSeparatedSextant-2356 by blockSeparatedSextant-2356.stypo; sub blockSeparatedSextant-12356 by blockSeparatedSextant-12356.stypo; sub blockSeparatedSextant-456 by blockSeparatedSextant-456.stypo; sub blockSeparatedSextant-1456 by blockSeparatedSextant-1456.stypo; sub blockSeparatedSextant-2456 by blockSeparatedSextant-2456.stypo; sub blockSeparatedSextant-12456 by blockSeparatedSextant-12456.stypo; sub blockSeparatedSextant-3456 by blockSeparatedSextant-3456.stypo; sub blockSeparatedSextant-13456 by blockSeparatedSextant-13456.stypo; sub blockSeparatedSextant-23456 by blockSeparatedSextant-23456.stypo; sub blockSeparatedSextant-123456 by blockSeparatedSextant-123456.stypo; sub largeType-1CE1A by largeType-1CE1A.stypo; sub largeType-1CE1B by largeType-1CE1B.stypo; sub largeType-1CE1C by largeType-1CE1C.stypo; sub largeType-1CE1D by largeType-1CE1D.stypo; sub largeType-1CE1E by largeType-1CE1E.stypo; sub largeType-1CE1F by largeType-1CE1F.stypo; sub largeType-1CE20 by largeType-1CE20.stypo; sub largeType-1CE21 by largeType-1CE21.stypo; sub largeType-1CE22 by largeType-1CE22.stypo; sub largeType-1CE23 by largeType-1CE23.stypo; sub largeType-1CE24 by largeType-1CE24.stypo; sub largeType-1CE25 by largeType-1CE25.stypo; sub largeType-1CE26 by largeType-1CE26.stypo; sub largeType-1CE27 by largeType-1CE27.stypo; sub largeType-1CE28 by largeType-1CE28.stypo; sub largeType-1CE29 by largeType-1CE29.stypo; sub largeType-1CE2A by largeType-1CE2A.stypo; sub largeType-1CE2B by largeType-1CE2B.stypo; sub largeType-1CE2C by largeType-1CE2C.stypo; sub largeType-1CE2D by largeType-1CE2D.stypo; sub largeType-1CE2E by largeType-1CE2E.stypo; sub largeType-1CE2F by largeType-1CE2F.stypo; sub largeType-1CE30 by largeType-1CE30.stypo; sub largeType-1CE31 by largeType-1CE31.stypo; sub largeType-1CE32 by largeType-1CE32.stypo; sub largeType-1CE33 by largeType-1CE33.stypo; sub largeType-1CE34 by largeType-1CE34.stypo; sub largeType-1CE35 by largeType-1CE35.stypo; sub largeType-1CE36 by largeType-1CE36.stypo; sub largeType-1CE37 by largeType-1CE37.stypo; sub largeType-1CE38 by largeType-1CE38.stypo; sub largeType-1CE39 by largeType-1CE39.stypo; sub largeType-1CE3A by largeType-1CE3A.stypo; sub largeType-1CE3B by largeType-1CE3B.stypo; sub largeType-1CE3C by largeType-1CE3C.stypo; sub largeType-1CE3D by largeType-1CE3D.stypo; sub largeType-1CE3E by largeType-1CE3E.stypo; sub largeType-1CE3F by largeType-1CE3F.stypo; sub largeType-1CE40 by largeType-1CE40.stypo; sub largeType-1CE41 by largeType-1CE41.stypo; sub largeType-1CE42 by largeType-1CE42.stypo; sub largeType-1CE43 by largeType-1CE43.stypo; sub largeType-1CE44 by largeType-1CE44.stypo; sub largeType-1CE45 by largeType-1CE45.stypo; sub largeType-1CE46 by largeType-1CE46.stypo; sub largeType-1CE47 by largeType-1CE47.stypo; sub largeType-1CE48 by largeType-1CE48.stypo; sub largeType-1CE49 by largeType-1CE49.stypo; sub largeType-1CE4A by largeType-1CE4A.stypo; sub largeType-1CE4B by largeType-1CE4B.stypo; sub largeType-1CE4C by largeType-1CE4C.stypo; sub largeType-1CE4D by largeType-1CE4D.stypo; sub largeType-1CE4E by largeType-1CE4E.stypo; sub largeType-1CE4F by largeType-1CE4F.stypo; sub largeType-1CE50 by largeType-1CE50.stypo; } rclt; feature zero { # automatic sub zero by zero.zero; } zero; feature ss20 { # notes: # Name: sub acknowledgeControl by acknowledgeControl.ss20; sub backspaceControl by backspaceControl.ss20; sub bellControl by bellControl.ss20; sub cancelControl by cancelControl.ss20; sub carriageReturnControl by carriageReturnControl.ss20; sub dataLinkEscapeControl by dataLinkEscapeControl.ss20; sub deleteControl by deleteFormTwoControl; sub deviceControlFourControl by upperLeftQuadrantWhiteCircle; sub deviceControlOneControl by upperRightQuadrantWhiteCircle; sub deviceControlThreeControl by lowerLeftQuadrantWhiteCircle; sub deviceControlTwoControl by lowerRightQuadrantWhiteCircle; sub endOfMediumControl by endOfMediumControl.ss20; sub endOfTextControl by endOfTextControl.ss20; sub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20; sub endOfTransmissionControl by endOfTransmissionControl.ss20; sub enquiryControl by enquiryControl.ss20; sub escapeControl by escapeControl.ss20; sub fileSeparatorControl by whiteUpperLeftQuadrantSquare; sub formFeedControl by formFeedControl.ss20; sub groupSeparatorControl by whiteLowerLeftQuadrantSquare; sub horizontalTabulationControl by horizontalTabulationControl.ss20; sub lineFeedControl by lineFeedControl.ss20; sub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20; sub nullControl by whiteSquare; sub recordSeparatorControl by whiteLowerRightQuadrantSquare; sub shiftInControl by shiftInControl.ss20; sub shiftOutControl by shiftOutControl.ss20; sub spaceControl by upWhiteTriangle; sub startOfHeadingControl by startOfHeadingControl.ss20; sub startOfTextControl by startOfTextControl.ss20; sub substituteControl by substituteControl.ss20; sub synchronousIdleControl by synchronousIdleControl.ss20; sub unitSeparatorControl by whiteUpperRightQuadrantSquare; sub verticalTabulationControl by verticalTabulationControl.ss20; sub newlineControl by returnsymbol; } ss20; ================================================ FILE: sources/CascadiaCode-Bold.ufo/fontinfo.plist ================================================ ascender 1568 capHeight 1420 copyright © 2021 Microsoft Corporation. All Rights Reserved. descender -480 familyName Cascadia Code guidelines angle 180 name [locked] x 1107 y 333 angle 0 name [locked] x 886 y -1040 angle 0 name [locked] x 1052 y -543 angle 0 name [locked] x 1492 y -819 angle 0 name [locked] x 440 y -460 angle 270 name [locked] x 280 y 416 angle 90 name [locked] x 2194 y 332 angle 90 name [locked] x 2154 y 342 angle 270 name [locked] x 240 y 390 angle 90 name [locked] x 392 y 408 angle 90 name [locked] x 2004 y 52 angle 90 name [locked] x 3360 y 466 angle 90 name [locked] x 3320 y 306 angle 90 name [locked] x 3208 y 146 angle 0 x -327 y 2226 angle 0 name [locked] x 1117 y 1085 angle 90 name [locked] x 1047 y 843 angle 180 name [locked] x 1117 y 575 italicAngle 0 openTypeHeadCreated 2019/04/07 17:18:29 openTypeNameDesigner Aaron Bell openTypeNameDesignerURL http://sajatypeworks.com openTypeNameLicense Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited. The following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE). 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. 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. openTypeNameLicenseURL https://scripts.sil.org/OFL openTypeNameManufacturer Saja Typeworks openTypeNameManufacturerURL http://sajatypeworks.com openTypeOS2Panose 2 11 6 9 2 0 0 2 0 4 openTypeOS2Selection 7 openTypeOS2Type openTypeOS2VendorID SAJA postscriptBlueValues -20 0 1060 1080 1420 1440 1500 1520 postscriptIsFixedPitch postscriptOtherBlues -480 -460 postscriptStemSnapH 200 210 212 220 postscriptStemSnapV 190 180 postscriptUnderlinePosition -100 postscriptUnderlineThickness 100 styleName Bold trademark Cascadia Code is a trademark of the Microsoft group of companies. unitsPerEm 2048 versionMajor 4 versionMinor 300 xHeight 1060 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_breveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_brevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_brevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_brevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_brevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_lpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_lpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_lphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name A ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_ringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb.case alignment -1 index 1 name Aring ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/A_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/B_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/B_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/B_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_hedescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Che-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/C_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_african.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_croat.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_elta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_je-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_ze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/D_zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_f-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_l-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_m-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_n-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_ndescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name En-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_ng.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_r-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_reversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_reversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_s-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_sh.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_ta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_tatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_th.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/E_zh.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/F_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/F_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/F_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_amma.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_ammaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_ermandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_hestroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Ge-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_heupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/G_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_adescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Ha-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_ardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_bar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name H ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/H_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_J__acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name acutecomb.case alignment -1 index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_egrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_igrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_ishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name I ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_ota.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_otaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_otadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_otatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/I_u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/J_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/J_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/J_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_adescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_aiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_appa.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/K_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_I_G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_ambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_caron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_dot.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L alignment -1 index 1 name periodcentered ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_middletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/L_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/M_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/M_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/M_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_hookleft.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/N_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_barred-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_hm.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_macronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_macrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_mega.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_megatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_micron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_microntonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_slash.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_slashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/O_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_alochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/P_si.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Q_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Q_.half.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O.half ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/R_ho.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_chwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_chwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_hcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_hha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_igma.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/S_oftsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_au.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_bar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name T ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_diagonalstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_heta.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_se-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/T_she-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_horn.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name U ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name U ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_psilonafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_psilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_short-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_straight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_straightstroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Y ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/U_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/V_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/V_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/V_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/V_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/V_turned.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/W_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/W_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/W_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/W_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/W_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/X_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/X_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/X_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_eru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Y_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_e-cy.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/Z_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alef-ar.fina.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alef-ar.fina.short.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefF_athatan-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.rlig alignment 1 anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefM_adda-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefT_hreeabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefT_woabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.rlig anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_alefabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_bar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_cuberoot_fourthroot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_damma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_dot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_dotV_I_nvertedabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_dotV_above.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 0 name dotabove-ar alignment -1 anchor top index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_dots.horz.below.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_doublebar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _bar alignment -1 index 1 name _bar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_fatha-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_four-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_fourdotscenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotbelow-ar alignment -1 index 2 name dotbelow-ar alignment -1 index 3 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_fourthroot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_hamzasmall-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_hamzawavy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_hehgoalcomma.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_highhamzaA_lef-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_invertedstroke.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_notdef.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_onedotstah.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_ringA_rabic.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_stroke.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_tahabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_tahabovesmall.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_threedots-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_twodotshorizontal-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_twodotstah.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove alignment -1 index 1 name _twodotshorizontal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_twodotsverticalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_vabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_vbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_vinvertedbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_yehR_ohingya-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/_yehR_ohingya-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/a.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/aacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abreveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abrevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abrevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abrevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/abrevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name A.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/acutetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/adieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/adotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ae-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ae.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/aeacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/afghani-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/agrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ahookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ain-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedotsdownabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ainT_wodotsverticalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.fina.short.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alef-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name fathatan-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefF_athatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name fathatan-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.rlig anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefH_amzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt alignment 1 anchor top.dot index 1 name madda-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.init.alt.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.init.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksura-ar.medi.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefM_aksuraA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 alignment -1 index 1 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_hreeabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 alignment -1 index 1 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 alignment -1 index 1 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_asla-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.rlig anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefW_avyhamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alefabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alefabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefpatah-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alefqamats-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/allah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam_lam_heh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/alphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/amacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ampersand.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/anoteleia.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/aogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name a ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/apostrophemod.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quoteright ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/approxequal.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asciitilde alignment -1 index 1 name asciitilde ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/aring.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/aringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciicircum.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciicircum_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_at.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asteriskA_rt-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk alignment -1 index 1 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk alignment -1 index 1 name asterisk alignment -1 index 2 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk alignment -1 index 1 name greater ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk_parenright.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/asterisk_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk alignment -1 index 1 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/at.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/atilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ayin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/b.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/backslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/backslash_backslash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name backslash alignment -1 index 1 name backslash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/backslash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/backspaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/baht.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar alignment -1 index 1 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar alignment -1 index 1 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_braceright.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_bracketright.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/be-cy.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behD_otless-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name meemStopabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behM_eemabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behT_wodotsbelowD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_below-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/behhamzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/beta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/betdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bitcoin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackC_ircle.glif ================================================ H18533 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackD_iamond.glif ================================================ uni25C6 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackH_exagon.glif ================================================ uni2B22 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ uni2B2C ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ uni25C8 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackL_argeC_ircle.glif ================================================ uni2B24 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackL_argeS_quare.glif ================================================ uni2B1B ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ uni2B25 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ uni2BC6 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ uni2BC7 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ uni2B27 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ uni2BC8 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ uni2BC5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackP_arallelogram.glif ================================================ uni25B0 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackP_entagon.glif ================================================ uni2B1F ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallD_iamond.glif ================================================ uni2B29 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ uni2B2A ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackS_mallS_quare.glif ================================================ H18543 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackS_quare.glif ================================================ filledbox ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ uni2B2E ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackV_erticalR_ect.glif ================================================ uni25AE ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ uni2B1D ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blank-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blank.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blankS_ymbol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12347.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12348.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12357.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12358.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12367.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12368.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12378.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1238.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1247.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1248.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1257.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1258.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1267.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1268.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-127.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1278.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-128.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1347.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1348.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1358.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1367.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-137.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1378.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-138.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-147.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-148.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-157.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-158.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-167.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-168.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-17.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-178.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-18.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2347.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2348.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2357.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2358.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2367.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2368.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-237.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2378.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-238.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-247.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-248.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-257.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-258.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-267.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-268.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-27.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-278.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-28.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-347.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-348.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-35678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-357.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-358.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-367.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-368.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-37.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-378.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-38.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-457.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-458.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-467.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-468.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-47.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-478.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-567.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-568.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-578.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-58.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-67.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-678.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ uni2BCB ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ uni2B19 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/braceleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/braceleft_bar.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bracketleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bracketleft_bar.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bracketright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bracketleft ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/breve.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name brevecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/brevecomb-cy.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/brevecomb-cy.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/brevecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/brevecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/brokenbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bulletoperator.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bullet ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/bullseye.glif ================================================ uni25CE com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name largeCircle alignment -1 index 1 name whiteBullet ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/c.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cancelC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name N.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/careof.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/caron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name caroncomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/caroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/caroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name R.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ccaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ccedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ccircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cedi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cedilla.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name cedillacomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cedillacomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cent.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name c ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/che-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/checkmark.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/chedescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name che-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/chi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/circumflex.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name circumflexcomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/circumflexcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/circumflexcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/clubB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_colon.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name colon alignment -1 index 1 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_colon.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name colon alignment -1 index 1 name colon alignment -1 index 2 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name colon alignment -1 index 1 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colon_slash_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name colon alignment -1 index 1 name slash alignment -1 index 2 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colonsign.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/colontriangularmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/comma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/comma.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/commaabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/commaaboverightcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/commaaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/commaturnedabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/commaturnedmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/contents.plist ================================================ .notdef _notdef.glif A A_.glif A-cy A_-cy.glif A.half A_.half.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehookabove A_brevehookabove.glif Abrevetilde A_brevetilde.glif Acaron A_caron.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhookabove A_circumflexhookabove.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahookabove A_hookabove.glif Alpha A_lpha.glif Alpha-latin A_lpha-latin.glif Alphatonos A_lphatonos.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Asmall A_small.glif Astroke A_stroke.glif Atilde A_tilde.glif B B_.glif B.half B_.half.glif Be-cy B_e-cy.glif Beta B_eta.glif C C_.glif C.half C_.half.glif CR C_R_.glif Cacute C_acute.glif Cacute.loclPLK C_acute.loclP_L_K_.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif Che-cy C_he-cy.glif Chedescender-cy C_hedescender-cy.glif Chi C_hi.glif Cstroke C_stroke.glif D D_.glif D.half D_.half.glif Dafrican D_african.glif Dcaron D_caron.glif Dcroat D_croat.glif De-cy D_e-cy.glif De-cy.loclBGR D_e-cy.loclB_G_R_.glif Delta D_elta.glif Dje-cy D_je-cy.glif Dze-cy D_ze-cy.glif Dzhe-cy D_zhe-cy.glif E E_.glif E-cy E_-cy.glif E.half E_.half.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhookabove E_circumflexhookabove.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Ef-cy E_f-cy.glif Ef-cy.loclBGR E_f-cy.loclB_G_R_.glif Egrave E_grave.glif Ehookabove E_hookabove.glif El-cy E_l-cy.glif El-cy.loclBGR E_l-cy.loclB_G_R_.glif Em-cy E_m-cy.glif Emacron E_macron.glif En-cy E_n-cy.glif Endescender-cy E_ndescender-cy.glif Eng E_ng.glif Eogonek E_ogonek.glif Eopen E_open.glif Epsilon E_psilon.glif Epsilontonos E_psilontonos.glif Er-cy E_r-cy.glif Ereversed E_reversed.glif Ereversed-cy E_reversed-cy.glif Es-cy E_s-cy.glif Esh E_sh.glif Eta E_ta.glif Etatonos E_tatonos.glif Eth E_th.glif Etilde E_tilde.glif Ezh E_zh.glif F F_.glif F.half F_.half.glif Fhook F_hook.glif G G_.glif G.half G_.half.glif Gamma G_amma.glif Gammaafrican G_ammaafrican.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Ge-cy G_e-cy.glif Germandbls G_ermandbls.glif Ghestroke-cy G_hestroke-cy.glif Gheupturn-cy G_heupturn-cy.glif Gje-cy G_je-cy.glif Gsmall G_small.glif Gstroke G_stroke.glif H H_.glif H.half H_.half.glif Ha-cy H_a-cy.glif Hadescender-cy H_adescender-cy.glif Hardsign-cy H_ardsign-cy.glif Hbar H_bar.glif Hcaron H_caron.glif Hcircumflex H_circumflex.glif Hdotbelow H_dotbelow.glif I I_.glif I-cy I_-cy.glif I.half I_.half.glif IJ I_J_.glif IJ_acute I_J__acute.glif Ia-cy I_a-cy.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Ie-cy I_e-cy.glif Iegrave-cy I_egrave-cy.glif Igrave I_grave.glif Ihookabove I_hookabove.glif Ii-cy I_i-cy.glif Iigrave-cy I_igrave-cy.glif Iishort-cy I_ishort-cy.glif Imacron I_macron.glif Imacron-cy I_macron-cy.glif Io-cy I_o-cy.glif Iogonek I_ogonek.glif Iota I_ota.glif Iotaafrican I_otaafrican.glif Iotadieresis I_otadieresis.glif Iotatonos I_otatonos.glif Ismall I_small.glif Itilde I_tilde.glif Iu-cy I_u-cy.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif Je-cy J_e-cy.glif K K_.glif K.half K_.half.glif Ka-cy K_a-cy.glif Kacute K_acute.glif Kadescender-cy K_adescender-cy.glif KaiSymbol K_aiS_ymbol.glif Kappa K_appa.glif Kcommaaccent K_commaaccent.glif Kdotbelow K_dotbelow.glif Kje-cy K_je-cy.glif Klinebelow K_linebelow.glif L L_.glif L.half L_.half.glif LIG L_I_G_.glif Lacute L_acute.glif Lambda L_ambda.glif Lbar L_bar.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Ldotbelow L_dotbelow.glif Lje-cy L_je-cy.glif Llinebelow L_linebelow.glif Lmiddletilde L_middletilde.glif Lslash L_slash.glif Lsmall L_small.glif M M_.glif M.half M_.half.glif Mu M_u.glif N N_.glif N.half N_.half.glif Nacute N_acute.glif Nacute.loclPLK N_acute.loclP_L_K_.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Nhookleft N_hookleft.glif Nje-cy N_je-cy.glif Nlinebelow N_linebelow.glif Ntilde N_tilde.glif Nu N_u.glif O O_.glif O-cy O_-cy.glif O.half O_.half.glif OE O_E_.glif Oacute O_acute.glif Oacute.loclPLK O_acute.loclP_L_K_.glif Obarred-cy O_barred-cy.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhookabove O_circumflexhookabove.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohm O_hm.glif Ohookabove O_hookabove.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhookabove O_hornhookabove.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omacronacute O_macronacute.glif Omacrongrave O_macrongrave.glif Omega O_mega.glif Omegatonos O_megatonos.glif Omicron O_micron.glif Omicrontonos O_microntonos.glif Oogonek O_ogonek.glif Oopen O_open.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif P.half P_.half.glif Palochka-cy P_alochka-cy.glif Pe-cy P_e-cy.glif Phi P_hi.glif Pi P_i.glif Psi P_si.glif Q Q_.glif Q.half Q_.half.glif R R_.glif R.half R_.half.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif Rdotbelow R_dotbelow.glif Rho R_ho.glif S S_.glif S.half S_.half.glif Sacute S_acute.glif Sacute.loclPLK S_acute.loclP_L_K_.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Schwa-cy S_chwa-cy.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif Sdotbelow S_dotbelow.glif Sha-cy S_ha-cy.glif Shcha-cy S_hcha-cy.glif Shha-cy S_hha-cy.glif Sigma S_igma.glif Softsign-cy S_oftsign-cy.glif T T_.glif T.half T_.half.glif Tau T_au.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Tdiagonalstroke T_diagonalstroke.glif Te-cy T_e-cy.glif Theta T_heta.glif Thorn T_horn.glif Tlinebelow T_linebelow.glif Tse-cy T_se-cy.glif Tshe-cy T_she-cy.glif U U_.glif U-cy U_-cy.glif U.half U_.half.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhookabove U_hookabove.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhookabove U_hornhookabove.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Umacron-cy U_macron-cy.glif Uogonek U_ogonek.glif Upsilon U_psilon.glif Upsilonafrican U_psilonafrican.glif Upsilondieresis U_psilondieresis.glif Upsilontonos U_psilontonos.glif Uring U_ring.glif Ushort-cy U_short-cy.glif Ustraight-cy U_straight-cy.glif Ustraightstroke-cy U_straightstroke-cy.glif Utilde U_tilde.glif V V_.glif V.half V_.half.glif Ve-cy V_e-cy.glif Vhook V_hook.glif Vturned V_turned.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif X.half X_.half.glif Xi X_i.glif Y Y_.glif Y.half Y_.half.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Yeru-cy Y_eru-cy.glif Ygrave Y_grave.glif Yhookabove Y_hookabove.glif Yi-cy Y_i-cy.glif Ymacron Y_macron.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zacute.loclPLK Z_acute.loclP_L_K_.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif Ze-cy Z_e-cy.glif Zeta Z_eta.glif Zhe-cy Z_he-cy.glif Zhedescender-cy Z_hedescender-cy.glif _alef-ar.fina.rlig _alef-ar.fina.rlig.glif _alef-ar.fina.short.rlig _alef-ar.fina.short.rlig.glif _alefFathatan-ar.fina.rlig _alefF_athatan-ar.fina.rlig.glif _alefHamzaabove-ar.fina.rlig _alefH_amzaabove-ar.fina.rlig.glif _alefHamzabelow-ar.fina.rlig _alefH_amzabelow-ar.fina.rlig.glif _alefMadda-ar.fina.rlig _alefM_adda-ar.fina.rlig.glif _alefThreeabove-ar.fina.rlig _alefT_hreeabove-ar.fina.rlig.glif _alefTwoabove-ar.fina.rlig _alefT_woabove-ar.fina.rlig.glif _alefWasla-ar.fina.rlig _alefW_asla-ar.fina.rlig.glif _alefWavyhamzaabove-ar.fina.rlig _alefW_avyhamzaabove-ar.fina.rlig.glif _alefWavyhamzabelow-ar.fina.rlig _alefW_avyhamzabelow-ar.fina.rlig.glif _alefabove _alefabove.glif _bar _bar.glif _cuberoot_fourthroot-ar _cuberoot_fourthroot-ar.glif _damma-ar _damma-ar.glif _dot-ar _dot-ar.glif _dotVInvertedabove _dotV_I_nvertedabove.glif _dotVabove _dotV_above.glif _dots.horz.below _dots.horz.below.glif _doublebar _doublebar.glif _fatha-ar _fatha-ar.glif _four-persian.small01 _four-persian.small01.glif _fourdotscenter-ar _fourdotscenter-ar.glif _fourthroot-ar _fourthroot-ar.glif _hamzasmall-ar _hamzasmall-ar.glif _hamzawavy _hamzawavy.glif _hehgoalcomma _hehgoalcomma.glif _highhamzaAlef-ar.fina.rlig _highhamzaA_lef-ar.fina.rlig.glif _invertedstroke _invertedstroke.glif _onedotstah _onedotstah.glif _ringArabic _ringA_rabic.glif _stroke _stroke.glif _tahabove _tahabove.glif _tahabovesmall _tahabovesmall.glif _threedots-ar _threedots-ar.glif _twodotshorizontal-ar _twodotshorizontal-ar.glif _twodotstah _twodotstah.glif _twodotsverticalabove-ar _twodotsverticalabove-ar.glif _vabove _vabove.glif _vbelow-ar _vbelow-ar.glif _vinvertedbelow-ar _vinvertedbelow-ar.glif _yehRohingya-ar _yehR_ohingya-ar.glif _yehRohingya-ar.fina _yehR_ohingya-ar.fina.glif a a.glif a-cy a-cy.glif aacute aacute.glif abreve abreve.glif abreveacute abreveacute.glif abrevedotbelow abrevedotbelow.glif abrevegrave abrevegrave.glif abrevehookabove abrevehookabove.glif abrevetilde abrevetilde.glif acaron acaron.glif acircumflex acircumflex.glif acircumflexacute acircumflexacute.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexgrave acircumflexgrave.glif acircumflexhookabove acircumflexhookabove.glif acircumflextilde acircumflextilde.glif acknowledgeControl acknowledgeC_ontrol.glif acknowledgeControl.ss20 acknowledgeC_ontrol.ss20.glif acute acute.glif acutecomb acutecomb.glif acutecomb.case acutecomb.case.glif acutecomb.case.loclPLK acutecomb.case.loclP_L_K_.glif acutecomb.loclPLK acutecomb.loclP_L_K_.glif acutetonecomb acutetonecomb.glif adieresis adieresis.glif adotbelow adotbelow.glif ae ae.glif ae-ar ae-ar.glif ae-ar.fina ae-ar.fina.glif aeacute aeacute.glif afghani-ar afghani-ar.glif agrave agrave.glif ahookabove ahookabove.glif ain-ar ain-ar.glif ain-ar.fina ain-ar.fina.glif ain-ar.init ain-ar.init.glif ain-ar.medi ain-ar.medi.glif ainThreedots-ar ainT_hreedots-ar.glif ainThreedots-ar.fina ainT_hreedots-ar.fina.glif ainThreedots-ar.init ainT_hreedots-ar.init.glif ainThreedots-ar.medi ainT_hreedots-ar.medi.glif ainThreedotsdownabove-ar ainT_hreedotsdownabove-ar.glif ainThreedotsdownabove-ar.fina ainT_hreedotsdownabove-ar.fina.glif ainThreedotsdownabove-ar.init ainT_hreedotsdownabove-ar.init.glif ainThreedotsdownabove-ar.medi ainT_hreedotsdownabove-ar.medi.glif ainTwodotshorizontalabove-ar ainT_wodotshorizontalabove-ar.glif ainTwodotshorizontalabove-ar.fina ainT_wodotshorizontalabove-ar.fina.glif ainTwodotshorizontalabove-ar.init ainT_wodotshorizontalabove-ar.init.glif ainTwodotshorizontalabove-ar.medi ainT_wodotshorizontalabove-ar.medi.glif ainTwodotsverticalabove-ar ainT_wodotsverticalabove-ar.glif ainTwodotsverticalabove-ar.fina ainT_wodotsverticalabove-ar.fina.glif ainTwodotsverticalabove-ar.init ainT_wodotsverticalabove-ar.init.glif ainTwodotsverticalabove-ar.medi ainT_wodotsverticalabove-ar.medi.glif alef-ar alef-ar.glif alef-ar.fina alef-ar.fina.glif alef-ar.fina.alt alef-ar.fina.alt.glif alef-ar.fina.rlig alef-ar.fina.rlig.glif alef-ar.fina.short alef-ar.fina.short.glif alef-ar.fina.short.alt alef-ar.fina.short.alt.glif alef-ar.fina.short.rlig alef-ar.fina.short.rlig.glif alef-ar.short alef-ar.short.glif alef-hb alef-hb.glif alefFathatan-ar alefF_athatan-ar.glif alefFathatan-ar.fina alefF_athatan-ar.fina.glif alefFathatan-ar.fina.rlig alefF_athatan-ar.fina.rlig.glif alefHamzaabove-ar alefH_amzaabove-ar.glif alefHamzaabove-ar.fina alefH_amzaabove-ar.fina.glif alefHamzaabove-ar.fina.alt alefH_amzaabove-ar.fina.alt.glif alefHamzaabove-ar.fina.rlig alefH_amzaabove-ar.fina.rlig.glif alefHamzabelow-ar alefH_amzabelow-ar.glif alefHamzabelow-ar.fina alefH_amzabelow-ar.fina.glif alefHamzabelow-ar.fina.alt alefH_amzabelow-ar.fina.alt.glif alefHamzabelow-ar.fina.rlig alefH_amzabelow-ar.fina.rlig.glif alefMadda-ar alefM_adda-ar.glif alefMadda-ar.fina alefM_adda-ar.fina.glif alefMadda-ar.fina.alt alefM_adda-ar.fina.alt.glif alefMadda-ar.fina.rlig alefM_adda-ar.fina.rlig.glif alefMaksura-ar alefM_aksura-ar.glif alefMaksura-ar.fina alefM_aksura-ar.fina.glif alefMaksura-ar.fina.alt alefM_aksura-ar.fina.alt.glif alefMaksura-ar.init alefM_aksura-ar.init.glif alefMaksura-ar.init.alt alefM_aksura-ar.init.alt.glif alefMaksura-ar.medi alefM_aksura-ar.medi.glif alefMaksuraAlefabove-ar alefM_aksuraA_lefabove-ar.glif alefMaksuraAlefabove-ar.fina alefM_aksuraA_lefabove-ar.fina.glif alefMaksuraAlefabove-ar.fina.alt alefM_aksuraA_lefabove-ar.fina.alt.glif alefThreeabove-ar alefT_hreeabove-ar.glif alefThreeabove-ar.fina alefT_hreeabove-ar.fina.glif alefThreeabove-ar.fina.alt alefT_hreeabove-ar.fina.alt.glif alefThreeabove-ar.fina.rlig alefT_hreeabove-ar.fina.rlig.glif alefTwoabove-ar alefT_woabove-ar.glif alefTwoabove-ar.fina alefT_woabove-ar.fina.glif alefTwoabove-ar.fina.alt alefT_woabove-ar.fina.alt.glif alefTwoabove-ar.fina.rlig alefT_woabove-ar.fina.rlig.glif alefWasla-ar alefW_asla-ar.glif alefWasla-ar.fina alefW_asla-ar.fina.glif alefWasla-ar.fina.alt alefW_asla-ar.fina.alt.glif alefWasla-ar.fina.rlig alefW_asla-ar.fina.rlig.glif alefWavyhamzaabove-ar alefW_avyhamzaabove-ar.glif alefWavyhamzaabove-ar.fina alefW_avyhamzaabove-ar.fina.glif alefWavyhamzaabove-ar.fina.alt alefW_avyhamzaabove-ar.fina.alt.glif alefWavyhamzaabove-ar.fina.rlig alefW_avyhamzaabove-ar.fina.rlig.glif alefWavyhamzabelow-ar alefW_avyhamzabelow-ar.glif alefWavyhamzabelow-ar.fina alefW_avyhamzabelow-ar.fina.glif alefWavyhamzabelow-ar.fina.alt alefW_avyhamzabelow-ar.fina.alt.glif alefWavyhamzabelow-ar.fina.rlig alefW_avyhamzabelow-ar.fina.rlig.glif alefabove-ar alefabove-ar.glif alefbelow-ar alefbelow-ar.glif alefdagesh-hb alefdagesh-hb.glif alefdagesh-hb.BRACKET.500 alefdagesh-hb.B_R_A_C_K_E_T_.500.glif alefpatah-hb alefpatah-hb.glif alefqamats-hb alefqamats-hb.glif allah-ar allah-ar.glif alpha alpha.glif alpha-latin alpha-latin.glif alphatonos alphatonos.glif amacron amacron.glif ampersand ampersand.glif ampersand_ampersand.liga ampersand_ampersand.liga.glif anoteleia anoteleia.glif aogonek aogonek.glif apostrophemod apostrophemod.glif approxequal approxequal.glif aring aring.glif aringacute aringacute.glif asciicircum asciicircum.glif asciicircum_equal.liga asciicircum_equal.liga.glif asciitilde asciitilde.glif asciitilde_asciitilde.liga asciitilde_asciitilde.liga.glif asciitilde_asciitilde_greater.liga asciitilde_asciitilde_greater.liga.glif asciitilde_at.liga asciitilde_at.liga.glif asciitilde_equal.liga asciitilde_equal.liga.glif asciitilde_greater.liga asciitilde_greater.liga.glif asciitilde_hyphen.liga asciitilde_hyphen.liga.glif asterisk asterisk.glif asterisk-ar asterisk-ar.glif asteriskArt-ar asteriskA_rt-ar.glif asterisk_asterisk.liga asterisk_asterisk.liga.glif asterisk_asterisk_asterisk.liga asterisk_asterisk_asterisk.liga.glif asterisk_greater.liga asterisk_greater.liga.glif asterisk_parenright.liga asterisk_parenright.liga.glif asterisk_slash.liga asterisk_slash.liga.glif at at.glif atilde atilde.glif ayin-hb ayin-hb.glif b b.glif backslash backslash.glif backslash_backslash.liga backslash_backslash.liga.glif backslash_slash.liga backslash_slash.liga.glif backspaceControl backspaceC_ontrol.glif backspaceControl.ss20 backspaceC_ontrol.ss20.glif baht baht.glif baht.BRACKET.600 baht.B_R_A_C_K_E_T_.600.glif bar bar.glif bar_bar.liga bar_bar.liga.glif bar_bar_bar.liga bar_bar_bar.liga.glif bar_bar_bar_greater.liga bar_bar_bar_greater.liga.glif bar_bar_equal_end.seq bar_bar_equal_end.seq.glif bar_bar_equal_middle.seq bar_bar_equal_middle.seq.glif bar_bar_equal_start.seq bar_bar_equal_start.seq.glif bar_bar_greater.liga bar_bar_greater.liga.glif bar_bar_hyphen_end.seq bar_bar_hyphen_end.seq.glif bar_bar_hyphen_middle.seq bar_bar_hyphen_middle.seq.glif bar_bar_hyphen_start.seq bar_bar_hyphen_start.seq.glif bar_braceright.liga bar_braceright.liga.glif bar_bracketright.liga bar_bracketright.liga.glif bar_equal_end.seq bar_equal_end.seq.glif bar_equal_middle.seq bar_equal_middle.seq.glif bar_equal_start.seq bar_equal_start.seq.glif bar_greater.liga bar_greater.liga.glif bar_hyphen_end.seq bar_hyphen_end.seq.glif bar_hyphen_middle.seq bar_hyphen_middle.seq.glif bar_hyphen_start.seq bar_hyphen_start.seq.glif bar_underscore_middle.seq bar_underscore_middle.seq.glif be-cy be-cy.glif be-cy.loclSRB be-cy.loclS_R_B_.glif beeh-ar beeh-ar.glif beeh-ar.alt beeh-ar.alt.glif beeh-ar.fina beeh-ar.fina.glif beeh-ar.fina.alt beeh-ar.fina.alt.glif beeh-ar.init beeh-ar.init.glif beeh-ar.init.alt beeh-ar.init.alt.glif beeh-ar.medi beeh-ar.medi.glif beh-ar beh-ar.glif beh-ar.alt beh-ar.alt.glif beh-ar.fina beh-ar.fina.glif beh-ar.fina.alt beh-ar.fina.alt.glif beh-ar.init beh-ar.init.glif beh-ar.init.alt beh-ar.init.alt.glif beh-ar.medi beh-ar.medi.glif behDotless-ar behD_otless-ar.glif behDotless-ar.alt behD_otless-ar.alt.glif behDotless-ar.fina behD_otless-ar.fina.glif behDotless-ar.fina.alt behD_otless-ar.fina.alt.glif behDotless-ar.init behD_otless-ar.init.glif behDotless-ar.init.alt behD_otless-ar.init.alt.glif behDotless-ar.medi behD_otless-ar.medi.glif behMeemabove-ar behM_eemabove-ar.glif behMeemabove-ar.alt behM_eemabove-ar.alt.glif behMeemabove-ar.fina behM_eemabove-ar.fina.glif behMeemabove-ar.fina.alt behM_eemabove-ar.fina.alt.glif behMeemabove-ar.init behM_eemabove-ar.init.glif behMeemabove-ar.init.alt behM_eemabove-ar.init.alt.glif behMeemabove-ar.medi behM_eemabove-ar.medi.glif behThreedotshorizontalbelow-ar behT_hreedotshorizontalbelow-ar.glif behThreedotshorizontalbelow-ar.alt behT_hreedotshorizontalbelow-ar.alt.glif behThreedotshorizontalbelow-ar.fina behT_hreedotshorizontalbelow-ar.fina.glif behThreedotshorizontalbelow-ar.fina.alt behT_hreedotshorizontalbelow-ar.fina.alt.glif behThreedotshorizontalbelow-ar.init behT_hreedotshorizontalbelow-ar.init.glif behThreedotshorizontalbelow-ar.init.alt behT_hreedotshorizontalbelow-ar.init.alt.glif behThreedotshorizontalbelow-ar.medi behT_hreedotshorizontalbelow-ar.medi.glif behThreedotsupabove-ar behT_hreedotsupabove-ar.glif behThreedotsupabove-ar.alt behT_hreedotsupabove-ar.alt.glif behThreedotsupabove-ar.fina behT_hreedotsupabove-ar.fina.glif behThreedotsupabove-ar.fina.alt behT_hreedotsupabove-ar.fina.alt.glif behThreedotsupabove-ar.init behT_hreedotsupabove-ar.init.glif behThreedotsupabove-ar.init.alt behT_hreedotsupabove-ar.init.alt.glif behThreedotsupabove-ar.medi behT_hreedotsupabove-ar.medi.glif behThreedotsupbelow-ar behT_hreedotsupbelow-ar.glif behThreedotsupbelow-ar.alt behT_hreedotsupbelow-ar.alt.glif behThreedotsupbelow-ar.fina behT_hreedotsupbelow-ar.fina.glif behThreedotsupbelow-ar.fina.alt behT_hreedotsupbelow-ar.fina.alt.glif behThreedotsupbelow-ar.init behT_hreedotsupbelow-ar.init.glif behThreedotsupbelow-ar.init.alt behT_hreedotsupbelow-ar.init.alt.glif behThreedotsupbelow-ar.medi behT_hreedotsupbelow-ar.medi.glif behTwodotsbelowDotabove-ar behT_wodotsbelowD_otabove-ar.glif behTwodotsbelowDotabove-ar.alt behT_wodotsbelowD_otabove-ar.alt.glif behTwodotsbelowDotabove-ar.fina behT_wodotsbelowD_otabove-ar.fina.glif behTwodotsbelowDotabove-ar.fina.alt behT_wodotsbelowD_otabove-ar.fina.alt.glif behTwodotsbelowDotabove-ar.init behT_wodotsbelowD_otabove-ar.init.glif behTwodotsbelowDotabove-ar.init.alt behT_wodotsbelowD_otabove-ar.init.alt.glif behTwodotsbelowDotabove-ar.medi behT_wodotsbelowD_otabove-ar.medi.glif behVabove-ar behV_above-ar.glif behVabove-ar.alt behV_above-ar.alt.glif behVabove-ar.fina behV_above-ar.fina.glif behVabove-ar.fina.alt behV_above-ar.fina.alt.glif behVabove-ar.init behV_above-ar.init.glif behVabove-ar.init.alt behV_above-ar.init.alt.glif behVabove-ar.medi behV_above-ar.medi.glif behVbelow-ar behV_below-ar.glif behVbelow-ar.alt behV_below-ar.alt.glif behVbelow-ar.fina behV_below-ar.fina.glif behVbelow-ar.fina.alt behV_below-ar.fina.alt.glif behVbelow-ar.init behV_below-ar.init.glif behVbelow-ar.init.alt behV_below-ar.init.alt.glif behVbelow-ar.medi behV_below-ar.medi.glif behVinvertedbelow-ar behV_invertedbelow-ar.glif behVinvertedbelow-ar.alt behV_invertedbelow-ar.alt.glif behVinvertedbelow-ar.fina behV_invertedbelow-ar.fina.glif behVinvertedbelow-ar.fina.alt behV_invertedbelow-ar.fina.alt.glif behVinvertedbelow-ar.init behV_invertedbelow-ar.init.glif behVinvertedbelow-ar.init.alt behV_invertedbelow-ar.init.alt.glif behVinvertedbelow-ar.medi behV_invertedbelow-ar.medi.glif beheh-ar beheh-ar.glif beheh-ar.alt beheh-ar.alt.glif beheh-ar.fina beheh-ar.fina.glif beheh-ar.fina.alt beheh-ar.fina.alt.glif beheh-ar.init beheh-ar.init.glif beheh-ar.init.alt beheh-ar.init.alt.glif beheh-ar.medi beheh-ar.medi.glif behhamzaabove-ar behhamzaabove-ar.glif behhamzaabove-ar.alt behhamzaabove-ar.alt.glif behhamzaabove-ar.fina behhamzaabove-ar.fina.glif behhamzaabove-ar.fina.alt behhamzaabove-ar.fina.alt.glif behhamzaabove-ar.init behhamzaabove-ar.init.glif behhamzaabove-ar.medi behhamzaabove-ar.medi.glif bellControl bellC_ontrol.glif bellControl.ss20 bellC_ontrol.ss20.glif bet-hb bet-hb.glif beta beta.glif betdagesh-hb betdagesh-hb.glif bitcoin bitcoin.glif blackCircle blackC_ircle.glif blackDiamond blackD_iamond.glif blackHexagon blackH_exagon.glif blackHorizontalEllipse blackH_orizontalE_llipse.glif blackInWhiteDiamond blackI_nW_hiteD_iamond.glif blackLargeCircle blackL_argeC_ircle.glif blackLargeSquare blackL_argeS_quare.glif blackMediumDiamond blackM_ediumD_iamond.glif blackMediumDownTriangleCentred blackM_ediumD_ownT_riangleC_entred.glif blackMediumLeftTriangleCentred blackM_ediumL_eftT_riangleC_entred.glif blackMediumLozenge blackM_ediumL_ozenge.glif blackMediumRightTriangleCentred blackM_ediumR_ightT_riangleC_entred.glif blackMediumUpTriangleCentred blackM_ediumU_pT_riangleC_entred.glif blackParallelogram blackP_arallelogram.glif blackPentagon blackP_entagon.glif blackSmallDiamond blackS_mallD_iamond.glif blackSmallLozenge blackS_mallL_ozenge.glif blackSmallSquare blackS_mallS_quare.glif blackSmilingFace blackS_milingF_ace.glif blackSquare blackS_quare.glif blackVerticalEllipse blackV_erticalE_llipse.glif blackVerticalRect blackV_erticalR_ect.glif blackVerysmallSquare blackV_erysmallS_quare.glif blank blank.glif blank-braille blank-braille.glif blankSymbol blankS_ymbol.glif bottomHalfBlackCircle bottomH_alfB_lackC_ircle.glif bottomHalfBlackDiamond bottomH_alfB_lackD_iamond.glif boxDoubleDownAndHorizontal boxD_oubleD_ownA_ndH_orizontal.glif boxDoubleDownAndHorizontal.stypo boxD_oubleD_ownA_ndH_orizontal.stypo.glif boxDoubleDownAndLeft boxD_oubleD_ownA_ndL_eft.glif boxDoubleDownAndLeft.stypo boxD_oubleD_ownA_ndL_eft.stypo.glif boxDoubleDownAndRight boxD_oubleD_ownA_ndR_ight.glif boxDoubleDownAndRight.stypo boxD_oubleD_ownA_ndR_ight.stypo.glif boxDoubleHorizontal boxD_oubleH_orizontal.glif boxDoubleHorizontal.stypo boxD_oubleH_orizontal.stypo.glif boxDoubleUpAndHorizontal boxD_oubleU_pA_ndH_orizontal.glif boxDoubleUpAndHorizontal.stypo boxD_oubleU_pA_ndH_orizontal.stypo.glif boxDoubleUpAndLeft boxD_oubleU_pA_ndL_eft.glif boxDoubleUpAndLeft.stypo boxD_oubleU_pA_ndL_eft.stypo.glif boxDoubleUpAndRight boxD_oubleU_pA_ndR_ight.glif boxDoubleUpAndRight.stypo boxD_oubleU_pA_ndR_ight.stypo.glif boxDoubleVertical boxD_oubleV_ertical.glif boxDoubleVertical.stypo boxD_oubleV_ertical.stypo.glif boxDoubleVerticalAndHorizontal boxD_oubleV_erticalA_ndH_orizontal.glif boxDoubleVerticalAndHorizontal.stypo boxD_oubleV_erticalA_ndH_orizontal.stypo.glif boxDoubleVerticalAndLeft boxD_oubleV_erticalA_ndL_eft.glif boxDoubleVerticalAndLeft.stypo boxD_oubleV_erticalA_ndL_eft.stypo.glif boxDoubleVerticalAndRight boxD_oubleV_erticalA_ndR_ight.glif boxDoubleVerticalAndRight.stypo boxD_oubleV_erticalA_ndR_ight.stypo.glif boxDownDoubleAndHorizontalSingle boxD_ownD_oubleA_ndH_orizontalS_ingle.glif boxDownDoubleAndHorizontalSingle.stypo boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif boxDownDoubleAndLeftSingle boxD_ownD_oubleA_ndL_eftS_ingle.glif boxDownDoubleAndLeftSingle.stypo boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif boxDownDoubleAndRightSingle boxD_ownD_oubleA_ndR_ightS_ingle.glif boxDownDoubleAndRightSingle.stypo boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif boxDownHeavyAndHorizontalLight boxD_ownH_eavyA_ndH_orizontalL_ight.glif boxDownHeavyAndHorizontalLight.stypo boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif boxDownHeavyAndLeftLight boxD_ownH_eavyA_ndL_eftL_ight.glif boxDownHeavyAndLeftLight.stypo boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif boxDownHeavyAndLeftUpLight boxD_ownH_eavyA_ndL_eftU_pL_ight.glif boxDownHeavyAndLeftUpLight.stypo boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxDownHeavyAndRightLight boxD_ownH_eavyA_ndR_ightL_ight.glif boxDownHeavyAndRightLight.stypo boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif boxDownHeavyAndRightUpLight boxD_ownH_eavyA_ndR_ightU_pL_ight.glif boxDownHeavyAndRightUpLight.stypo boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxDownHeavyAndUpHorizontalLight boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif boxDownHeavyAndUpHorizontalLight.stypo boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif boxDownLightAndHorizontalHeavy boxD_ownL_ightA_ndH_orizontalH_eavy.glif boxDownLightAndHorizontalHeavy.stypo boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif boxDownLightAndLeftHeavy boxD_ownL_ightA_ndL_eftH_eavy.glif boxDownLightAndLeftHeavy.stypo boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif boxDownLightAndLeftUpHeavy boxD_ownL_ightA_ndL_eftU_pH_eavy.glif boxDownLightAndLeftUpHeavy.stypo boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif boxDownLightAndRightHeavy boxD_ownL_ightA_ndR_ightH_eavy.glif boxDownLightAndRightHeavy.stypo boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif boxDownLightAndRightUpHeavy boxD_ownL_ightA_ndR_ightU_pH_eavy.glif boxDownLightAndRightUpHeavy.stypo boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif boxDownLightAndUpHorizontalHeavy boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif boxDownLightAndUpHorizontalHeavy.stypo boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif boxDownSingleAndHorizontalDouble boxD_ownS_ingleA_ndH_orizontalD_ouble.glif boxDownSingleAndHorizontalDouble.stypo boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif boxDownSingleAndLeftDouble boxD_ownS_ingleA_ndL_eftD_ouble.glif boxDownSingleAndLeftDouble.stypo boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif boxDownSingleAndRightDouble boxD_ownS_ingleA_ndR_ightD_ouble.glif boxDownSingleAndRightDouble.stypo boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif boxHeavyDoubleDashHorizontal boxH_eavyD_oubleD_ashH_orizontal.glif boxHeavyDoubleDashHorizontal.stypo boxH_eavyD_oubleD_ashH_orizontal.stypo.glif boxHeavyDoubleDashVertical boxH_eavyD_oubleD_ashV_ertical.glif boxHeavyDoubleDashVertical.stypo boxH_eavyD_oubleD_ashV_ertical.stypo.glif boxHeavyDown boxH_eavyD_own.glif boxHeavyDown.stypo boxH_eavyD_own.stypo.glif boxHeavyDownAndHorizontal boxH_eavyD_ownA_ndH_orizontal.glif boxHeavyDownAndHorizontal.stypo boxH_eavyD_ownA_ndH_orizontal.stypo.glif boxHeavyDownAndLeft boxH_eavyD_ownA_ndL_eft.glif boxHeavyDownAndLeft.stypo boxH_eavyD_ownA_ndL_eft.stypo.glif boxHeavyDownAndRight boxH_eavyD_ownA_ndR_ight.glif boxHeavyDownAndRight.stypo boxH_eavyD_ownA_ndR_ight.stypo.glif boxHeavyHorizontal boxH_eavyH_orizontal.glif boxHeavyHorizontal.stypo boxH_eavyH_orizontal.stypo.glif boxHeavyLeft boxH_eavyL_eft.glif boxHeavyLeft.stypo boxH_eavyL_eft.stypo.glif boxHeavyLeftAndLightRight boxH_eavyL_eftA_ndL_ightR_ight.glif boxHeavyLeftAndLightRight.stypo boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif boxHeavyQuadrupleDashHorizontal boxH_eavyQ_uadrupleD_ashH_orizontal.glif boxHeavyQuadrupleDashHorizontal.stypo boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif boxHeavyQuadrupleDashVertical boxH_eavyQ_uadrupleD_ashV_ertical.glif boxHeavyQuadrupleDashVertical.stypo boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif boxHeavyRight boxH_eavyR_ight.glif boxHeavyRight.stypo boxH_eavyR_ight.stypo.glif boxHeavyTripleDashHorizontal boxH_eavyT_ripleD_ashH_orizontal.glif boxHeavyTripleDashHorizontal.stypo boxH_eavyT_ripleD_ashH_orizontal.stypo.glif boxHeavyTripleDashVertical boxH_eavyT_ripleD_ashV_ertical.glif boxHeavyTripleDashVertical.stypo boxH_eavyT_ripleD_ashV_ertical.stypo.glif boxHeavyUp boxH_eavyU_p.glif boxHeavyUp.stypo boxH_eavyU_p.stypo.glif boxHeavyUpAndHorizontal boxH_eavyU_pA_ndH_orizontal.glif boxHeavyUpAndHorizontal.stypo boxH_eavyU_pA_ndH_orizontal.stypo.glif boxHeavyUpAndLeft boxH_eavyU_pA_ndL_eft.glif boxHeavyUpAndLeft.stypo boxH_eavyU_pA_ndL_eft.stypo.glif boxHeavyUpAndLightDown boxH_eavyU_pA_ndL_ightD_own.glif boxHeavyUpAndLightDown.stypo boxH_eavyU_pA_ndL_ightD_own.stypo.glif boxHeavyUpAndRight boxH_eavyU_pA_ndR_ight.glif boxHeavyUpAndRight.stypo boxH_eavyU_pA_ndR_ight.stypo.glif boxHeavyVertical boxH_eavyV_ertical.glif boxHeavyVertical.stypo boxH_eavyV_ertical.stypo.glif boxHeavyVerticalAndHorizontal boxH_eavyV_erticalA_ndH_orizontal.glif boxHeavyVerticalAndHorizontal.stypo boxH_eavyV_erticalA_ndH_orizontal.stypo.glif boxHeavyVerticalAndLeft boxH_eavyV_erticalA_ndL_eft.glif boxHeavyVerticalAndLeft.stypo boxH_eavyV_erticalA_ndL_eft.stypo.glif boxHeavyVerticalAndRight boxH_eavyV_erticalA_ndR_ight.glif boxHeavyVerticalAndRight.stypo boxH_eavyV_erticalA_ndR_ight.stypo.glif boxLeftDownHeavyAndRightUpLight boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif boxLeftDownHeavyAndRightUpLight.stypo boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightDownLight boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif boxLeftHeavyAndRightDownLight.stypo boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLeftHeavyAndRightUpLight boxL_eftH_eavyA_ndR_ightU_pL_ight.glif boxLeftHeavyAndRightUpLight.stypo boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightVerticalLight boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif boxLeftHeavyAndRightVerticalLight.stypo boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif boxLeftLightAndRightDownHeavy boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif boxLeftLightAndRightDownHeavy.stypo boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxLeftLightAndRightUpHeavy boxL_eftL_ightA_ndR_ightU_pH_eavy.glif boxLeftLightAndRightUpHeavy.stypo boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif boxLeftLightAndRightVerticalHeavy boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif boxLeftLightAndRightVerticalHeavy.stypo boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif boxLeftUpHeavyAndRightDownLight boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif boxLeftUpHeavyAndRightDownLight.stypo boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLightArcDownAndLeft boxL_ightA_rcD_ownA_ndL_eft.glif boxLightArcDownAndLeft.stypo boxL_ightA_rcD_ownA_ndL_eft.stypo.glif boxLightArcDownAndRight boxL_ightA_rcD_ownA_ndR_ight.glif boxLightArcDownAndRight.stypo boxL_ightA_rcD_ownA_ndR_ight.stypo.glif boxLightArcUpAndLeft boxL_ightA_rcU_pA_ndL_eft.glif boxLightArcUpAndLeft.stypo boxL_ightA_rcU_pA_ndL_eft.stypo.glif boxLightArcUpAndRight boxL_ightA_rcU_pA_ndR_ight.glif boxLightArcUpAndRight.stypo boxL_ightA_rcU_pA_ndR_ight.stypo.glif boxLightDiagonalCross boxL_ightD_iagonalC_ross.glif boxLightDiagonalCross.stypo boxL_ightD_iagonalC_ross.stypo.glif boxLightDiagonalUpperLeftToLowerRight boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif boxLightDiagonalUpperLeftToLowerRight.stypo boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif boxLightDiagonalUpperRightToLowerLeft boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif boxLightDiagonalUpperRightToLowerLeft.stypo boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif boxLightDoubleDashHorizontal boxL_ightD_oubleD_ashH_orizontal.glif boxLightDoubleDashHorizontal.stypo boxL_ightD_oubleD_ashH_orizontal.stypo.glif boxLightDoubleDashVertical boxL_ightD_oubleD_ashV_ertical.glif boxLightDoubleDashVertical.stypo boxL_ightD_oubleD_ashV_ertical.stypo.glif boxLightDown boxL_ightD_own.glif boxLightDown.stypo boxL_ightD_own.stypo.glif boxLightDownAndHorizontal boxL_ightD_ownA_ndH_orizontal.glif boxLightDownAndHorizontal.stypo boxL_ightD_ownA_ndH_orizontal.stypo.glif boxLightDownAndLeft boxL_ightD_ownA_ndL_eft.glif boxLightDownAndLeft.stypo boxL_ightD_ownA_ndL_eft.stypo.glif boxLightDownAndRight boxL_ightD_ownA_ndR_ight.glif boxLightDownAndRight.stypo boxL_ightD_ownA_ndR_ight.stypo.glif boxLightHorizontal boxL_ightH_orizontal.glif boxLightHorizontal.stypo boxL_ightH_orizontal.stypo.glif boxLightLeft boxL_ightL_eft.glif boxLightLeft.stypo boxL_ightL_eft.stypo.glif boxLightLeftAndHeavyRight boxL_ightL_eftA_ndH_eavyR_ight.glif boxLightLeftAndHeavyRight.stypo boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif boxLightQuadrupleDashHorizontal boxL_ightQ_uadrupleD_ashH_orizontal.glif boxLightQuadrupleDashHorizontal.stypo boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif boxLightQuadrupleDashVertical boxL_ightQ_uadrupleD_ashV_ertical.glif boxLightQuadrupleDashVertical.stypo boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif boxLightRight boxL_ightR_ight.glif boxLightRight.stypo boxL_ightR_ight.stypo.glif boxLightTripleDashHorizontal boxL_ightT_ripleD_ashH_orizontal.glif boxLightTripleDashHorizontal.stypo boxL_ightT_ripleD_ashH_orizontal.stypo.glif boxLightTripleDashVertical boxL_ightT_ripleD_ashV_ertical.glif boxLightTripleDashVertical.stypo boxL_ightT_ripleD_ashV_ertical.stypo.glif boxLightUp boxL_ightU_p.glif boxLightUp.stypo boxL_ightU_p.stypo.glif boxLightUpAndHeavyDown boxL_ightU_pA_ndH_eavyD_own.glif boxLightUpAndHeavyDown.stypo boxL_ightU_pA_ndH_eavyD_own.stypo.glif boxLightUpAndHorizontal boxL_ightU_pA_ndH_orizontal.glif boxLightUpAndHorizontal.stypo boxL_ightU_pA_ndH_orizontal.stypo.glif boxLightUpAndLeft boxL_ightU_pA_ndL_eft.glif boxLightUpAndLeft.stypo boxL_ightU_pA_ndL_eft.stypo.glif boxLightUpAndRight boxL_ightU_pA_ndR_ight.glif boxLightUpAndRight.stypo boxL_ightU_pA_ndR_ight.stypo.glif boxLightVertical boxL_ightV_ertical.glif boxLightVertical.stypo boxL_ightV_ertical.stypo.glif boxLightVerticalAndHorizontal boxL_ightV_erticalA_ndH_orizontal.glif boxLightVerticalAndHorizontal.stypo boxL_ightV_erticalA_ndH_orizontal.stypo.glif boxLightVerticalAndLeft boxL_ightV_erticalA_ndL_eft.glif boxLightVerticalAndLeft.stypo boxL_ightV_erticalA_ndL_eft.stypo.glif boxLightVerticalAndRight boxL_ightV_erticalA_ndR_ight.glif boxLightVerticalAndRight.stypo boxL_ightV_erticalA_ndR_ight.stypo.glif boxRightDownHeavyAndLeftUpLight boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif boxRightDownHeavyAndLeftUpLight.stypo boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftDownLight boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif boxRightHeavyAndLeftDownLight.stypo boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxRightHeavyAndLeftUpLight boxR_ightH_eavyA_ndL_eftU_pL_ight.glif boxRightHeavyAndLeftUpLight.stypo boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftVerticalLight boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif boxRightHeavyAndLeftVerticalLight.stypo boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif boxRightLightAndLeftDownHeavy boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif boxRightLightAndLeftDownHeavy.stypo boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxRightLightAndLeftUpHeavy boxR_ightL_ightA_ndL_eftU_pH_eavy.glif boxRightLightAndLeftUpHeavy.stypo boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif boxRightLightAndLeftVerticalHeavy boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif boxRightLightAndLeftVerticalHeavy.stypo boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif boxRightUpHeavyAndLeftDownLight boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif boxRightUpHeavyAndLeftDownLight.stypo boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpDoubleAndHorizontalSingle boxU_pD_oubleA_ndH_orizontalS_ingle.glif boxUpDoubleAndHorizontalSingle.stypo boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif boxUpDoubleAndLeftSingle boxU_pD_oubleA_ndL_eftS_ingle.glif boxUpDoubleAndLeftSingle.stypo boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif boxUpDoubleAndRightSingle boxU_pD_oubleA_ndR_ightS_ingle.glif boxUpDoubleAndRightSingle.stypo boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif boxUpHeavyAndDownHorizontalLight boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif boxUpHeavyAndDownHorizontalLight.stypo boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif boxUpHeavyAndHorizontalLight boxU_pH_eavyA_ndH_orizontalL_ight.glif boxUpHeavyAndHorizontalLight.stypo boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif boxUpHeavyAndLeftDownLight boxU_pH_eavyA_ndL_eftD_ownL_ight.glif boxUpHeavyAndLeftDownLight.stypo boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpHeavyAndLeftLight boxU_pH_eavyA_ndL_eftL_ight.glif boxUpHeavyAndLeftLight.stypo boxU_pH_eavyA_ndL_eftL_ight.stypo.glif boxUpHeavyAndRightDownLight boxU_pH_eavyA_ndR_ightD_ownL_ight.glif boxUpHeavyAndRightDownLight.stypo boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxUpHeavyAndRightLight boxU_pH_eavyA_ndR_ightL_ight.glif boxUpHeavyAndRightLight.stypo boxU_pH_eavyA_ndR_ightL_ight.stypo.glif boxUpLightAndDownHorizontalHeavy boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif boxUpLightAndDownHorizontalHeavy.stypo boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif boxUpLightAndHorizontalHeavy boxU_pL_ightA_ndH_orizontalH_eavy.glif boxUpLightAndHorizontalHeavy.stypo boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif boxUpLightAndLeftDownHeavy boxU_pL_ightA_ndL_eftD_ownH_eavy.glif boxUpLightAndLeftDownHeavy.stypo boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxUpLightAndLeftHeavy boxU_pL_ightA_ndL_eftH_eavy.glif boxUpLightAndLeftHeavy.stypo boxU_pL_ightA_ndL_eftH_eavy.stypo.glif boxUpLightAndRightDownHeavy boxU_pL_ightA_ndR_ightD_ownH_eavy.glif boxUpLightAndRightDownHeavy.stypo boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxUpLightAndRightHeavy boxU_pL_ightA_ndR_ightH_eavy.glif boxUpLightAndRightHeavy.stypo boxU_pL_ightA_ndR_ightH_eavy.stypo.glif boxUpSingleAndHorizontalDouble boxU_pS_ingleA_ndH_orizontalD_ouble.glif boxUpSingleAndHorizontalDouble.stypo boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif boxUpSingleAndLeftDouble boxU_pS_ingleA_ndL_eftD_ouble.glif boxUpSingleAndLeftDouble.stypo boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif boxUpSingleAndRightDouble boxU_pS_ingleA_ndR_ightD_ouble.glif boxUpSingleAndRightDouble.stypo boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif boxVerticalDoubleAndHorizontalSingle boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif boxVerticalDoubleAndHorizontalSingle.stypo boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif boxVerticalDoubleAndLeftSingle boxV_erticalD_oubleA_ndL_eftS_ingle.glif boxVerticalDoubleAndLeftSingle.stypo boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif boxVerticalDoubleAndRightSingle boxV_erticalD_oubleA_ndR_ightS_ingle.glif boxVerticalDoubleAndRightSingle.stypo boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif boxVerticalHeavyAndHorizontalLight boxV_erticalH_eavyA_ndH_orizontalL_ight.glif boxVerticalHeavyAndHorizontalLight.stypo boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif boxVerticalHeavyAndLeftLight boxV_erticalH_eavyA_ndL_eftL_ight.glif boxVerticalHeavyAndLeftLight.stypo boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif boxVerticalHeavyAndRightLight boxV_erticalH_eavyA_ndR_ightL_ight.glif boxVerticalHeavyAndRightLight.stypo boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif boxVerticalLightAndHorizontalHeavy boxV_erticalL_ightA_ndH_orizontalH_eavy.glif boxVerticalLightAndHorizontalHeavy.stypo boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif boxVerticalLightAndLeftHeavy boxV_erticalL_ightA_ndL_eftH_eavy.glif boxVerticalLightAndLeftHeavy.stypo boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif boxVerticalLightAndRightHeavy boxV_erticalL_ightA_ndR_ightH_eavy.glif boxVerticalLightAndRightHeavy.stypo boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif boxVerticalSingleAndHorizontalDouble boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif boxVerticalSingleAndHorizontalDouble.stypo boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif boxVerticalSingleAndLeftDouble boxV_erticalS_ingleA_ndL_eftD_ouble.glif boxVerticalSingleAndLeftDouble.stypo boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif boxVerticalSingleAndRightDouble boxV_erticalS_ingleA_ndR_ightD_ouble.glif boxVerticalSingleAndRightDouble.stypo boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif braceleft braceleft.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif bracketleft bracketleft.glif bracketleft_bar.liga bracketleft_bar.liga.glif bracketright bracketright.glif bracketright_numbersign.liga bracketright_numbersign.liga.glif breve breve.glif brevecomb brevecomb.glif brevecomb-cy brevecomb-cy.glif brevecomb-cy.case brevecomb-cy.case.glif brevecomb.case brevecomb.case.glif brokenbar brokenbar.glif bullet bullet.glif bulletoperator bulletoperator.glif bullseye bullseye.glif c c.glif cacute cacute.glif cacute.loclPLK cacute.loclP_L_K_.glif cancelControl cancelC_ontrol.glif cancelControl.ss20 cancelC_ontrol.ss20.glif careof careof.glif caron caron.glif caroncomb caroncomb.glif caroncomb.case caroncomb.case.glif carriageReturnControl carriageR_eturnC_ontrol.glif carriageReturnControl.ss20 carriageR_eturnC_ontrol.ss20.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif cent cent.glif che-cy che-cy.glif checkmark checkmark.glif chedescender-cy chedescender-cy.glif chi chi.glif circumflex circumflex.glif circumflexcomb circumflexcomb.glif circumflexcomb.case circumflexcomb.case.glif clubBlackSuit clubB_lackS_uit.glif colon colon.glif colon.center colon.center.glif colon_colon.liga colon_colon.liga.glif colon_colon_colon.liga colon_colon_colon.liga.glif colon_colon_equal.liga colon_colon_equal.liga.glif colon_equal.liga colon_equal.liga.glif colon_equal_middle.seq colon_equal_middle.seq.glif colon_slash_slash.liga colon_slash_slash.liga.glif colonsign colonsign.glif colontriangularmod colontriangularmod.glif comma comma.glif comma-ar comma-ar.glif commaabovecomb commaabovecomb.glif commaaboverightcomb commaaboverightcomb.glif commaaccentcomb commaaccentcomb.glif commaturnedabovecomb commaturnedabovecomb.glif commaturnedmod commaturnedmod.glif copyright copyright.glif crosshatchFillSquare crosshatchF_illS_quare.glif cuberoot-ar cuberoot-ar.glif currency currency.glif d d.glif dad-ar dad-ar.glif dad-ar.alt dad-ar.alt.glif dad-ar.fina dad-ar.fina.glif dad-ar.fina.alt dad-ar.fina.alt.glif dad-ar.init dad-ar.init.glif dad-ar.medi dad-ar.medi.glif dadDotbelow-ar dadD_otbelow-ar.glif dadDotbelow-ar.alt dadD_otbelow-ar.alt.glif dadDotbelow-ar.fina dadD_otbelow-ar.fina.glif dadDotbelow-ar.fina.alt dadD_otbelow-ar.fina.alt.glif dadDotbelow-ar.init dadD_otbelow-ar.init.glif dadDotbelow-ar.medi dadD_otbelow-ar.medi.glif dagesh-hb dagesh-hb.glif dagger dagger.glif daggerdbl daggerdbl.glif dahal-ar dahal-ar.glif dahal-ar.fina dahal-ar.fina.glif dal-ar dal-ar.glif dal-ar.fina dal-ar.fina.glif dalDotbelow-ar dalD_otbelow-ar.glif dalDotbelow-ar.fina dalD_otbelow-ar.fina.glif dalDotbelowTah-ar dalD_otbelowT_ah-ar.glif dalDotbelowTah-ar.fina dalD_otbelowT_ah-ar.fina.glif dalFourdots-ar dalF_ourdots-ar.glif dalFourdots-ar.fina dalF_ourdots-ar.fina.glif dalRing-ar dalR_ing-ar.glif dalRing-ar.fina dalR_ing-ar.fina.glif dalThreedotsbelow-ar dalT_hreedotsbelow-ar.glif dalThreedotsbelow-ar.fina dalT_hreedotsbelow-ar.fina.glif dalThreedotsdown-ar dalT_hreedotsdown-ar.glif dalThreedotsdown-ar.fina dalT_hreedotsdown-ar.fina.glif dalTwodotsverticalbelowTahabove-ar dalT_wodotsverticalbelowT_ahabove-ar.glif dalTwodotsverticalbelowTahabove-ar.fina dalT_wodotsverticalbelowT_ahabove-ar.fina.glif dalVinvertedabove-ar dalV_invertedabove-ar.glif dalVinvertedabove-ar.fina dalV_invertedabove-ar.fina.glif dalVinvertedbelow-ar dalV_invertedbelow-ar.glif dalVinvertedbelow-ar.fina dalV_invertedbelow-ar.fina.glif dalet-hb dalet-hb.glif daletdagesh-hb daletdagesh-hb.glif damma-ar damma-ar.glif dammatan-ar dammatan-ar.glif dashdownArrow dashdownA_rrow.glif dataLinkEscapeControl dataL_inkE_scapeC_ontrol.glif dataLinkEscapeControl.ss20 dataL_inkE_scapeC_ontrol.ss20.glif dateseparator-ar dateseparator-ar.glif dcaron dcaron.glif dcaron.alt dcaron.alt.glif dcroat dcroat.glif ddahal-ar ddahal-ar.glif ddahal-ar.fina ddahal-ar.fina.glif ddal-ar ddal-ar.glif ddal-ar.fina ddal-ar.fina.glif de-cy de-cy.glif de-cy.loclBGR de-cy.loclB_G_R_.glif decimalseparator-ar decimalseparator-ar.glif degree degree.glif deleteControl deleteC_ontrol.glif deleteFormTwoControl deleteF_ormT_woC_ontrol.glif delta delta.glif deviceControlFourControl deviceC_ontrolF_ourC_ontrol.glif deviceControlOneControl deviceC_ontrolO_neC_ontrol.glif deviceControlThreeControl deviceC_ontrolT_hreeC_ontrol.glif deviceControlTwoControl deviceC_ontrolT_woC_ontrol.glif diagonalcrosshatchFillSquare diagonalcrosshatchF_illS_quare.glif diamondBlackSuit diamondB_lackS_uit.glif dieresis dieresis.glif dieresiscomb dieresiscomb.glif dieresiscomb.case dieresiscomb.case.glif dieresistonos dieresistonos.glif divide divide.glif divisionslash divisionslash.glif dje-cy dje-cy.glif dollar dollar.glif dollar.BRACKET.600 dollar.B_R_A_C_K_E_T_.600.glif dollar_greater.liga dollar_greater.liga.glif dollar_greater.liga.BRACKET.600 dollar_greater.liga.B_R_A_C_K_E_T_.600.glif dong dong.glif dotabove-ar dotabove-ar.glif dotaccent dotaccent.glif dotaccentcomb dotaccentcomb.glif dotaccentcomb.case dotaccentcomb.case.glif dotbelow-ar dotbelow-ar.glif dotbelowcomb dotbelowcomb.glif dotcenter-ar dotcenter-ar.glif dots1-braille dots1-braille.glif dots12-braille dots12-braille.glif dots123-braille dots123-braille.glif dots1234-braille dots1234-braille.glif dots12345-braille dots12345-braille.glif dots123456-braille dots123456-braille.glif dots1234567-braille dots1234567-braille.glif dots12345678-braille dots12345678-braille.glif dots1234568-braille dots1234568-braille.glif dots123457-braille dots123457-braille.glif dots1234578-braille dots1234578-braille.glif dots123458-braille dots123458-braille.glif dots12346-braille dots12346-braille.glif dots123467-braille dots123467-braille.glif dots1234678-braille dots1234678-braille.glif dots123468-braille dots123468-braille.glif dots12347-braille dots12347-braille.glif dots123478-braille dots123478-braille.glif dots12348-braille dots12348-braille.glif dots1235-braille dots1235-braille.glif dots12356-braille dots12356-braille.glif dots123567-braille dots123567-braille.glif dots1235678-braille dots1235678-braille.glif dots123568-braille dots123568-braille.glif dots12357-braille dots12357-braille.glif dots123578-braille dots123578-braille.glif dots12358-braille dots12358-braille.glif dots1236-braille dots1236-braille.glif dots12367-braille dots12367-braille.glif dots123678-braille dots123678-braille.glif dots12368-braille dots12368-braille.glif dots1237-braille dots1237-braille.glif dots12378-braille dots12378-braille.glif dots1238-braille dots1238-braille.glif dots124-braille dots124-braille.glif dots1245-braille dots1245-braille.glif dots12456-braille dots12456-braille.glif dots124567-braille dots124567-braille.glif dots1245678-braille dots1245678-braille.glif dots124568-braille dots124568-braille.glif dots12457-braille dots12457-braille.glif dots124578-braille dots124578-braille.glif dots12458-braille dots12458-braille.glif dots1246-braille dots1246-braille.glif dots12467-braille dots12467-braille.glif dots124678-braille dots124678-braille.glif dots12468-braille dots12468-braille.glif dots1247-braille dots1247-braille.glif dots12478-braille dots12478-braille.glif dots1248-braille dots1248-braille.glif dots125-braille dots125-braille.glif dots1256-braille dots1256-braille.glif dots12567-braille dots12567-braille.glif dots125678-braille dots125678-braille.glif dots12568-braille dots12568-braille.glif dots1257-braille dots1257-braille.glif dots12578-braille dots12578-braille.glif dots1258-braille dots1258-braille.glif dots126-braille dots126-braille.glif dots1267-braille dots1267-braille.glif dots12678-braille dots12678-braille.glif dots1268-braille dots1268-braille.glif dots127-braille dots127-braille.glif dots1278-braille dots1278-braille.glif dots128-braille dots128-braille.glif dots13-braille dots13-braille.glif dots134-braille dots134-braille.glif dots1345-braille dots1345-braille.glif dots13456-braille dots13456-braille.glif dots134567-braille dots134567-braille.glif dots1345678-braille dots1345678-braille.glif dots134568-braille dots134568-braille.glif dots13457-braille dots13457-braille.glif dots134578-braille dots134578-braille.glif dots13458-braille dots13458-braille.glif dots1346-braille dots1346-braille.glif dots13467-braille dots13467-braille.glif dots134678-braille dots134678-braille.glif dots13468-braille dots13468-braille.glif dots1347-braille dots1347-braille.glif dots13478-braille dots13478-braille.glif dots1348-braille dots1348-braille.glif dots135-braille dots135-braille.glif dots1356-braille dots1356-braille.glif dots13567-braille dots13567-braille.glif dots135678-braille dots135678-braille.glif dots13568-braille dots13568-braille.glif dots1357-braille dots1357-braille.glif dots13578-braille dots13578-braille.glif dots1358-braille dots1358-braille.glif dots136-braille dots136-braille.glif dots1367-braille dots1367-braille.glif dots13678-braille dots13678-braille.glif dots1368-braille dots1368-braille.glif dots137-braille dots137-braille.glif dots1378-braille dots1378-braille.glif dots138-braille dots138-braille.glif dots14-braille dots14-braille.glif dots145-braille dots145-braille.glif dots1456-braille dots1456-braille.glif dots14567-braille dots14567-braille.glif dots145678-braille dots145678-braille.glif dots14568-braille dots14568-braille.glif dots1457-braille dots1457-braille.glif dots14578-braille dots14578-braille.glif dots1458-braille dots1458-braille.glif dots146-braille dots146-braille.glif dots1467-braille dots1467-braille.glif dots14678-braille dots14678-braille.glif dots1468-braille dots1468-braille.glif dots147-braille dots147-braille.glif dots1478-braille dots1478-braille.glif dots148-braille dots148-braille.glif dots15-braille dots15-braille.glif dots156-braille dots156-braille.glif dots1567-braille dots1567-braille.glif dots15678-braille dots15678-braille.glif dots1568-braille dots1568-braille.glif dots157-braille dots157-braille.glif dots1578-braille dots1578-braille.glif dots158-braille dots158-braille.glif dots16-braille dots16-braille.glif dots167-braille dots167-braille.glif dots1678-braille dots1678-braille.glif dots168-braille dots168-braille.glif dots17-braille dots17-braille.glif dots178-braille dots178-braille.glif dots18-braille dots18-braille.glif dots2-braille dots2-braille.glif dots23-braille dots23-braille.glif dots234-braille dots234-braille.glif dots2345-braille dots2345-braille.glif dots23456-braille dots23456-braille.glif dots234567-braille dots234567-braille.glif dots2345678-braille dots2345678-braille.glif dots234568-braille dots234568-braille.glif dots23457-braille dots23457-braille.glif dots234578-braille dots234578-braille.glif dots23458-braille dots23458-braille.glif dots2346-braille dots2346-braille.glif dots23467-braille dots23467-braille.glif dots234678-braille dots234678-braille.glif dots23468-braille dots23468-braille.glif dots2347-braille dots2347-braille.glif dots23478-braille dots23478-braille.glif dots2348-braille dots2348-braille.glif dots235-braille dots235-braille.glif dots2356-braille dots2356-braille.glif dots23567-braille dots23567-braille.glif dots235678-braille dots235678-braille.glif dots23568-braille dots23568-braille.glif dots2357-braille dots2357-braille.glif dots23578-braille dots23578-braille.glif dots2358-braille dots2358-braille.glif dots236-braille dots236-braille.glif dots2367-braille dots2367-braille.glif dots23678-braille dots23678-braille.glif dots2368-braille dots2368-braille.glif dots237-braille dots237-braille.glif dots2378-braille dots2378-braille.glif dots238-braille dots238-braille.glif dots24-braille dots24-braille.glif dots245-braille dots245-braille.glif dots2456-braille dots2456-braille.glif dots24567-braille dots24567-braille.glif dots245678-braille dots245678-braille.glif dots24568-braille dots24568-braille.glif dots2457-braille dots2457-braille.glif dots24578-braille dots24578-braille.glif dots2458-braille dots2458-braille.glif dots246-braille dots246-braille.glif dots2467-braille dots2467-braille.glif dots24678-braille dots24678-braille.glif dots2468-braille dots2468-braille.glif dots247-braille dots247-braille.glif dots2478-braille dots2478-braille.glif dots248-braille dots248-braille.glif dots25-braille dots25-braille.glif dots256-braille dots256-braille.glif dots2567-braille dots2567-braille.glif dots25678-braille dots25678-braille.glif dots2568-braille dots2568-braille.glif dots257-braille dots257-braille.glif dots2578-braille dots2578-braille.glif dots258-braille dots258-braille.glif dots26-braille dots26-braille.glif dots267-braille dots267-braille.glif dots2678-braille dots2678-braille.glif dots268-braille dots268-braille.glif dots27-braille dots27-braille.glif dots278-braille dots278-braille.glif dots28-braille dots28-braille.glif dots3-braille dots3-braille.glif dots34-braille dots34-braille.glif dots345-braille dots345-braille.glif dots3456-braille dots3456-braille.glif dots34567-braille dots34567-braille.glif dots345678-braille dots345678-braille.glif dots34568-braille dots34568-braille.glif dots3457-braille dots3457-braille.glif dots34578-braille dots34578-braille.glif dots3458-braille dots3458-braille.glif dots346-braille dots346-braille.glif dots3467-braille dots3467-braille.glif dots34678-braille dots34678-braille.glif dots3468-braille dots3468-braille.glif dots347-braille dots347-braille.glif dots3478-braille dots3478-braille.glif dots348-braille dots348-braille.glif dots35-braille dots35-braille.glif dots356-braille dots356-braille.glif dots3567-braille dots3567-braille.glif dots35678-braille dots35678-braille.glif dots3568-braille dots3568-braille.glif dots357-braille dots357-braille.glif dots3578-braille dots3578-braille.glif dots358-braille dots358-braille.glif dots36-braille dots36-braille.glif dots367-braille dots367-braille.glif dots3678-braille dots3678-braille.glif dots368-braille dots368-braille.glif dots37-braille dots37-braille.glif dots378-braille dots378-braille.glif dots38-braille dots38-braille.glif dots4-braille dots4-braille.glif dots45-braille dots45-braille.glif dots456-braille dots456-braille.glif dots4567-braille dots4567-braille.glif dots45678-braille dots45678-braille.glif dots4568-braille dots4568-braille.glif dots457-braille dots457-braille.glif dots4578-braille dots4578-braille.glif dots458-braille dots458-braille.glif dots46-braille dots46-braille.glif dots467-braille dots467-braille.glif dots4678-braille dots4678-braille.glif dots468-braille dots468-braille.glif dots47-braille dots47-braille.glif dots478-braille dots478-braille.glif dots48-braille dots48-braille.glif dots5-braille dots5-braille.glif dots56-braille dots56-braille.glif dots567-braille dots567-braille.glif dots5678-braille dots5678-braille.glif dots568-braille dots568-braille.glif dots57-braille dots57-braille.glif dots578-braille dots578-braille.glif dots58-braille dots58-braille.glif dots6-braille dots6-braille.glif dots67-braille dots67-braille.glif dots678-braille dots678-braille.glif dots68-braille dots68-braille.glif dots7-braille dots7-braille.glif dots78-braille dots78-braille.glif dots8-braille dots8-braille.glif dottedCircle dottedC_ircle.glif dottedSquare dottedS_quare.glif doubleverticalbarbelowSymbol-ar doubleverticalbarbelowS_ymbol-ar.glif doubleverticalbarbelowSymbol-ar.comb doubleverticalbarbelowS_ymbol-ar.comb.glif downArrow downA_rrow.glif downBlackSmallTriangle downB_lackS_mallT_riangle.glif downBlackTriangle downB_lackT_riangle.glif downTipLeftArrow downT_ipL_eftA_rrow.glif downWhiteSmallTriangle downW_hiteS_mallT_riangle.glif downWhiteTriangle downW_hiteT_riangle.glif dtail dtail.glif dul-ar dul-ar.glif dul-ar.fina dul-ar.fina.glif dyeh-ar dyeh-ar.glif dyeh-ar.fina dyeh-ar.fina.glif dyeh-ar.init dyeh-ar.init.glif dyeh-ar.medi dyeh-ar.medi.glif dze-cy dze-cy.glif dzhe-cy dzhe-cy.glif e e.glif e-ar e-ar.glif e-ar.fina e-ar.fina.glif e-ar.fina.alt e-ar.fina.alt.glif e-ar.init e-ar.init.glif e-ar.init.alt e-ar.init.alt.glif e-ar.medi e-ar.medi.glif e-cy e-cy.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhookabove ecircumflexhookabove.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif ef-cy ef-cy.glif ef-cy.loclBGR ef-cy.loclB_G_R_.glif egrave egrave.glif ehookabove ehookabove.glif eight eight.glif eight-ar eight-ar.glif eight-arinferior eight-arinferior.glif eight-arsuperior eight-arsuperior.glif eight-persian eight-persian.glif eight-persianinferior eight-persianinferior.glif eight-persiansuperior eight-persiansuperior.glif eight.dnom eight.dnom.glif eight.numr eight.numr.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif el-cy el-cy.glif el-cy.loclBGR el-cy.loclB_G_R_.glif ellipsis ellipsis.glif em-cy em-cy.glif emacron emacron.glif emdash emdash.glif en-cy en-cy.glif endOfMediumControl endO_fM_ediumC_ontrol.glif endOfMediumControl.ss20 endO_fM_ediumC_ontrol.ss20.glif endOfTextControl endO_fT_extC_ontrol.glif endOfTextControl.ss20 endO_fT_extC_ontrol.ss20.glif endOfTransmissionBlockControl endO_fT_ransmissionB_lockC_ontrol.glif endOfTransmissionBlockControl.ss20 endO_fT_ransmissionB_lockC_ontrol.ss20.glif endOfTransmissionControl endO_fT_ransmissionC_ontrol.glif endOfTransmissionControl.ss20 endO_fT_ransmissionC_ontrol.ss20.glif endash endash.glif endescender-cy endescender-cy.glif endofayah-ar endofayah-ar.glif eng eng.glif enquiryControl enquiryC_ontrol.glif enquiryControl.ss20 enquiryC_ontrol.ss20.glif eogonek eogonek.glif eopen eopen.glif epsilon epsilon.glif epsilontonos epsilontonos.glif equal equal.glif equal_end.seq equal_end.seq.glif equal_equal.liga equal_equal.liga.glif equal_equal_equal.liga equal_equal_equal.liga.glif equal_greater_greater.liga equal_greater_greater.liga.glif equal_less_less.liga equal_less_less.liga.glif equal_middle.seq equal_middle.seq.glif equal_start.seq equal_start.seq.glif equivalence equivalence.glif er-cy er-cy.glif ereversed-cy ereversed-cy.glif es-cy es-cy.glif escapeControl escapeC_ontrol.glif escapeControl.ss20 escapeC_ontrol.ss20.glif esh esh.glif estimated estimated.glif eta eta.glif etatonos etatonos.glif eth eth.glif etilde etilde.glif eturned eturned.glif euro euro.glif eurocurrency eurocurrency.glif exclam exclam.glif exclam_colon.liga exclam_colon.liga.glif exclam_equal.liga exclam_equal.liga.glif exclam_equal_equal.liga exclam_equal_equal.liga.glif exclam_equal_middle.seq exclam_equal_middle.seq.glif exclam_exclam.liga exclam_exclam.liga.glif exclam_exclam_period.liga exclam_exclam_period.liga.glif exclam_period.liga exclam_period.liga.glif exclamdouble exclamdouble.glif exclamdown exclamdown.glif ezh ezh.glif f f.glif fatha-ar fatha-ar.glif fathatan-ar fathatan-ar.glif feh-ar feh-ar.glif feh-ar.alt feh-ar.alt.glif feh-ar.fina feh-ar.fina.glif feh-ar.fina.alt feh-ar.fina.alt.glif feh-ar.init feh-ar.init.glif feh-ar.init.alt feh-ar.init.alt.glif feh-ar.medi feh-ar.medi.glif fehDotMovedbelow-ar fehD_otM_ovedbelow-ar.glif fehDotMovedbelow-ar.alt fehD_otM_ovedbelow-ar.alt.glif fehDotMovedbelow-ar.fina fehD_otM_ovedbelow-ar.fina.glif fehDotMovedbelow-ar.fina.alt fehD_otM_ovedbelow-ar.fina.alt.glif fehDotMovedbelow-ar.init fehD_otM_ovedbelow-ar.init.glif fehDotMovedbelow-ar.medi fehD_otM_ovedbelow-ar.medi.glif fehDotbelow-ar fehD_otbelow-ar.glif fehDotbelow-ar.alt fehD_otbelow-ar.alt.glif fehDotbelow-ar.fina fehD_otbelow-ar.fina.glif fehDotbelow-ar.fina.alt fehD_otbelow-ar.fina.alt.glif fehDotbelow-ar.init fehD_otbelow-ar.init.glif fehDotbelow-ar.medi fehD_otbelow-ar.medi.glif fehDotbelowThreedotsabove-ar fehD_otbelowT_hreedotsabove-ar.glif fehDotbelowThreedotsabove-ar.alt fehD_otbelowT_hreedotsabove-ar.alt.glif fehDotbelowThreedotsabove-ar.fina fehD_otbelowT_hreedotsabove-ar.fina.glif fehDotbelowThreedotsabove-ar.fina.alt fehD_otbelowT_hreedotsabove-ar.fina.alt.glif fehDotbelowThreedotsabove-ar.init fehD_otbelowT_hreedotsabove-ar.init.glif fehDotbelowThreedotsabove-ar.medi fehD_otbelowT_hreedotsabove-ar.medi.glif fehDotless-ar fehD_otless-ar.glif fehDotless-ar.alt fehD_otless-ar.alt.glif fehDotless-ar.fina fehD_otless-ar.fina.glif fehDotless-ar.fina.alt fehD_otless-ar.fina.alt.glif fehDotless-ar.init fehD_otless-ar.init.glif fehDotless-ar.init.alt fehD_otless-ar.init.alt.glif fehDotless-ar.medi fehD_otless-ar.medi.glif fehThreedotsbelow-ar fehT_hreedotsbelow-ar.glif fehThreedotsbelow-ar.alt fehT_hreedotsbelow-ar.alt.glif fehThreedotsbelow-ar.fina fehT_hreedotsbelow-ar.fina.glif fehThreedotsbelow-ar.fina.alt fehT_hreedotsbelow-ar.fina.alt.glif fehThreedotsbelow-ar.init fehT_hreedotsbelow-ar.init.glif fehThreedotsbelow-ar.medi fehT_hreedotsbelow-ar.medi.glif fehThreedotsupbelow-ar fehT_hreedotsupbelow-ar.glif fehThreedotsupbelow-ar.alt fehT_hreedotsupbelow-ar.alt.glif fehThreedotsupbelow-ar.fina fehT_hreedotsupbelow-ar.fina.glif fehThreedotsupbelow-ar.fina.alt fehT_hreedotsupbelow-ar.fina.alt.glif fehThreedotsupbelow-ar.init fehT_hreedotsupbelow-ar.init.glif fehThreedotsupbelow-ar.medi fehT_hreedotsupbelow-ar.medi.glif fehTwodotsbelow-ar fehT_wodotsbelow-ar.glif fehTwodotsbelow-ar.alt fehT_wodotsbelow-ar.alt.glif fehTwodotsbelow-ar.fina fehT_wodotsbelow-ar.fina.glif fehTwodotsbelow-ar.fina.alt fehT_wodotsbelow-ar.fina.alt.glif fehTwodotsbelow-ar.init fehT_wodotsbelow-ar.init.glif fehTwodotsbelow-ar.medi fehT_wodotsbelow-ar.medi.glif fi fi.glif fileSeparatorControl fileS_eparatorC_ontrol.glif filledRect filledR_ect.glif finalkaf-hb finalkaf-hb.glif finalkafdagesh-hb finalkafdagesh-hb.glif finalmem-hb finalmem-hb.glif finalnun-hb finalnun-hb.glif finalpe-hb finalpe-hb.glif finalpedagesh-hb finalpedagesh-hb.glif finaltsadi-hb finaltsadi-hb.glif firsttonechinese firsttonechinese.glif fisheye fisheye.glif five five.glif five-ar five-ar.glif five-arinferior five-arinferior.glif five-arsuperior five-arsuperior.glif five-persian five-persian.glif five-persianinferior five-persianinferior.glif five-persiansuperior five-persiansuperior.glif five.dnom five.dnom.glif five.numr five.numr.glif fiveeighths fiveeighths.glif fiveeighths.BRACKET.500 fiveeighths.B_R_A_C_K_E_T_.500.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif footnotemarker-ar footnotemarker-ar.glif formFeedControl formF_eedC_ontrol.glif formFeedControl.ss20 formF_eedC_ontrol.ss20.glif four four.glif four-ar four-ar.glif four-arinferior four-arinferior.glif four-arsuperior four-arsuperior.glif four-persian four-persian.glif four-persian.small01 four-persian.small01.glif four-persian.urdu four-persian.urdu.glif four-persian.urduinferior four-persian.urduinferior.glif four-persian.urdusuperior four-persian.urdusuperior.glif four-persianbelow-ar four-persianbelow-ar.glif four-persiancenter-ar four-persiancenter-ar.glif four-persianinferior four-persianinferior.glif four-persiansuperior four-persiansuperior.glif four.dnom four.dnom.glif four.half four.half.glif four.numr four.numr.glif fourdotsabove-ar fourdotsabove-ar.glif fourdotsbelow-ar fourdotsbelow-ar.glif fourdotscenter-ar fourdotscenter-ar.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fourthroot-ar fourthroot-ar.glif fraction fraction.glif franc franc.glif fullBlock fullB_lock.glif fullBlock.stypo fullB_lock.stypo.glif fullstop-ar fullstop-ar.glif g g.glif gaf-ar gaf-ar.glif gaf-ar.fina gaf-ar.fina.glif gaf-ar.init gaf-ar.init.glif gaf-ar.medi gaf-ar.medi.glif gafInvertedstroke-ar gafI_nvertedstroke-ar.glif gafInvertedstroke-ar.fina gafI_nvertedstroke-ar.fina.glif gafInvertedstroke-ar.init gafI_nvertedstroke-ar.init.glif gafInvertedstroke-ar.medi gafI_nvertedstroke-ar.medi.glif gafRing-ar gafR_ing-ar.glif gafRing-ar.fina gafR_ing-ar.fina.glif gafRing-ar.init gafR_ing-ar.init.glif gafRing-ar.medi gafR_ing-ar.medi.glif gafThreedots-ar gafT_hreedots-ar.glif gafThreedots-ar.fina gafT_hreedots-ar.fina.glif gafThreedots-ar.init gafT_hreedots-ar.init.glif gafThreedots-ar.medi gafT_hreedots-ar.medi.glif gafTwodotsbelow-ar gafT_wodotsbelow-ar.glif gafTwodotsbelow-ar.fina gafT_wodotsbelow-ar.fina.glif gafTwodotsbelow-ar.init gafT_wodotsbelow-ar.init.glif gafTwodotsbelow-ar.medi gafT_wodotsbelow-ar.medi.glif gafsarkashabove-ar gafsarkashabove-ar.glif gamma gamma.glif gamma-latin gamma-latin.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gcommaaccent gcommaaccent.glif gdotaccent gdotaccent.glif ge-cy ge-cy.glif ge-cy.loclBGR ge-cy.loclB_G_R_.glif geresh-hb geresh-hb.glif germandbls germandbls.glif gershayim-hb gershayim-hb.glif ghain-ar ghain-ar.glif ghain-ar.fina ghain-ar.fina.glif ghain-ar.init ghain-ar.init.glif ghain-ar.medi ghain-ar.medi.glif ghainDotbelow-ar ghainD_otbelow-ar.glif ghainDotbelow-ar.fina ghainD_otbelow-ar.fina.glif ghainDotbelow-ar.init ghainD_otbelow-ar.init.glif ghainDotbelow-ar.medi ghainD_otbelow-ar.medi.glif ghestroke-cy ghestroke-cy.glif gheupturn-cy gheupturn-cy.glif gimel-hb gimel-hb.glif gimeldagesh-hb gimeldagesh-hb.glif gje-cy gje-cy.glif glottalstop glottalstop.glif glottalstopmod glottalstopmod.glif glottalstopreversed glottalstopreversed.glif grave grave.glif gravecomb gravecomb.glif gravecomb.case gravecomb.case.glif gravetonecomb gravetonecomb.glif greater greater.glif greater.alt greater.alt.glif greater.center greater.center.glif greater_equal.liga greater_equal.liga.glif greater_equal_end.seq greater_equal_end.seq.glif greater_equal_middle.seq greater_equal_middle.seq.glif greater_equal_start.seq greater_equal_start.seq.glif greater_greater.liga greater_greater.liga.glif greater_greater_equal.liga greater_greater_equal.liga.glif greater_greater_equal_end.seq greater_greater_equal_end.seq.glif greater_greater_equal_middle.seq greater_greater_equal_middle.seq.glif greater_greater_equal_start.seq greater_greater_equal_start.seq.glif greater_greater_greater.liga greater_greater_greater.liga.glif greater_greater_hyphen_end.seq greater_greater_hyphen_end.seq.glif greater_greater_hyphen_middle.seq greater_greater_hyphen_middle.seq.glif greater_greater_hyphen_start.seq greater_greater_hyphen_start.seq.glif greater_hyphen_end.seq greater_hyphen_end.seq.glif greater_hyphen_middle.seq greater_hyphen_middle.seq.glif greater_hyphen_start.seq greater_hyphen_start.seq.glif greaterequal greaterequal.glif groupSeparatorControl groupS_eparatorC_ontrol.glif gstroke gstroke.glif guarani guarani.glif gueh-ar gueh-ar.glif gueh-ar.fina gueh-ar.fina.glif gueh-ar.init gueh-ar.init.glif gueh-ar.medi gueh-ar.medi.glif guillemetleft guillemetleft.glif guillemetright guillemetright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif ha-cy ha-cy.glif hadescender-cy hadescender-cy.glif hah-ar hah-ar.glif hah-ar.fina hah-ar.fina.glif hah-ar.init hah-ar.init.glif hah-ar.medi hah-ar.medi.glif hahFourbelow-ar hahF_ourbelow-ar.glif hahFourbelow-ar.fina hahF_ourbelow-ar.fina.glif hahFourbelow-ar.init hahF_ourbelow-ar.init.glif hahFourbelow-ar.medi hahF_ourbelow-ar.medi.glif hahHamzaabove-ar hahH_amzaabove-ar.glif hahHamzaabove-ar.fina hahH_amzaabove-ar.fina.glif hahHamzaabove-ar.init hahH_amzaabove-ar.init.glif hahHamzaabove-ar.medi hahH_amzaabove-ar.medi.glif hahTahTwodotshorizontalabove-ar hahT_ahT_wodotshorizontalabove-ar.glif hahTahTwodotshorizontalabove-ar.fina hahT_ahT_wodotshorizontalabove-ar.fina.glif hahTahTwodotshorizontalabove-ar.init hahT_ahT_wodotshorizontalabove-ar.init.glif hahTahTwodotshorizontalabove-ar.medi hahT_ahT_wodotshorizontalabove-ar.medi.glif hahTahabove-ar hahT_ahabove-ar.glif hahTahabove-ar.fina hahT_ahabove-ar.fina.glif hahTahabove-ar.init hahT_ahabove-ar.init.glif hahTahabove-ar.medi hahT_ahabove-ar.medi.glif hahTahbelow-ar hahT_ahbelow-ar.glif hahTahbelow-ar.fina hahT_ahbelow-ar.fina.glif hahTahbelow-ar.init hahT_ahbelow-ar.init.glif hahTahbelow-ar.medi hahT_ahbelow-ar.medi.glif hahThreedotsabove-ar hahT_hreedotsabove-ar.glif hahThreedotsabove-ar.fina hahT_hreedotsabove-ar.fina.glif hahThreedotsabove-ar.init hahT_hreedotsabove-ar.init.glif hahThreedotsabove-ar.medi hahT_hreedotsabove-ar.medi.glif hahThreedotsupbelow-ar hahT_hreedotsupbelow-ar.glif hahThreedotsupbelow-ar.fina hahT_hreedotsupbelow-ar.fina.glif hahThreedotsupbelow-ar.init hahT_hreedotsupbelow-ar.init.glif hahThreedotsupbelow-ar.medi hahT_hreedotsupbelow-ar.medi.glif hahTwodotshorizontalabove-ar hahT_wodotshorizontalabove-ar.glif hahTwodotshorizontalabove-ar.fina hahT_wodotshorizontalabove-ar.fina.glif hahTwodotshorizontalabove-ar.init hahT_wodotshorizontalabove-ar.init.glif hahTwodotshorizontalabove-ar.medi hahT_wodotshorizontalabove-ar.medi.glif hahTwodotsverticalabove-ar hahT_wodotsverticalabove-ar.glif hahTwodotsverticalabove-ar.fina hahT_wodotsverticalabove-ar.fina.glif hahTwodotsverticalabove-ar.init hahT_wodotsverticalabove-ar.init.glif hahTwodotsverticalabove-ar.medi hahT_wodotsverticalabove-ar.medi.glif hamza-ar hamza-ar.glif hamzaabove-ar hamzaabove-ar.glif hamzabelow-ar hamzabelow-ar.glif hardsign-cy hardsign-cy.glif hardsign-cy.loclBGR hardsign-cy.loclB_G_R_.glif hbar hbar.glif hcaron hcaron.glif hcircumflex hcircumflex.glif hdotbelow hdotbelow.glif he-hb he-hb.glif heartBlackSuit heartB_lackS_uit.glif heavyleftpointinganglebracketornament heavyleftpointinganglebracketornament.glif heavyleftpointinganglequotationmarkornament heavyleftpointinganglequotationmarkornament.glif heavyrightpointinganglebracketornament heavyrightpointinganglebracketornament.glif heavyrightpointinganglequotationmarkornament heavyrightpointinganglequotationmarkornament.glif hedagesh-hb hedagesh-hb.glif heh-ar heh-ar.glif heh-ar.fina heh-ar.fina.glif heh-ar.init heh-ar.init.glif heh-ar.medi heh-ar.medi.glif hehAlefabove-ar.init hehA_lefabove-ar.init.glif hehAlefabove-ar.init.fina hehA_lefabove-ar.init.fina.glif hehDoachashmee-ar hehD_oachashmee-ar.glif hehDoachashmee-ar.fina hehD_oachashmee-ar.fina.glif hehDoachashmee-ar.init hehD_oachashmee-ar.init.glif hehDoachashmee-ar.medi hehD_oachashmee-ar.medi.glif hehHamzaabove-ar hehH_amzaabove-ar.glif hehHamzaabove-ar.fina hehH_amzaabove-ar.fina.glif hehVinvertedabove-ar hehV_invertedabove-ar.glif hehVinvertedabove-ar.fina hehV_invertedabove-ar.fina.glif hehVinvertedabove-ar.init hehV_invertedabove-ar.init.glif hehVinvertedabove-ar.medi hehV_invertedabove-ar.medi.glif hehgoal-ar hehgoal-ar.glif hehgoal-ar.fina hehgoal-ar.fina.glif hehgoal-ar.init hehgoal-ar.init.glif hehgoal-ar.init.alt hehgoal-ar.init.alt.glif hehgoal-ar.medi hehgoal-ar.medi.glif hehgoalHamzaabove-ar hehgoalH_amzaabove-ar.glif hehgoalHamzaabove-ar.fina hehgoalH_amzaabove-ar.fina.glif hehgoalHamzaabove-ar.init hehgoalH_amzaabove-ar.init.glif hehgoalHamzaabove-ar.init.alt hehgoalH_amzaabove-ar.init.alt.glif hehgoalHamzaabove-ar.medi hehgoalH_amzaabove-ar.medi.glif het-hb het-hb.glif highhamza-ar highhamza-ar.glif highhamzaAlef-ar highhamzaA_lef-ar.glif highhamzaAlef-ar.fina highhamzaA_lef-ar.fina.glif highhamzaAlef-ar.fina.rlig highhamzaA_lef-ar.fina.rlig.glif highhamzaWaw-ar highhamzaW_aw-ar.glif highhamzaWaw-ar.fina highhamzaW_aw-ar.fina.glif highhamzaYeh-ar highhamzaY_eh-ar.glif highhamzaYeh-ar.fina highhamzaY_eh-ar.fina.glif highhamzaYeh-ar.fina.alt highhamzaY_eh-ar.fina.alt.glif highhamzaYeh-ar.init highhamzaY_eh-ar.init.glif highhamzaYeh-ar.init.alt highhamzaY_eh-ar.init.alt.glif highhamzaYeh-ar.medi highhamzaY_eh-ar.medi.glif holam-hb holam-hb.glif holamhaser-hb holamhaser-hb.glif hookabovecomb hookabovecomb.glif hookabovecomb.case hookabovecomb.case.glif horizontalBlackHexagon horizontalB_lackH_exagon.glif horizontalFillSquare horizontalF_illS_quare.glif horizontalTabulationControl horizontalT_abulationC_ontrol.glif horizontalTabulationControl.ss20 horizontalT_abulationC_ontrol.ss20.glif horizontalbar horizontalbar.glif horizontallineextension horizontallineextension.glif horncomb horncomb.glif horncomb.case horncomb.case.glif house house.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlautcomb hungarumlautcomb.glif hungarumlautcomb.case hungarumlautcomb.case.glif hyphen hyphen.glif hyphen_asciitilde.liga hyphen_asciitilde.liga.glif hyphen_end.seq hyphen_end.seq.glif hyphen_hyphen.liga hyphen_hyphen.liga.glif hyphen_hyphen_hyphen.liga hyphen_hyphen_hyphen.liga.glif hyphen_middle.seq hyphen_middle.seq.glif hyphen_start.seq hyphen_start.seq.glif hyphentwo hyphentwo.glif i i.glif i-cy i-cy.glif ia-cy ia-cy.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif idotless idotless.glif ie-cy ie-cy.glif iegrave-cy iegrave-cy.glif igrave igrave.glif ihookabove ihookabove.glif ii-cy ii-cy.glif ii-cy.loclBGR ii-cy.loclB_G_R_.glif iigrave-cy iigrave-cy.glif iigrave-cy.loclBGR iigrave-cy.loclB_G_R_.glif iishort-cy iishort-cy.glif iishort-cy.loclBGR iishort-cy.loclB_G_R_.glif ij ij.glif ij_acute ij_acute.glif imacron imacron.glif imacron-cy imacron-cy.glif increment increment.glif infinity infinity.glif integral integral.glif integralbt integralbt.glif integraltp integraltp.glif intersection intersection.glif inverseBullet inverseB_ullet.glif inverseWhiteCircle inverseW_hiteC_ircle.glif io-cy io-cy.glif iogonek iogonek.glif iota iota.glif iota-latin iota-latin.glif iotadieresis iotadieresis.glif iotadieresistonos iotadieresistonos.glif iotatonos iotatonos.glif itilde itilde.glif iu-cy iu-cy.glif iu-cy.loclBGR iu-cy.loclB_G_R_.glif j j.glif jacute jacute.glif jcaron jcaron.glif jcircumflex jcircumflex.glif jdotless jdotless.glif je-cy je-cy.glif jeem-ar jeem-ar.glif jeem-ar.fina jeem-ar.fina.glif jeem-ar.init jeem-ar.init.glif jeem-ar.medi jeem-ar.medi.glif jeemTwodotsabove-ar jeemT_wodotsabove-ar.glif jeemTwodotsabove-ar.fina jeemT_wodotsabove-ar.fina.glif jeemTwodotsabove-ar.init jeemT_wodotsabove-ar.init.glif jeemTwodotsabove-ar.medi jeemT_wodotsabove-ar.medi.glif jeh-ar jeh-ar.glif jeh-ar.fina jeh-ar.fina.glif k k.glif ka-cy ka-cy.glif ka-cy.loclBGR ka-cy.loclB_G_R_.glif kadescender-cy kadescender-cy.glif kaf-ar kaf-ar.glif kaf-ar.fina kaf-ar.fina.glif kaf-ar.init kaf-ar.init.glif kaf-ar.medi kaf-ar.medi.glif kaf-hb kaf-hb.glif kafDotabove-ar kafD_otabove-ar.glif kafDotabove-ar.fina kafD_otabove-ar.fina.glif kafDotabove-ar.init kafD_otabove-ar.init.glif kafDotabove-ar.medi kafD_otabove-ar.medi.glif kafRing-ar kafR_ing-ar.glif kafRing-ar.fina kafR_ing-ar.fina.glif kafRing-ar.init kafR_ing-ar.init.glif kafRing-ar.medi kafR_ing-ar.medi.glif kafThreedotsbelow-ar kafT_hreedotsbelow-ar.glif kafThreedotsbelow-ar.fina kafT_hreedotsbelow-ar.fina.glif kafThreedotsbelow-ar.init kafT_hreedotsbelow-ar.init.glif kafThreedotsbelow-ar.medi kafT_hreedotsbelow-ar.medi.glif kafTwodotshorizontalabove-ar kafT_wodotshorizontalabove-ar.glif kafTwodotshorizontalabove-ar.fina kafT_wodotshorizontalabove-ar.fina.glif kafTwodotshorizontalabove-ar.init kafT_wodotshorizontalabove-ar.init.glif kafTwodotshorizontalabove-ar.medi kafT_wodotshorizontalabove-ar.medi.glif kafdagesh-hb kafdagesh-hb.glif kafswash-ar kafswash-ar.glif kafswash-ar.alt kafswash-ar.alt.glif kafswash-ar.fina kafswash-ar.fina.glif kafswash-ar.fina.alt kafswash-ar.fina.alt.glif kafswash-ar.init kafswash-ar.init.glif kafswash-ar.init.alt kafswash-ar.init.alt.glif kafswash-ar.medi kafswash-ar.medi.glif kafswash-ar.medi.alt kafswash-ar.medi.alt.glif kaiSymbol kaiS_ymbol.glif kappa kappa.glif kashida-ar kashida-ar.glif kasra-ar kasra-ar.glif kasratan-ar kasratan-ar.glif kcommaaccent kcommaaccent.glif kdotbelow kdotbelow.glif keheh-ar keheh-ar.glif keheh-ar.fina keheh-ar.fina.glif keheh-ar.init keheh-ar.init.glif keheh-ar.medi keheh-ar.medi.glif kehehDotabove-ar kehehD_otabove-ar.glif kehehDotabove-ar.fina kehehD_otabove-ar.fina.glif kehehDotabove-ar.init kehehD_otabove-ar.init.glif kehehDotabove-ar.medi kehehD_otabove-ar.medi.glif kehehThreedotsabove-ar kehehT_hreedotsabove-ar.glif kehehThreedotsabove-ar.fina kehehT_hreedotsabove-ar.fina.glif kehehThreedotsabove-ar.init kehehT_hreedotsabove-ar.init.glif kehehThreedotsabove-ar.medi kehehT_hreedotsabove-ar.medi.glif kehehThreedotsbelow-ar kehehT_hreedotsbelow-ar.glif kehehThreedotsbelow-ar.fina kehehT_hreedotsbelow-ar.fina.glif kehehThreedotsbelow-ar.init kehehT_hreedotsbelow-ar.init.glif kehehThreedotsbelow-ar.medi kehehT_hreedotsbelow-ar.medi.glif kehehThreedotsupbelow-ar kehehT_hreedotsupbelow-ar.glif kehehThreedotsupbelow-ar.fina kehehT_hreedotsupbelow-ar.fina.glif kehehThreedotsupbelow-ar.init kehehT_hreedotsupbelow-ar.init.glif kehehThreedotsupbelow-ar.medi kehehT_hreedotsupbelow-ar.medi.glif kehehTwodotshorizontalabove-ar kehehT_wodotshorizontalabove-ar.glif kehehTwodotshorizontalabove-ar.fina kehehT_wodotshorizontalabove-ar.fina.glif kehehTwodotshorizontalabove-ar.init kehehT_wodotshorizontalabove-ar.init.glif kehehTwodotshorizontalabove-ar.medi kehehT_wodotshorizontalabove-ar.medi.glif kgreenlandic kgreenlandic.glif khah-ar khah-ar.glif khah-ar.fina khah-ar.fina.glif khah-ar.init khah-ar.init.glif khah-ar.medi khah-ar.medi.glif kip kip.glif kirghizoe-ar kirghizoe-ar.glif kirghizoe-ar.fina kirghizoe-ar.fina.glif kirghizyu-ar kirghizyu-ar.glif kirghizyu-ar.fina kirghizyu-ar.fina.glif kje-cy kje-cy.glif klinebelow klinebelow.glif l l.glif lacute lacute.glif lam-ar lam-ar.glif lam-ar.fina lam-ar.fina.glif lam-ar.init lam-ar.init.glif lam-ar.init.rlig lam-ar.init.rlig.glif lam-ar.medi lam-ar.medi.glif lam-ar.medi.rlig lam-ar.medi.rlig.glif lamBar-ar lamB_ar-ar.glif lamBar-ar.fina lamB_ar-ar.fina.glif lamBar-ar.init lamB_ar-ar.init.glif lamBar-ar.init.rlig lamB_ar-ar.init.rlig.glif lamBar-ar.medi lamB_ar-ar.medi.glif lamBar-ar.medi.rlig lamB_ar-ar.medi.rlig.glif lamDotabove-ar lamD_otabove-ar.glif lamDotabove-ar.fina lamD_otabove-ar.fina.glif lamDotabove-ar.init lamD_otabove-ar.init.glif lamDotabove-ar.init.rlig lamD_otabove-ar.init.rlig.glif lamDotabove-ar.medi lamD_otabove-ar.medi.glif lamDotabove-ar.medi.rlig lamD_otabove-ar.medi.rlig.glif lamDoublebar-ar lamD_oublebar-ar.glif lamDoublebar-ar.fina lamD_oublebar-ar.fina.glif lamDoublebar-ar.init lamD_oublebar-ar.init.glif lamDoublebar-ar.init.rlig lamD_oublebar-ar.init.rlig.glif lamDoublebar-ar.medi lamD_oublebar-ar.medi.glif lamDoublebar-ar.medi.rlig lamD_oublebar-ar.medi.rlig.glif lamThreedotsabove-ar lamT_hreedotsabove-ar.glif lamThreedotsabove-ar.fina lamT_hreedotsabove-ar.fina.glif lamThreedotsabove-ar.init lamT_hreedotsabove-ar.init.glif lamThreedotsabove-ar.init.rlig lamT_hreedotsabove-ar.init.rlig.glif lamThreedotsabove-ar.medi lamT_hreedotsabove-ar.medi.glif lamThreedotsabove-ar.medi.rlig lamT_hreedotsabove-ar.medi.rlig.glif lamThreedotsbelow-ar lamT_hreedotsbelow-ar.glif lamThreedotsbelow-ar.fina lamT_hreedotsbelow-ar.fina.glif lamThreedotsbelow-ar.init lamT_hreedotsbelow-ar.init.glif lamThreedotsbelow-ar.init.rlig lamT_hreedotsbelow-ar.init.rlig.glif lamThreedotsbelow-ar.medi lamT_hreedotsbelow-ar.medi.glif lamThreedotsbelow-ar.medi.rlig lamT_hreedotsbelow-ar.medi.rlig.glif lamVabove-ar lamV_above-ar.glif lamVabove-ar.fina lamV_above-ar.fina.glif lamVabove-ar.init lamV_above-ar.init.glif lamVabove-ar.init.rlig lamV_above-ar.init.rlig.glif lamVabove-ar.medi lamV_above-ar.medi.glif lamVabove-ar.medi.rlig lamV_above-ar.medi.rlig.glif lam_alef-ar lam_alef-ar.glif lam_alef-ar.fina lam_alef-ar.fina.glif lam_alef-ar.fina.short lam_alef-ar.fina.short.glif lam_alef-ar.short lam_alef-ar.short.glif lam_alefHamzaabove-ar lam_alefH_amzaabove-ar.glif lam_alefHamzaabove-ar.fina lam_alefH_amzaabove-ar.fina.glif lam_alefHamzabelow-ar lam_alefH_amzabelow-ar.glif lam_alefHamzabelow-ar.fina lam_alefH_amzabelow-ar.fina.glif lam_alefMadda-ar lam_alefM_adda-ar.glif lam_alefMadda-ar.fina lam_alefM_adda-ar.fina.glif lam_alefWasla-ar lam_alefW_asla-ar.glif lam_alefWasla-ar.fina lam_alefW_asla-ar.fina.glif lam_lam_heh-ar lam_lam_heh-ar.glif lambda lambda.glif lambdastroke lambdastroke.glif lamed-hb lamed-hb.glif lameddagesh-hb lameddagesh-hb.glif largeCircle largeC_ircle.glif lari lari.glif lbar lbar.glif lbelt lbelt.glif lcaron lcaron.glif lcommaaccent lcommaaccent.glif ldot ldot.glif ldotbelow ldotbelow.glif leftArrow leftA_rrow.glif leftBlackPointer leftB_lackP_ointer.glif leftBlackSmallTriangle leftB_lackS_mallT_riangle.glif leftBlackTriangle leftB_lackT_riangle.glif leftBlock leftB_lock.glif leftBlock.stypo leftB_lock.stypo.glif leftFiveEighthsBlock leftF_iveE_ighthsB_lock.glif leftFiveEighthsBlock.stypo leftF_iveE_ighthsB_lock.stypo.glif leftHalfBlackCircle leftH_alfB_lackC_ircle.glif leftHalfBlackDiamond leftH_alfB_lackD_iamond.glif leftHalfBlackSquare leftH_alfB_lackS_quare.glif leftHalfBlackWhiteCircle leftH_alfB_lackW_hiteC_ircle.glif leftOneEighthBlock leftO_neE_ighthB_lock.glif leftOneEighthBlock.stypo leftO_neE_ighthB_lock.stypo.glif leftOneQuarterBlock leftO_neQ_uarterB_lock.glif leftOneQuarterBlock.stypo leftO_neQ_uarterB_lock.stypo.glif leftRightArrow leftR_ightA_rrow.glif leftSevenEighthsBlock leftS_evenE_ighthsB_lock.glif leftSevenEighthsBlock.stypo leftS_evenE_ighthsB_lock.stypo.glif leftThreeEighthsBlock leftT_hreeE_ighthsB_lock.glif leftThreeEighthsBlock.stypo leftT_hreeE_ighthsB_lock.stypo.glif leftThreeQuartersBlock leftT_hreeQ_uartersB_lock.glif leftThreeQuartersBlock.stypo leftT_hreeQ_uartersB_lock.stypo.glif leftWhitePointer leftW_hiteP_ointer.glif leftWhiteSmallTriangle leftW_hiteS_mallT_riangle.glif leftWhiteTriangle leftW_hiteT_riangle.glif less less.glif less.alt less.alt.glif less.center less.center.glif less_asciitilde.liga less_asciitilde.liga.glif less_asciitilde_asciitilde.liga less_asciitilde_asciitilde.liga.glif less_asciitilde_greater.liga less_asciitilde_greater.liga.glif less_asterisk.liga less_asterisk.liga.glif less_asterisk_greater.liga less_asterisk_greater.liga.glif less_bar.liga less_bar.liga.glif less_bar_bar.liga less_bar_bar.liga.glif less_bar_bar_bar.liga less_bar_bar_bar.liga.glif less_bar_greater.liga less_bar_greater.liga.glif less_dollar.liga less_dollar.liga.glif less_dollar.liga.BRACKET.600 less_dollar.liga.B_R_A_C_K_E_T_.600.glif less_dollar_greater.liga less_dollar_greater.liga.glif less_dollar_greater.liga.BRACKET.600 less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif less_equal.liga less_equal.liga.glif less_equal_end.seq less_equal_end.seq.glif less_equal_middle.seq less_equal_middle.seq.glif less_equal_start.seq less_equal_start.seq.glif less_exclam_hyphen_hyphen.liga less_exclam_hyphen_hyphen.liga.glif less_greater.liga less_greater.liga.glif less_hyphen_end.seq less_hyphen_end.seq.glif less_hyphen_middle.seq less_hyphen_middle.seq.glif less_hyphen_start.seq less_hyphen_start.seq.glif less_less.liga less_less.liga.glif less_less_equal.liga less_less_equal.liga.glif less_less_equal_end.seq less_less_equal_end.seq.glif less_less_equal_middle.seq less_less_equal_middle.seq.glif less_less_equal_start.seq less_less_equal_start.seq.glif less_less_hyphen_end.seq less_less_hyphen_end.seq.glif less_less_hyphen_middle.seq less_less_hyphen_middle.seq.glif less_less_hyphen_start.seq less_less_hyphen_start.seq.glif less_less_less.liga less_less_less.liga.glif less_plus.liga less_plus.liga.glif less_plus_greater.liga less_plus_greater.liga.glif less_slash.liga less_slash.liga.glif less_slash_greater.liga less_slash_greater.liga.glif lessequal lessequal.glif lineFeedControl lineF_eedC_ontrol.glif lineFeedControl.ss20 lineF_eedC_ontrol.ss20.glif lineseparator lineseparator.glif lira lira.glif liraTurkish liraT_urkish.glif literSign literS_ign.glif lje-cy lje-cy.glif llinebelow llinebelow.glif lmiddletilde lmiddletilde.glif logicalnot logicalnot.glif logicalnotReversed logicalnotR_eversed.glif longs longs.glif lowerFiveEighthsBlock lowerF_iveE_ighthsB_lock.glif lowerFiveEighthsBlock.stypo lowerF_iveE_ighthsB_lock.stypo.glif lowerHalfArc lowerH_alfA_rc.glif lowerHalfBlackWhiteCircle lowerH_alfB_lackW_hiteC_ircle.glif lowerHalfBlock lowerH_alfB_lock.glif lowerHalfBlock.stypo lowerH_alfB_lock.stypo.glif lowerHalfInverseWhiteCircle lowerH_alfI_nverseW_hiteC_ircle.glif lowerHalfWhiteSquare lowerH_alfW_hiteS_quare.glif lowerLeftArc lowerL_eftA_rc.glif lowerLeftBlackTriangle lowerL_eftB_lackT_riangle.glif lowerLeftBlock lowerL_eftB_lock.glif lowerLeftBlock.stypo lowerL_eftB_lock.stypo.glif lowerLeftHalfWhiteSquare lowerL_eftH_alfW_hiteS_quare.glif lowerLeftQuadrantWhiteCircle lowerL_eftQ_uadrantW_hiteC_ircle.glif lowerLeftTriangle lowerL_eftT_riangle.glif lowerOneEighthBlock lowerO_neE_ighthB_lock.glif lowerOneEighthBlock.stypo lowerO_neE_ighthB_lock.stypo.glif lowerOneQuarterBlock lowerO_neQ_uarterB_lock.glif lowerOneQuarterBlock.stypo lowerO_neQ_uarterB_lock.stypo.glif lowerRightArc lowerR_ightA_rc.glif lowerRightBlackTriangle lowerR_ightB_lackT_riangle.glif lowerRightBlock lowerR_ightB_lock.glif lowerRightBlock.stypo lowerR_ightB_lock.stypo.glif lowerRightDiagonalHalfBlackSquare lowerR_ightD_iagonalH_alfB_lackS_quare.glif lowerRightQuadrantWhiteCircle lowerR_ightQ_uadrantW_hiteC_ircle.glif lowerRightTriangle lowerR_ightT_riangle.glif lowerSevenEighthsBlock lowerS_evenE_ighthsB_lock.glif lowerSevenEighthsBlock.stypo lowerS_evenE_ighthsB_lock.stypo.glif lowerThreeEighthsBlock lowerT_hreeE_ighthsB_lock.glif lowerThreeEighthsBlock.stypo lowerT_hreeE_ighthsB_lock.stypo.glif lowerThreeQuartersBlock lowerT_hreeQ_uartersB_lock.glif lowerThreeQuartersBlock.stypo lowerT_hreeQ_uartersB_lock.stypo.glif lowernumeral-greek lowernumeral-greek.glif lowlinecomb lowlinecomb.glif lozenge lozenge.glif lslash lslash.glif m m.glif macron macron.glif macronbelowcomb macronbelowcomb.glif macroncomb macroncomb.glif macroncomb.case macroncomb.case.glif madda-ar madda-ar.glif manat manat.glif maqaf-hb maqaf-hb.glif mars mars.glif mediumBlackSmallSquare mediumB_lackS_mallS_quare.glif mediumBlackSquare mediumB_lackS_quare.glif mediumWhiteSmallSquare mediumW_hiteS_mallS_quare.glif mediumWhiteSquare mediumW_hiteS_quare.glif mediumleftpointinganglebracketornament mediumleftpointinganglebracketornament.glif mediumrightpointinganglebracketornament mediumrightpointinganglebracketornament.glif meem-ar meem-ar.glif meem-ar.fina meem-ar.fina.glif meem-ar.init meem-ar.init.glif meem-ar.medi meem-ar.medi.glif meemDotabove-ar meemD_otabove-ar.glif meemDotabove-ar.fina meemD_otabove-ar.fina.glif meemDotabove-ar.init meemD_otabove-ar.init.glif meemDotabove-ar.medi meemD_otabove-ar.medi.glif meemDotbelow-ar meemD_otbelow-ar.glif meemDotbelow-ar.fina meemD_otbelow-ar.fina.glif meemDotbelow-ar.init meemD_otbelow-ar.init.glif meemDotbelow-ar.medi meemD_otbelow-ar.medi.glif meemStopabove-ar meemS_topabove-ar.glif meemThreedotsabove-ar meemT_hreedotsabove-ar.glif meemThreedotsabove-ar.fina meemT_hreedotsabove-ar.fina.glif meemThreedotsabove-ar.init meemT_hreedotsabove-ar.init.glif meemThreedotsabove-ar.medi meemT_hreedotsabove-ar.medi.glif mem-hb mem-hb.glif memdagesh-hb memdagesh-hb.glif micro micro.glif minus minus.glif minute minute.glif misraComma-ar misraC_omma-ar.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif nacute.loclPLK nacute.loclP_L_K_.glif naira naira.glif napostrophe napostrophe.glif nbspace nbspace.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif negativeAcknowledgeControl negativeA_cknowledgeC_ontrol.glif negativeAcknowledgeControl.ss20 negativeA_cknowledgeC_ontrol.ss20.glif newlineControl newlineC_ontrol.glif ng-ar ng-ar.glif ng-ar.fina ng-ar.fina.glif ng-ar.init ng-ar.init.glif ng-ar.medi ng-ar.medi.glif ngoeh-ar ngoeh-ar.glif ngoeh-ar.fina ngoeh-ar.fina.glif ngoeh-ar.init ngoeh-ar.init.glif ngoeh-ar.medi ngoeh-ar.medi.glif nhookleft nhookleft.glif nine nine.glif nine-ar nine-ar.glif nine-arinferior nine-arinferior.glif nine-arsuperior nine-arsuperior.glif nine-persian nine-persian.glif nine-persianinferior nine-persianinferior.glif nine-persiansuperior nine-persiansuperior.glif nine.dnom nine.dnom.glif nine.numr nine.numr.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif nje-cy nje-cy.glif nlinebelow nlinebelow.glif nmod nmod.glif nonbreakinghyphen nonbreakinghyphen.glif noon-ar noon-ar.glif noon-ar.fina noon-ar.fina.glif noon-ar.init noon-ar.init.glif noon-ar.init.alt noon-ar.init.alt.glif noon-ar.medi noon-ar.medi.glif noonAfrican-ar noonA_frican-ar.glif noonAfrican-ar.fina noonA_frican-ar.fina.glif noonAfrican-ar.init noonA_frican-ar.init.glif noonAfrican-ar.init.alt noonA_frican-ar.init.alt.glif noonAfrican-ar.medi noonA_frican-ar.medi.glif noonDotbelow-ar noonD_otbelow-ar.glif noonDotbelow-ar.fina noonD_otbelow-ar.fina.glif noonDotbelow-ar.init noonD_otbelow-ar.init.glif noonDotbelow-ar.init.alt noonD_otbelow-ar.init.alt.glif noonDotbelow-ar.medi noonD_otbelow-ar.medi.glif noonRing-ar noonR_ing-ar.glif noonRing-ar.fina noonR_ing-ar.fina.glif noonRing-ar.init noonR_ing-ar.init.glif noonRing-ar.init.alt noonR_ing-ar.init.alt.glif noonRing-ar.medi noonR_ing-ar.medi.glif noonTahabove-ar noonT_ahabove-ar.glif noonTahabove-ar.fina noonT_ahabove-ar.fina.glif noonTahabove-ar.init noonT_ahabove-ar.init.glif noonTahabove-ar.init.alt noonT_ahabove-ar.init.alt.glif noonTahabove-ar.medi noonT_ahabove-ar.medi.glif noonThreedotsabove-ar noonT_hreedotsabove-ar.glif noonThreedotsabove-ar.fina noonT_hreedotsabove-ar.fina.glif noonThreedotsabove-ar.init noonT_hreedotsabove-ar.init.glif noonThreedotsabove-ar.init.alt noonT_hreedotsabove-ar.init.alt.glif noonThreedotsabove-ar.medi noonT_hreedotsabove-ar.medi.glif noonTwodotsbelow-ar noonT_wodotsbelow-ar.glif noonTwodotsbelow-ar.fina noonT_wodotsbelow-ar.fina.glif noonTwodotsbelow-ar.init noonT_wodotsbelow-ar.init.glif noonTwodotsbelow-ar.init.alt noonT_wodotsbelow-ar.init.alt.glif noonTwodotsbelow-ar.medi noonT_wodotsbelow-ar.medi.glif noonVabove-ar noonV_above-ar.glif noonVabove-ar.fina noonV_above-ar.fina.glif noonVabove-ar.init noonV_above-ar.init.glif noonVabove-ar.init.alt noonV_above-ar.init.alt.glif noonVabove-ar.medi noonV_above-ar.medi.glif noonabove-ar noonabove-ar.glif noonghunna-ar noonghunna-ar.glif noonghunna-ar.fina noonghunna-ar.fina.glif noonghunna-ar.init noonghunna-ar.init.glif noonghunna-ar.init.alt noonghunna-ar.init.alt.glif noonghunna-ar.medi noonghunna-ar.medi.glif noonghunnaabove-ar noonghunnaabove-ar.glif note-musical note-musical.glif notedbl-musical notedbl-musical.glif notequal notequal.glif notidentical notidentical.glif ntilde ntilde.glif nu nu.glif nullControl nullC_ontrol.glif number-ar number-ar.glif numbermark-ar numbermark-ar.glif numbersign numbersign.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif numbersign_bracketleft.liga numbersign_bracketleft.liga.glif numbersign_colon.liga numbersign_colon.liga.glif numbersign_end.seq numbersign_end.seq.glif numbersign_equal.liga numbersign_equal.liga.glif numbersign_exclam.liga numbersign_exclam.liga.glif numbersign_middle.seq numbersign_middle.seq.glif numbersign_parenleft.liga numbersign_parenleft.liga.glif numbersign_question.liga numbersign_question.liga.glif numbersign_start.seq numbersign_start.seq.glif numbersign_underscore.liga numbersign_underscore.liga.glif numbersign_underscore_parenleft.liga numbersign_underscore_parenleft.liga.glif numeral-greek numeral-greek.glif numero numero.glif nun-hb nun-hb.glif nundagesh-hb nundagesh-hb.glif nyeh-ar nyeh-ar.glif nyeh-ar.fina nyeh-ar.fina.glif nyeh-ar.init nyeh-ar.init.glif nyeh-ar.medi nyeh-ar.medi.glif o o.glif o-cy o-cy.glif oacute oacute.glif oacute.loclPLK oacute.loclP_L_K_.glif obarred-cy obarred-cy.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhookabove ocircumflexhookabove.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif oe-ar oe-ar.glif oe-ar.fina oe-ar.fina.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohookabove ohookabove.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhookabove ohornhookabove.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif omacronacute omacronacute.glif omacrongrave omacrongrave.glif omega omega.glif omegatonos omegatonos.glif omicron omicron.glif omicrontonos omicrontonos.glif one one.glif one-ar one-ar.glif one-arinferior one-arinferior.glif one-arsuperior one-arsuperior.glif one-persian one-persian.glif one-persianinferior one-persianinferior.glif one-persiansuperior one-persiansuperior.glif one.dnom one.dnom.glif one.half one.half.glif one.numr one.numr.glif onedotenleader onedotenleader.glif oneeighth oneeighth.glif oneeighth.BRACKET.500 oneeighth.B_R_A_C_K_E_T_.500.glif onehalf onehalf.glif onehalf.BRACKET.500 onehalf.B_R_A_C_K_E_T_.500.glif oneinferior oneinferior.glif onequarter onequarter.glif onequarter.BRACKET.500 onequarter.B_R_A_C_K_E_T_.500.glif onesuperior onesuperior.glif oogonek oogonek.glif oopen oopen.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif orthogonal orthogonal.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif overline overline.glif p p.glif pagenumber-ar pagenumber-ar.glif palochka-cy palochka-cy.glif paragraph paragraph.glif parenleft parenleft.glif parenleft-ar parenleft-ar.glif parenleft_asterisk.liga parenleft_asterisk.liga.glif parenright parenright.glif parenright-ar parenright-ar.glif partialdiff partialdiff.glif paseq-hb paseq-hb.glif patah-hb patah-hb.glif pe-cy pe-cy.glif pe-cy.loclBGR pe-cy.loclB_G_R_.glif pe-hb pe-hb.glif pedagesh-hb pedagesh-hb.glif pedagesh-hb.BRACKET.600 pedagesh-hb.B_R_A_C_K_E_T_.600.glif peh-ar peh-ar.glif peh-ar.alt peh-ar.alt.glif peh-ar.fina peh-ar.fina.glif peh-ar.fina.alt peh-ar.fina.alt.glif peh-ar.init peh-ar.init.glif peh-ar.init.alt peh-ar.init.alt.glif peh-ar.medi peh-ar.medi.glif pehMeemabove-ar pehM_eemabove-ar.glif pehMeemabove-ar.alt pehM_eemabove-ar.alt.glif pehMeemabove-ar.fina pehM_eemabove-ar.fina.glif pehMeemabove-ar.fina.alt pehM_eemabove-ar.fina.alt.glif pehMeemabove-ar.init pehM_eemabove-ar.init.glif pehMeemabove-ar.init.alt pehM_eemabove-ar.init.alt.glif pehMeemabove-ar.medi pehM_eemabove-ar.medi.glif peheh-ar peheh-ar.glif peheh-ar.alt peheh-ar.alt.glif peheh-ar.fina peheh-ar.fina.glif peheh-ar.fina.alt peheh-ar.fina.alt.glif peheh-ar.init peheh-ar.init.glif peheh-ar.init.alt peheh-ar.init.alt.glif peheh-ar.medi peheh-ar.medi.glif percent percent.glif percent-ar percent-ar.glif percent_percent.liga percent_percent.liga.glif period period.glif period_equal.liga period_equal.liga.glif period_hyphen.liga period_hyphen.liga.glif period_period.liga period_period.liga.glif period_period_equal.liga period_period_equal.liga.glif period_period_less.liga period_period_less.liga.glif period_period_period.liga period_period_period.liga.glif period_question.liga period_question.liga.glif periodcentered periodcentered.glif perispomenicomb perispomenicomb.glif perthousand perthousand.glif perthousand-ar perthousand-ar.glif peseta peseta.glif peso peso.glif phi phi.glif pi pi.glif plus plus.glif plus_greater.liga plus_greater.liga.glif plus_plus.liga plus_plus.liga.glif plus_plus_plus.liga plus_plus_plus.liga.glif plusminus plusminus.glif prescription prescription.glif product product.glif psi psi.glif published published.glif punctuationspace punctuationspace.glif q q.glif qaf-ar qaf-ar.glif qaf-ar.fina qaf-ar.fina.glif qaf-ar.init qaf-ar.init.glif qaf-ar.init.alt qaf-ar.init.alt.glif qaf-ar.medi qaf-ar.medi.glif qafAfrican-ar qafA_frican-ar.glif qafAfrican-ar.fina qafA_frican-ar.fina.glif qafAfrican-ar.init qafA_frican-ar.init.glif qafAfrican-ar.init.alt qafA_frican-ar.init.alt.glif qafAfrican-ar.medi qafA_frican-ar.medi.glif qafDotabove-ar qafD_otabove-ar.glif qafDotabove-ar.fina qafD_otabove-ar.fina.glif qafDotabove-ar.init qafD_otabove-ar.init.glif qafDotabove-ar.init.alt qafD_otabove-ar.init.alt.glif qafDotabove-ar.medi qafD_otabove-ar.medi.glif qafDotbelow-ar qafD_otbelow-ar.glif qafDotbelow-ar.fina qafD_otbelow-ar.fina.glif qafDotbelow-ar.init qafD_otbelow-ar.init.glif qafDotbelow-ar.medi qafD_otbelow-ar.medi.glif qafDotless-ar qafD_otless-ar.glif qafDotless-ar.fina qafD_otless-ar.fina.glif qafDotless-ar.init qafD_otless-ar.init.glif qafDotless-ar.init.alt qafD_otless-ar.init.alt.glif qafDotless-ar.medi qafD_otless-ar.medi.glif qafThreedotsabove-ar qafT_hreedotsabove-ar.glif qafThreedotsabove-ar.fina qafT_hreedotsabove-ar.fina.glif qafThreedotsabove-ar.init qafT_hreedotsabove-ar.init.glif qafThreedotsabove-ar.medi qafT_hreedotsabove-ar.medi.glif qamats-hb qamats-hb.glif qamatsqatan-hb qamatsqatan-hb.glif qof-hb qof-hb.glif qofdagesh-hb qofdagesh-hb.glif question question.glif question-ar question-ar.glif question_colon.liga question_colon.liga.glif question_equal.liga question_equal.liga.glif question_period.liga question_period.liga.glif question_question.liga question_question.liga.glif question_question_equal.liga question_question_equal.liga.glif questiondown questiondown.glif questiongreek questiongreek.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif ratio ratio.glif ray-ar ray-ar.glif rcaron rcaron.glif rcommaaccent rcommaaccent.glif rdotbelow rdotbelow.glif recordSeparatorControl recordS_eparatorC_ontrol.glif registered registered.glif reh-ar reh-ar.glif reh-ar.fina reh-ar.fina.glif rehAlefabove-ar rehA_lefabove-ar.glif rehAlefabove-ar.fina rehA_lefabove-ar.fina.glif rehDotbelow-ar rehD_otbelow-ar.glif rehDotbelow-ar.fina rehD_otbelow-ar.fina.glif rehDotbelowdotabove-ar rehD_otbelowdotabove-ar.glif rehDotbelowdotabove-ar.fina rehD_otbelowdotabove-ar.fina.glif rehFourdots-ar rehF_ourdots-ar.glif rehFourdots-ar.fina rehF_ourdots-ar.fina.glif rehHamzaabove-ar rehH_amzaabove-ar.glif rehHamzaabove-ar.fina rehH_amzaabove-ar.fina.glif rehLoop-ar rehL_oop-ar.glif rehLoop-ar.fina rehL_oop-ar.fina.glif rehRing-ar rehR_ing-ar.glif rehRing-ar.fina rehR_ing-ar.fina.glif rehStroke-ar rehS_troke-ar.glif rehStroke-ar.fina rehS_troke-ar.fina.glif rehTwodots-ar rehT_wodots-ar.glif rehTwodots-ar.fina rehT_wodots-ar.fina.glif rehTwodotshorizontalaboveTahabove-ar rehT_wodotshorizontalaboveT_ahabove-ar.glif rehTwodotshorizontalaboveTahabove-ar.fina rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif rehTwodotsverticalabove-ar rehT_wodotsverticalabove-ar.glif rehTwodotsverticalabove-ar.fina rehT_wodotsverticalabove-ar.fina.glif rehVbelow-ar rehV_below-ar.glif rehVbelow-ar.fina rehV_below-ar.fina.glif rehVinvertedabove-ar rehV_invertedabove-ar.glif rehVinvertedabove-ar.fina rehV_invertedabove-ar.fina.glif rehv-ar rehv-ar.glif rehv-ar.fina rehv-ar.fina.glif replacementCharacter replacementC_haracter.glif resh-hb resh-hb.glif reshdagesh-hb reshdagesh-hb.glif returnsymbol returnsymbol.glif reversedRotatedFloralHeartBullet reversedR_otatedF_loralH_eartB_ullet.glif rho rho.glif rightArrow rightA_rrow.glif rightBlackPointer rightB_lackP_ointer.glif rightBlackSmallTriangle rightB_lackS_mallT_riangle.glif rightBlackTriangle rightB_lackT_riangle.glif rightBlock rightB_lock.glif rightBlock.stypo rightB_lock.stypo.glif rightHalfBlackCircle rightH_alfB_lackC_ircle.glif rightHalfBlackDiamond rightH_alfB_lackD_iamond.glif rightHalfBlackSquare rightH_alfB_lackS_quare.glif rightHalfBlackWhiteCircle rightH_alfB_lackW_hiteC_ircle.glif rightOneEighthBlock rightO_neE_ighthB_lock.glif rightOneEighthBlock.stypo rightO_neE_ighthB_lock.stypo.glif rightWhitePointer rightW_hiteP_ointer.glif rightWhiteSmallTriangle rightW_hiteS_mallT_riangle.glif rightWhiteTriangle rightW_hiteT_riangle.glif ring ring.glif ringArabic ringA_rabic.glif ringbelowcomb ringbelowcomb.glif ringcomb ringcomb.glif ringcomb.case ringcomb.case.glif rnoon-ar rnoon-ar.glif rnoon-ar.fina rnoon-ar.fina.glif rnoon-ar.init rnoon-ar.init.glif rnoon-ar.init.alt rnoon-ar.init.alt.glif rnoon-ar.medi rnoon-ar.medi.glif rotatedFloralHeartBullet rotatedF_loralH_eartB_ullet.glif rreh-ar rreh-ar.glif rreh-ar.fina rreh-ar.fina.glif ruble ruble.glif rupee rupee.glif rupeeIndian rupeeI_ndian.glif s s.glif sacute sacute.glif sacute.loclPLK sacute.loclP_L_K_.glif sad-ar sad-ar.glif sad-ar.alt sad-ar.alt.glif sad-ar.fina sad-ar.fina.glif sad-ar.fina.alt sad-ar.fina.alt.glif sad-ar.init sad-ar.init.glif sad-ar.medi sad-ar.medi.glif sadThreedots-ar sadT_hreedots-ar.glif sadThreedots-ar.alt sadT_hreedots-ar.alt.glif sadThreedots-ar.fina sadT_hreedots-ar.fina.glif sadThreedots-ar.fina.alt sadT_hreedots-ar.fina.alt.glif sadThreedots-ar.init sadT_hreedots-ar.init.glif sadThreedots-ar.medi sadT_hreedots-ar.medi.glif sadThreedotsbelow-ar sadT_hreedotsbelow-ar.glif sadThreedotsbelow-ar.alt sadT_hreedotsbelow-ar.alt.glif sadThreedotsbelow-ar.fina sadT_hreedotsbelow-ar.fina.glif sadThreedotsbelow-ar.fina.alt sadT_hreedotsbelow-ar.fina.alt.glif sadThreedotsbelow-ar.init sadT_hreedotsbelow-ar.init.glif sadThreedotsbelow-ar.medi sadT_hreedotsbelow-ar.medi.glif sadTwodotsbelow-ar sadT_wodotsbelow-ar.glif sadTwodotsbelow-ar.alt sadT_wodotsbelow-ar.alt.glif sadTwodotsbelow-ar.fina sadT_wodotsbelow-ar.fina.glif sadTwodotsbelow-ar.fina.alt sadT_wodotsbelow-ar.fina.alt.glif sadTwodotsbelow-ar.init sadT_wodotsbelow-ar.init.glif sadTwodotsbelow-ar.medi sadT_wodotsbelow-ar.medi.glif samekh-hb samekh-hb.glif samekhdagesh-hb samekhdagesh-hb.glif samvat-ar samvat-ar.glif scaron scaron.glif scedilla scedilla.glif schwa schwa.glif schwa-cy schwa-cy.glif scircumflex scircumflex.glif scommaaccent scommaaccent.glif sdotbelow sdotbelow.glif second second.glif section section.glif seen-ar seen-ar.glif seen-ar.alt seen-ar.alt.glif seen-ar.fina seen-ar.fina.glif seen-ar.fina.alt seen-ar.fina.alt.glif seen-ar.init seen-ar.init.glif seen-ar.medi seen-ar.medi.glif seenDotbelowDotabove-ar seenD_otbelowD_otabove-ar.glif seenDotbelowDotabove-ar.alt seenD_otbelowD_otabove-ar.alt.glif seenDotbelowDotabove-ar.fina seenD_otbelowD_otabove-ar.fina.glif seenDotbelowDotabove-ar.fina.alt seenD_otbelowD_otabove-ar.fina.alt.glif seenDotbelowDotabove-ar.init seenD_otbelowD_otabove-ar.init.glif seenDotbelowDotabove-ar.medi seenD_otbelowD_otabove-ar.medi.glif seenFourabove-ar seenF_ourabove-ar.glif seenFourabove-ar.alt seenF_ourabove-ar.alt.glif seenFourabove-ar.fina seenF_ourabove-ar.fina.glif seenFourabove-ar.fina.alt seenF_ourabove-ar.fina.alt.glif seenFourabove-ar.init seenF_ourabove-ar.init.glif seenFourabove-ar.medi seenF_ourabove-ar.medi.glif seenFourdotsabove-ar seenF_ourdotsabove-ar.glif seenFourdotsabove-ar.alt seenF_ourdotsabove-ar.alt.glif seenFourdotsabove-ar.fina seenF_ourdotsabove-ar.fina.glif seenFourdotsabove-ar.fina.alt seenF_ourdotsabove-ar.fina.alt.glif seenFourdotsabove-ar.init seenF_ourdotsabove-ar.init.glif seenFourdotsabove-ar.medi seenF_ourdotsabove-ar.medi.glif seenTahTwodotshorizontalabove-ar seenT_ahT_wodotshorizontalabove-ar.glif seenTahTwodotshorizontalabove-ar.alt seenT_ahT_wodotshorizontalabove-ar.alt.glif seenTahTwodotshorizontalabove-ar.fina seenT_ahT_wodotshorizontalabove-ar.fina.glif seenTahTwodotshorizontalabove-ar.fina.alt seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif seenTahTwodotshorizontalabove-ar.init seenT_ahT_wodotshorizontalabove-ar.init.glif seenTahTwodotshorizontalabove-ar.medi seenT_ahT_wodotshorizontalabove-ar.medi.glif seenThreedotsbelow-ar seenT_hreedotsbelow-ar.glif seenThreedotsbelow-ar.alt seenT_hreedotsbelow-ar.alt.glif seenThreedotsbelow-ar.fina seenT_hreedotsbelow-ar.fina.glif seenThreedotsbelow-ar.fina.alt seenT_hreedotsbelow-ar.fina.alt.glif seenThreedotsbelow-ar.init seenT_hreedotsbelow-ar.init.glif seenThreedotsbelow-ar.medi seenT_hreedotsbelow-ar.medi.glif seenThreedotsbelowthreedots-ar seenT_hreedotsbelowthreedots-ar.glif seenThreedotsbelowthreedots-ar.alt seenT_hreedotsbelowthreedots-ar.alt.glif seenThreedotsbelowthreedots-ar.fina seenT_hreedotsbelowthreedots-ar.fina.glif seenThreedotsbelowthreedots-ar.fina.alt seenT_hreedotsbelowthreedots-ar.fina.alt.glif seenThreedotsbelowthreedots-ar.init seenT_hreedotsbelowthreedots-ar.init.glif seenThreedotsbelowthreedots-ar.medi seenT_hreedotsbelowthreedots-ar.medi.glif seenTwodotshorizontalabove-ar seenT_wodotshorizontalabove-ar.glif seenTwodotshorizontalabove-ar.fina seenT_wodotshorizontalabove-ar.fina.glif seenTwodotshorizontalabove-ar.init seenT_wodotshorizontalabove-ar.init.glif seenTwodotshorizontalabove-ar.medi seenT_wodotshorizontalabove-ar.medi.glif seenTwodotsverticalabove-ar.alt seenT_wodotsverticalabove-ar.alt.glif seenTwodotsverticalabove-ar.fina.alt seenT_wodotsverticalabove-ar.fina.alt.glif seenVinvertedabove-ar seenV_invertedabove-ar.glif seenVinvertedabove-ar.alt seenV_invertedabove-ar.alt.glif seenVinvertedabove-ar.fina seenV_invertedabove-ar.fina.glif seenVinvertedabove-ar.fina.alt seenV_invertedabove-ar.fina.alt.glif seenVinvertedabove-ar.init seenV_invertedabove-ar.init.glif seenVinvertedabove-ar.medi seenV_invertedabove-ar.medi.glif semicolon semicolon.glif semicolon-ar semicolon-ar.glif semicolon_semicolon.liga semicolon_semicolon.liga.glif seven seven.glif seven-ar seven-ar.glif seven-arinferior seven-arinferior.glif seven-arsuperior seven-arsuperior.glif seven-persian seven-persian.glif seven-persian.urdu seven-persian.urdu.glif seven-persian.urduinferior seven-persian.urduinferior.glif seven-persian.urdusuperior seven-persian.urdusuperior.glif seven-persianinferior seven-persianinferior.glif seven-persiansuperior seven-persiansuperior.glif seven.dnom seven.dnom.glif seven.numr seven.numr.glif seveneighths seveneighths.glif seveneighths.BRACKET.500 seveneighths.B_R_A_C_K_E_T_.500.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sha-cy sha-cy.glif sha-cy.loclBGR sha-cy.loclB_G_R_.glif shadda-ar shadda-ar.glif shadedark shadedark.glif shadedark.stypo shadedark.stypo.glif shadelight shadelight.glif shadelight.stypo shadelight.stypo.glif shademedium shademedium.glif shademedium.stypo shademedium.stypo.glif shcha-cy shcha-cy.glif shcha-cy.loclBGR shcha-cy.loclB_G_R_.glif sheen-ar sheen-ar.glif sheen-ar.alt sheen-ar.alt.glif sheen-ar.fina sheen-ar.fina.glif sheen-ar.fina.alt sheen-ar.fina.alt.glif sheen-ar.init sheen-ar.init.glif sheen-ar.medi sheen-ar.medi.glif sheenDotbelow-ar sheenD_otbelow-ar.glif sheenDotbelow-ar.alt sheenD_otbelow-ar.alt.glif sheenDotbelow-ar.fina sheenD_otbelow-ar.fina.glif sheenDotbelow-ar.fina.alt sheenD_otbelow-ar.fina.alt.glif sheenDotbelow-ar.init sheenD_otbelow-ar.init.glif sheenDotbelow-ar.medi sheenD_otbelow-ar.medi.glif sheqel sheqel.glif shha-cy shha-cy.glif shiftInControl shiftI_nC_ontrol.glif shiftInControl.ss20 shiftI_nC_ontrol.ss20.glif shiftOutControl shiftO_utC_ontrol.glif shiftOutControl.ss20 shiftO_utC_ontrol.ss20.glif shin-hb shin-hb.glif shindagesh-hb shindagesh-hb.glif shindageshshindot-hb shindageshshindot-hb.glif shindageshsindot-hb shindageshsindot-hb.glif shindot-hb shindot-hb.glif shinshindot-hb shinshindot-hb.glif shinsindot-hb shinsindot-hb.glif sigma sigma.glif sigmafinal sigmafinal.glif sindhiampersand-ar sindhiampersand-ar.glif sindhipostpositionmen-ar sindhipostpositionmen-ar.glif sindot-hb sindot-hb.glif six six.glif six-ar six-ar.glif six-arinferior six-arinferior.glif six-arsuperior six-arsuperior.glif six-persian six-persian.glif six-persianinferior six-persianinferior.glif six-persiansuperior six-persiansuperior.glif six.dnom six.dnom.glif six.numr six.numr.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif slash_asterisk.liga slash_asterisk.liga.glif slash_backslash.liga slash_backslash.liga.glif slash_equal_end.seq slash_equal_end.seq.glif slash_equal_middle.seq slash_equal_middle.seq.glif slash_equal_start.seq slash_equal_start.seq.glif slash_greater.liga slash_greater.liga.glif slash_slash.liga slash_slash.liga.glif slash_slash_equal_end.seq slash_slash_equal_end.seq.glif slash_slash_equal_middle.seq slash_slash_equal_middle.seq.glif slash_slash_equal_start.seq slash_slash_equal_start.seq.glif slash_slash_slash.liga slash_slash_slash.liga.glif softhyphen softhyphen.glif softsign-cy softsign-cy.glif softsign-cy.loclBGR softsign-cy.loclB_G_R_.glif space space.glif spaceControl spaceC_ontrol.glif spadeBlackSuit spadeB_lackS_uit.glif startOfHeadingControl startO_fH_eadingC_ontrol.glif startOfHeadingControl.ss20 startO_fH_eadingC_ontrol.ss20.glif startOfTextControl startO_fT_extC_ontrol.glif startOfTextControl.ss20 startO_fT_extC_ontrol.ss20.glif sterling sterling.glif strictlyequivalentto strictlyequivalentto.glif substituteControl substituteC_ontrol.glif substituteControl.ss20 substituteC_ontrol.ss20.glif substituteFormTwoControl substituteF_ormT_woC_ontrol.glif sukun-ar sukun-ar.glif summation summation.glif sunWithRays sunW_ithR_ays.glif synchronousIdleControl synchronousI_dleC_ontrol.glif synchronousIdleControl.ss20 synchronousI_dleC_ontrol.ss20.glif t t.glif tah-ar tah-ar.glif tah-ar.fina tah-ar.fina.glif tah-ar.init tah-ar.init.glif tah-ar.medi tah-ar.medi.glif tahThreedots-ar tahT_hreedots-ar.glif tahThreedots-ar.fina tahT_hreedots-ar.fina.glif tahThreedots-ar.init tahT_hreedots-ar.init.glif tahThreedots-ar.medi tahT_hreedots-ar.medi.glif tahTwodotsabove-ar tahT_wodotsabove-ar.glif tahTwodotsabove-ar.fina tahT_wodotsabove-ar.fina.glif tahTwodotsabove-ar.init tahT_wodotsabove-ar.init.glif tahTwodotsabove-ar.medi tahT_wodotsabove-ar.medi.glif tahbelow-ar tahbelow-ar.glif tahcenter-ar tahcenter-ar.glif tau tau.glif tav-hb tav-hb.glif tavdagesh-hb tavdagesh-hb.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcheh-ar tcheh-ar.glif tcheh-ar.fina tcheh-ar.fina.glif tcheh-ar.init tcheh-ar.init.glif tcheh-ar.medi tcheh-ar.medi.glif tchehDotabove-ar tchehD_otabove-ar.glif tchehDotabove-ar.fina tchehD_otabove-ar.fina.glif tchehDotabove-ar.init tchehD_otabove-ar.init.glif tchehDotabove-ar.medi tchehD_otabove-ar.medi.glif tcheheh-ar tcheheh-ar.glif tcheheh-ar.fina tcheheh-ar.fina.glif tcheheh-ar.init tcheheh-ar.init.glif tcheheh-ar.medi tcheheh-ar.medi.glif tcommaaccent tcommaaccent.glif te-cy te-cy.glif te-cy.loclBGR te-cy.loclB_G_R_.glif teh-ar teh-ar.glif teh-ar.alt teh-ar.alt.glif teh-ar.fina teh-ar.fina.glif teh-ar.fina.alt teh-ar.fina.alt.glif teh-ar.init teh-ar.init.glif teh-ar.init.alt teh-ar.init.alt.glif teh-ar.medi teh-ar.medi.glif tehMarbuta-ar tehM_arbuta-ar.glif tehMarbuta-ar.fina tehM_arbuta-ar.fina.glif tehMarbutagoal-ar tehM_arbutagoal-ar.glif tehMarbutagoal-ar.fina tehM_arbutagoal-ar.fina.glif tehRing-ar tehR_ing-ar.glif tehRing-ar.alt tehR_ing-ar.alt.glif tehRing-ar.fina tehR_ing-ar.fina.glif tehRing-ar.fina.alt tehR_ing-ar.fina.alt.glif tehRing-ar.init tehR_ing-ar.init.glif tehRing-ar.init.alt tehR_ing-ar.init.alt.glif tehRing-ar.medi tehR_ing-ar.medi.glif tehTehabove-ar tehT_ehabove-ar.glif tehTehabove-ar.alt tehT_ehabove-ar.alt.glif tehTehabove-ar.fina tehT_ehabove-ar.fina.glif tehTehabove-ar.fina.alt tehT_ehabove-ar.fina.alt.glif tehTehabove-ar.init tehT_ehabove-ar.init.glif tehTehabove-ar.init.alt tehT_ehabove-ar.init.alt.glif tehTehabove-ar.medi tehT_ehabove-ar.medi.glif tehThreedotsdown-ar tehT_hreedotsdown-ar.glif tehThreedotsdown-ar.alt tehT_hreedotsdown-ar.alt.glif tehThreedotsdown-ar.fina tehT_hreedotsdown-ar.fina.glif tehThreedotsdown-ar.fina.alt tehT_hreedotsdown-ar.fina.alt.glif tehThreedotsdown-ar.init tehT_hreedotsdown-ar.init.glif tehThreedotsdown-ar.init.alt tehT_hreedotsdown-ar.init.alt.glif tehThreedotsdown-ar.medi tehT_hreedotsdown-ar.medi.glif tehThreedotsupbelow-ar tehT_hreedotsupbelow-ar.glif tehThreedotsupbelow-ar.alt tehT_hreedotsupbelow-ar.alt.glif tehThreedotsupbelow-ar.fina tehT_hreedotsupbelow-ar.fina.glif tehThreedotsupbelow-ar.fina.alt tehT_hreedotsupbelow-ar.fina.alt.glif tehThreedotsupbelow-ar.init tehT_hreedotsupbelow-ar.init.glif tehThreedotsupbelow-ar.init.alt tehT_hreedotsupbelow-ar.init.alt.glif tehThreedotsupbelow-ar.medi tehT_hreedotsupbelow-ar.medi.glif tehabove-ar.small tehabove-ar.small.glif teheh-ar teheh-ar.glif teheh-ar.alt teheh-ar.alt.glif teheh-ar.fina teheh-ar.fina.glif teheh-ar.fina.alt teheh-ar.fina.alt.glif teheh-ar.init teheh-ar.init.glif teheh-ar.init.alt teheh-ar.init.alt.glif teheh-ar.medi teheh-ar.medi.glif tenge tenge.glif tesh tesh.glif tet-hb tet-hb.glif tetdagesh-hb tetdagesh-hb.glif thal-ar thal-ar.glif thal-ar.fina thal-ar.fina.glif thalAlefabove-ar thalA_lefabove-ar.glif thalAlefabove-ar.fina thalA_lefabove-ar.fina.glif theh-ar theh-ar.glif theh-ar.alt theh-ar.alt.glif theh-ar.fina theh-ar.fina.glif theh-ar.fina.alt theh-ar.fina.alt.glif theh-ar.init theh-ar.init.glif theh-ar.init.alt theh-ar.init.alt.glif theh-ar.medi theh-ar.medi.glif theta theta.glif thetamod thetamod.glif thorn thorn.glif thousandseparator-ar thousandseparator-ar.glif three three.glif three-ar three-ar.glif three-arinferior three-arinferior.glif three-arsuperior three-arsuperior.glif three-persian three-persian.glif three-persian.small01 three-persian.small01.glif three-persianinferior three-persianinferior.glif three-persiansuperior three-persiansuperior.glif three.dnom three.dnom.glif three.half three.half.glif three.numr three.numr.glif threedots-ar threedots-ar.glif threedotsdownabove-ar threedotsdownabove-ar.glif threedotsdownbelow-ar threedotsdownbelow-ar.glif threedotsdowncenter-ar threedotsdowncenter-ar.glif threedotsupabove-ar threedotsupabove-ar.glif threedotsupabove-ar.v2 threedotsupabove-ar.v2.glif threedotsupbelow-ar threedotsupbelow-ar.glif threedotsupcenter-ar threedotsupcenter-ar.glif threeeighths threeeighths.glif threeeighths.BRACKET.500 threeeighths.B_R_A_C_K_E_T_.500.glif threeinferior threeinferior.glif threequarters threequarters.glif threequarters.BRACKET.500 threequarters.B_R_A_C_K_E_T_.500.glif threesuperior threesuperior.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.case tildecomb.case.glif tonos tonos.glif tonos.case tonos.case.glif topHalfBlackCircle topH_alfB_lackC_ircle.glif topHalfBlackDiamond topH_alfB_lackD_iamond.glif topHalfWhiteSquare topH_alfW_hiteS_quare.glif topRightHalfWhiteSquare topR_ightH_alfW_hiteS_quare.glif trademark trademark.glif tsadi-hb tsadi-hb.glif tsadidagesh-hb tsadidagesh-hb.glif tse-cy tse-cy.glif tse-cy.loclBGR tse-cy.loclB_G_R_.glif tshe-cy tshe-cy.glif tteh-ar tteh-ar.glif tteh-ar.alt tteh-ar.alt.glif tteh-ar.fina tteh-ar.fina.glif tteh-ar.fina.alt tteh-ar.fina.alt.glif tteh-ar.init tteh-ar.init.glif tteh-ar.init.alt tteh-ar.init.alt.glif tteh-ar.medi tteh-ar.medi.glif tteheh-ar tteheh-ar.glif tteheh-ar.alt tteheh-ar.alt.glif tteheh-ar.fina tteheh-ar.fina.glif tteheh-ar.fina.alt tteheh-ar.fina.alt.glif tteheh-ar.init tteheh-ar.init.glif tteheh-ar.init.alt tteheh-ar.init.alt.glif tteheh-ar.medi tteheh-ar.medi.glif tugrik tugrik.glif two two.glif two-ar two-ar.glif two-arinferior two-arinferior.glif two-arsuperior two-arsuperior.glif two-persian two-persian.glif two-persian.small01 two-persian.small01.glif two-persianinferior two-persianinferior.glif two-persiansuperior two-persiansuperior.glif two.dnom two.dnom.glif two.half two.half.glif two.numr two.numr.glif twodotshorizontalabove-ar twodotshorizontalabove-ar.glif twodotshorizontalabove-ar.v2 twodotshorizontalabove-ar.v2.glif twodotshorizontalbelow-ar twodotshorizontalbelow-ar.glif twodotshorizontalcenter-ar twodotshorizontalcenter-ar.glif twodotstahbelow-ar twodotstahbelow-ar.glif twodotstahcenter-ar twodotstahcenter-ar.glif twodotsverticalabove-ar twodotsverticalabove-ar.glif twodotsverticalbelow-ar twodotsverticalbelow-ar.glif twodotsverticalcenter-ar twodotsverticalcenter-ar.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif u-ar u-ar.glif u-ar.fina u-ar.fina.glif u-cy u-cy.glif uHamzaabove-ar uH_amzaabove-ar.glif uHamzaabove-ar.fina uH_amzaabove-ar.fina.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhookabove uhookabove.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhookabove uhornhookabove.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif umacron-cy umacron-cy.glif underscore underscore.glif underscore_end.seq underscore_end.seq.glif underscore_middle.seq underscore_middle.seq.glif underscore_start.seq underscore_start.seq.glif underscore_underscore.liga underscore_underscore.liga.glif underscoredbl underscoredbl.glif uni08B3 uni08B_3.glif uni08B3.fina uni08B_3.fina.glif uni08B3.init uni08B_3.init.glif uni08B3.medi uni08B_3.medi.glif uni08B4 uni08B_4.glif uni08B4.fina uni08B_4.fina.glif uni08B4.init uni08B_4.init.glif uni08B4.medi uni08B_4.medi.glif uni08B9.fina uni08B_9.fina.glif uniFBC0 uniF_B_C_0.glif unitSeparatorControl unitS_eparatorC_ontrol.glif uogonek uogonek.glif upArrow upA_rrow.glif upBlackSmallTriangle upB_lackS_mallT_riangle.glif upBlackTriangle upB_lackT_riangle.glif upDashArrow upD_ashA_rrow.glif upDownArrow upD_ownA_rrow.glif upDownbaseArrow upD_ownbaseA_rrow.glif upLeftHalfBlackTriangle upL_eftH_alfB_lackT_riangle.glif upRightHalfBlackTriangle upR_ightH_alfB_lackT_riangle.glif upWhiteSmallTriangle upW_hiteS_mallT_riangle.glif upWhiteTriangle upW_hiteT_riangle.glif upWhiteTriangleWithDot upW_hiteT_riangleW_ithD_ot.glif upperHalfArc upperH_alfA_rc.glif upperHalfBlackWhiteCircle upperH_alfB_lackW_hiteC_ircle.glif upperHalfBlock upperH_alfB_lock.glif upperHalfBlock.stypo upperH_alfB_lock.stypo.glif upperHalfInverseWhiteCircle upperH_alfI_nverseW_hiteC_ircle.glif upperLeftAndLowerLeftAndLowerRightBlock upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndLowerRightBlock upperL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndUpperRightAndLowerLeftBlock upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif upperLeftAndUpperRightAndLowerLeftBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperLeftAndUpperRightAndLowerRightBlock upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif upperLeftAndUpperRightAndLowerRightBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif upperLeftArc upperL_eftA_rc.glif upperLeftBlackTriangle upperL_eftB_lackT_riangle.glif upperLeftBlock upperL_eftB_lock.glif upperLeftBlock.stypo upperL_eftB_lock.stypo.glif upperLeftDiagonalHalfBlackSquare upperL_eftD_iagonalH_alfB_lackS_quare.glif upperLeftQuadrantWhiteCircle upperL_eftQ_uadrantW_hiteC_ircle.glif upperLeftTriangle upperL_eftT_riangle.glif upperLeftWhiteCircle upperL_eftW_hiteC_ircle.glif upperOneEighthBlock upperO_neE_ighthB_lock.glif upperOneEighthBlock.stypo upperO_neE_ighthB_lock.stypo.glif upperRightAndLowerLeftAndLowerRightBlock upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperRightAndLowerLeftAndLowerRightBlock.stypo upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperRightAndLowerLeftBlock upperR_ightA_ndL_owerL_eftB_lock.glif upperRightAndLowerLeftBlock.stypo upperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperRightArc upperR_ightA_rc.glif upperRightBlackCircle upperR_ightB_lackC_ircle.glif upperRightBlackTriangle upperR_ightB_lackT_riangle.glif upperRightBlock upperR_ightB_lock.glif upperRightBlock.stypo upperR_ightB_lock.stypo.glif upperRightQuadrantWhiteCircle upperR_ightQ_uadrantW_hiteC_ircle.glif upperRightTriangle upperR_ightT_riangle.glif upperlefttolowerrightFillSquare upperlefttolowerrightF_illS_quare.glif upperrighttolowerleftFillSquare upperrighttolowerleftF_illS_quare.glif upsilon upsilon.glif upsilon-latin upsilon-latin.glif upsilondieresis upsilondieresis.glif upsilondieresistonos upsilondieresistonos.glif upsilontonos upsilontonos.glif uring uring.glif ushort-cy ushort-cy.glif ustraight-cy ustraight-cy.glif ustraightstroke-cy ustraightstroke-cy.glif utilde utilde.glif v v.glif vabove-ar vabove-ar.glif vav-hb vav-hb.glif vavdagesh-hb vavdagesh-hb.glif vavholam-hb vavholam-hb.glif ve-ar ve-ar.glif ve-ar.fina ve-ar.fina.glif ve-cy ve-cy.glif ve-cy.loclBGR ve-cy.loclB_G_R_.glif vectorOrCrossProduct vectorO_rC_rossP_roduct.glif veh-ar veh-ar.glif veh-ar.alt veh-ar.alt.glif veh-ar.fina veh-ar.fina.glif veh-ar.fina.alt veh-ar.fina.alt.glif veh-ar.init veh-ar.init.glif veh-ar.init.alt veh-ar.init.alt.glif veh-ar.medi veh-ar.medi.glif venus venus.glif verseComma-ar verseC_omma-ar.glif verticalBisectingLineWhiteSquare verticalB_isectingL_ineW_hiteS_quare.glif verticalFillCircle verticalF_illC_ircle.glif verticalFillSquare verticalF_illS_quare.glif verticalTabulationControl verticalT_abulationC_ontrol.glif verticalTabulationControl.ss20 verticalT_abulationC_ontrol.ss20.glif vhook vhook.glif vinvertedabove-ar vinvertedabove-ar.glif vturned vturned.glif w w.glif w_w_w.liga w_w_w.liga.glif wacute wacute.glif wasla-ar wasla-ar.glif wavyhamzaabove-ar wavyhamzaabove-ar.glif wavyhamzabelow-ar wavyhamzabelow-ar.glif waw-ar waw-ar.glif waw-ar.fina waw-ar.fina.glif wawDotabove-ar wawD_otabove-ar.glif wawDotabove-ar.fina wawD_otabove-ar.fina.glif wawDotcenter-ar wawD_otcenter-ar.glif wawDotcenter-ar.fina wawD_otcenter-ar.fina.glif wawHamzaabove-ar wawH_amzaabove-ar.glif wawHamzaabove-ar.fina wawH_amzaabove-ar.fina.glif wawStraight-ar wawS_traight-ar.glif wawThreeAbove-ar wawT_hreeA_bove-ar.glif wawThreeAbove-ar.fina wawT_hreeA_bove-ar.fina.glif wawTwoabove-ar wawT_woabove-ar.glif wawTwoabove-ar.fina wawT_woabove-ar.fina.glif wawTwodots-ar wawT_wodots-ar.glif wawTwodots-ar.fina wawT_wodots-ar.fina.glif wawring-ar wawring-ar.glif wawring-ar.fina wawring-ar.fina.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif whiteBullet whiteB_ullet.glif whiteCircle whiteC_ircle.glif whiteDiamond whiteD_iamond.glif whiteHexagon whiteH_exagon.glif whiteHorizontalEllipse whiteH_orizontalE_llipse.glif whiteInBlackSquare whiteI_nB_lackS_quare.glif whiteLargeSquare whiteL_argeS_quare.glif whiteLowerLeftQuadrantSquare whiteL_owerL_eftQ_uadrantS_quare.glif whiteLowerRightQuadrantSquare whiteL_owerR_ightQ_uadrantS_quare.glif whiteMediumDiamond whiteM_ediumD_iamond.glif whiteMediumLozenge whiteM_ediumL_ozenge.glif whiteParallelogram whiteP_arallelogram.glif whitePentagon whiteP_entagon.glif whiteRect whiteR_ect.glif whiteRoundedCornersSquare whiteR_oundedC_ornersS_quare.glif whiteSmallLozenge whiteS_mallL_ozenge.glif whiteSmallSquare whiteS_mallS_quare.glif whiteSmilingFace whiteS_milingF_ace.glif whiteSquare whiteS_quare.glif whiteUpperLeftQuadrantSquare whiteU_pperL_eftQ_uadrantS_quare.glif whiteUpperRightQuadrantSquare whiteU_pperR_ightQ_uadrantS_quare.glif whiteVerticalEllipse whiteV_erticalE_llipse.glif whiteVerticalRect whiteV_erticalR_ect.glif whiteVerysmallSquare whiteV_erysmallS_quare.glif wmod wmod.glif won won.glif x x.glif x.multiply x.multiply.glif xi xi.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif year-ar year-ar.glif yeh-ar yeh-ar.glif yeh-ar.fina yeh-ar.fina.glif yeh-ar.fina.alt yeh-ar.fina.alt.glif yeh-ar.init yeh-ar.init.glif yeh-ar.init.alt yeh-ar.init.alt.glif yeh-ar.medi yeh-ar.medi.glif yeh-farsi yeh-farsi.glif yeh-farsi.fina yeh-farsi.fina.glif yeh-farsi.fina.alt yeh-farsi.fina.alt.glif yeh-farsi.init yeh-farsi.init.glif yeh-farsi.init.alt yeh-farsi.init.alt.glif yeh-farsi.medi yeh-farsi.medi.glif yehFourbelow-farsi yehF_ourbelow-farsi.glif yehFourbelow-farsi.fina yehF_ourbelow-farsi.fina.glif yehFourbelow-farsi.fina.alt yehF_ourbelow-farsi.fina.alt.glif yehFourbelow-farsi.init yehF_ourbelow-farsi.init.glif yehFourbelow-farsi.init.alt yehF_ourbelow-farsi.init.alt.glif yehFourbelow-farsi.medi yehF_ourbelow-farsi.medi.glif yehHamzaabove-ar yehH_amzaabove-ar.glif yehHamzaabove-ar.fina yehH_amzaabove-ar.fina.glif yehHamzaabove-ar.fina.alt yehH_amzaabove-ar.fina.alt.glif yehHamzaabove-ar.init yehH_amzaabove-ar.init.glif yehHamzaabove-ar.init.alt yehH_amzaabove-ar.init.alt.glif yehHamzaabove-ar.medi yehH_amzaabove-ar.medi.glif yehKashmiri-ar yehK_ashmiri-ar.glif yehKashmiri-ar.fina yehK_ashmiri-ar.fina.glif yehKashmiri-ar.fina.alt yehK_ashmiri-ar.fina.alt.glif yehKashmiri-ar.init yehK_ashmiri-ar.init.glif yehKashmiri-ar.init.alt yehK_ashmiri-ar.init.alt.glif yehKashmiri-ar.medi yehK_ashmiri-ar.medi.glif yehRohingya-ar yehR_ohingya-ar.glif yehRohingya-ar.fina yehR_ohingya-ar.fina.glif yehRohingya-ar.isol yehR_ohingya-ar.isol.glif yehTail-ar yehT_ail-ar.glif yehTail-ar.fina yehT_ail-ar.fina.glif yehTail-ar.fina.alt yehT_ail-ar.fina.alt.glif yehThreeabove-farsi yehT_hreeabove-farsi.glif yehThreeabove-farsi.fina yehT_hreeabove-farsi.fina.glif yehThreeabove-farsi.fina.alt yehT_hreeabove-farsi.fina.alt.glif yehThreeabove-farsi.init yehT_hreeabove-farsi.init.glif yehThreeabove-farsi.init.alt yehT_hreeabove-farsi.init.alt.glif yehThreeabove-farsi.medi yehT_hreeabove-farsi.medi.glif yehThreedotsabove-farsi yehT_hreedotsabove-farsi.glif yehThreedotsabove-farsi.fina yehT_hreedotsabove-farsi.fina.glif yehThreedotsabove-farsi.fina.alt yehT_hreedotsabove-farsi.fina.alt.glif yehThreedotsabove-farsi.init yehT_hreedotsabove-farsi.init.glif yehThreedotsabove-farsi.init.alt yehT_hreedotsabove-farsi.init.alt.glif yehThreedotsabove-farsi.medi yehT_hreedotsabove-farsi.medi.glif yehThreedotsbelow-ar yehT_hreedotsbelow-ar.glif yehThreedotsbelow-ar.fina yehT_hreedotsbelow-ar.fina.glif yehThreedotsbelow-ar.fina.alt yehT_hreedotsbelow-ar.fina.alt.glif yehThreedotsbelow-ar.init yehT_hreedotsbelow-ar.init.glif yehThreedotsbelow-ar.init.alt yehT_hreedotsbelow-ar.init.alt.glif yehThreedotsbelow-ar.medi yehT_hreedotsbelow-ar.medi.glif yehTwoabove-farsi yehT_woabove-farsi.glif yehTwoabove-farsi.fina yehT_woabove-farsi.fina.glif yehTwoabove-farsi.fina.alt yehT_woabove-farsi.fina.alt.glif yehTwoabove-farsi.init yehT_woabove-farsi.init.glif yehTwoabove-farsi.init.alt yehT_woabove-farsi.init.alt.glif yehTwoabove-farsi.medi yehT_woabove-farsi.medi.glif yehTwodotsabove-farsi yehT_wodotsabove-farsi.glif yehTwodotsabove-farsi.fina yehT_wodotsabove-farsi.fina.glif yehTwodotsabove-farsi.fina.alt yehT_wodotsabove-farsi.fina.alt.glif yehTwodotsabove-farsi.init yehT_wodotsabove-farsi.init.glif yehTwodotsabove-farsi.init.alt yehT_wodotsabove-farsi.init.alt.glif yehTwodotsabove-farsi.medi yehT_wodotsabove-farsi.medi.glif yehTwodotsbelowDotabove-ar yehT_wodotsbelowD_otabove-ar.glif yehTwodotsbelowDotabove-ar.fina yehT_wodotsbelowD_otabove-ar.fina.glif yehTwodotsbelowDotabove-ar.init yehT_wodotsbelowD_otabove-ar.init.glif yehTwodotsbelowDotabove-ar.init.alt yehT_wodotsbelowD_otabove-ar.init.alt.glif yehTwodotsbelowDotabove-ar.medi yehT_wodotsbelowD_otabove-ar.medi.glif yehTwodotsbelowHamzaabove-ar yehT_wodotsbelowH_amzaabove-ar.glif yehTwodotsbelowHamzaabove-ar.fina yehT_wodotsbelowH_amzaabove-ar.fina.glif yehTwodotsbelowHamzaabove-ar.init yehT_wodotsbelowH_amzaabove-ar.init.glif yehTwodotsbelowHamzaabove-ar.init.alt yehT_wodotsbelowH_amzaabove-ar.init.alt.glif yehTwodotsbelowHamzaabove-ar.medi yehT_wodotsbelowH_amzaabove-ar.medi.glif yehTwodotsbelowNoonabove-ar yehT_wodotsbelowN_oonabove-ar.glif yehTwodotsbelowNoonabove-ar.fina yehT_wodotsbelowN_oonabove-ar.fina.glif yehTwodotsbelowNoonabove-ar.fina.alt yehT_wodotsbelowN_oonabove-ar.fina.alt.glif yehTwodotsbelowNoonabove-ar.init yehT_wodotsbelowN_oonabove-ar.init.glif yehTwodotsbelowNoonabove-ar.init.alt yehT_wodotsbelowN_oonabove-ar.init.alt.glif yehTwodotsbelowNoonabove-ar.medi yehT_wodotsbelowN_oonabove-ar.medi.glif yehVabove-ar yehV_above-ar.glif yehVabove-ar.fina yehV_above-ar.fina.glif yehVabove-ar.fina.alt yehV_above-ar.fina.alt.glif yehVabove-ar.init yehV_above-ar.init.glif yehVabove-ar.init.alt yehV_above-ar.init.alt.glif yehVabove-ar.medi yehV_above-ar.medi.glif yehVinverted-farsi yehV_inverted-farsi.glif yehVinverted-farsi.fina yehV_inverted-farsi.fina.glif yehVinverted-farsi.fina.alt yehV_inverted-farsi.fina.alt.glif yehVinverted-farsi.init yehV_inverted-farsi.init.glif yehVinverted-farsi.init.alt yehV_inverted-farsi.init.alt.glif yehVinverted-farsi.medi yehV_inverted-farsi.medi.glif yehbarree-ar yehbarree-ar.glif yehbarree-ar.fina yehbarree-ar.fina.glif yehbarreeHamzaabove-ar yehbarreeH_amzaabove-ar.glif yehbarreeHamzaabove-ar.fina yehbarreeH_amzaabove-ar.fina.glif yehbarreeThreeabove-ar yehbarreeT_hreeabove-ar.glif yehbarreeThreeabove-ar.fina yehbarreeT_hreeabove-ar.fina.glif yehbarreeThreeabove-ar.init yehbarreeT_hreeabove-ar.init.glif yehbarreeThreeabove-ar.init.alt yehbarreeT_hreeabove-ar.init.alt.glif yehbarreeThreeabove-ar.medi yehbarreeT_hreeabove-ar.medi.glif yehbarreeTwoabove-ar yehbarreeT_woabove-ar.glif yehbarreeTwoabove-ar.fina yehbarreeT_woabove-ar.fina.glif yehbarreeTwoabove-ar.init yehbarreeT_woabove-ar.init.glif yehbarreeTwoabove-ar.init.alt yehbarreeT_woabove-ar.init.alt.glif yehbarreeTwoabove-ar.medi yehbarreeT_woabove-ar.medi.glif yen yen.glif yeru-cy yeru-cy.glif ygrave ygrave.glif yhookabove yhookabove.glif yi-cy yi-cy.glif ymacron ymacron.glif ymod ymod.glif yod-hb yod-hb.glif yoddagesh-hb yoddagesh-hb.glif ytilde ytilde.glif yu-ar yu-ar.glif yu-ar.fina yu-ar.fina.glif z z.glif zacute zacute.glif zacute.loclPLK zacute.loclP_L_K_.glif zah-ar zah-ar.glif zah-ar.fina zah-ar.fina.glif zah-ar.init zah-ar.init.glif zah-ar.medi zah-ar.medi.glif zain-ar zain-ar.glif zain-ar.fina zain-ar.fina.glif zainVInvertedabove-ar zainV_I_nvertedabove-ar.glif zainVInvertedabove-ar.fina zainV_I_nvertedabove-ar.fina.glif zayin-hb zayin-hb.glif zayindagesh-hb zayindagesh-hb.glif zcaron zcaron.glif zdotaccent zdotaccent.glif ze-cy ze-cy.glif ze-cy.loclBGR ze-cy.loclB_G_R_.glif zero zero.glif zero-ar zero-ar.glif zero-arinferior zero-arinferior.glif zero-arsuperior zero-arsuperior.glif zero-persian zero-persian.glif zero-persianinferior zero-persianinferior.glif zero-persiansuperior zero-persiansuperior.glif zero.dnom zero.dnom.glif zero.numr zero.numr.glif zero.zero zero.zero.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif zeta zeta.glif zhe-cy zhe-cy.glif zhe-cy.loclBGR zhe-cy.loclB_G_R_.glif zhedescender-cy zhedescender-cy.glif zmod zmod.glif checkerBoardDeleteApple2 checkerB_oardD_eleteA_pple2.glif checkerBoardDeleteTrs80 checkerB_oardD_eleteT_rs80.glif checkerBoardDeleteAmstradCpc checkerB_oardD_eleteA_mstradC_pc.glif checkerBoardDeleteAmstradCpc.stypo checkerB_oardD_eleteA_mstradC_pc.stypo.glif checkerBoardFill checkerB_oardF_ill.glif checkerBoardFill.stypo checkerB_oardF_ill.stypo.glif checkerBoardFillInverse checkerB_oardF_illI_nverse.glif checkerBoardFillInverse.stypo checkerB_oardF_illI_nverse.stypo.glif blockQuadrant-UC blockQ_uadrant-UC.glif blockQuadrant-UC.stypo blockQ_uadrant-UC.stypo.glif blockQuadrant-LC blockQ_uadrant-LC.glif blockQuadrant-LC.stypo blockQ_uadrant-LC.stypo.glif blockQuadrant-ML blockQ_uadrant-ML.glif blockQuadrant-ML.stypo blockQ_uadrant-ML.stypo.glif blockQuadrant-MR blockQ_uadrant-MR.glif blockQuadrant-MR.stypo blockQ_uadrant-MR.stypo.glif blockTriangle-1 blockT_riangle-1.glif blockTriangle-1.stypo blockT_riangle-1.stypo.glif blockTriangle-2 blockT_riangle-2.glif blockTriangle-2.stypo blockT_riangle-2.stypo.glif blockTriangle-3 blockT_riangle-3.glif blockTriangle-3.stypo blockT_riangle-3.stypo.glif blockTriangle-4 blockT_riangle-4.glif blockTriangle-4.stypo blockT_riangle-4.stypo.glif blockTriangle-14 blockT_riangle-14.glif blockTriangle-14.stypo blockT_riangle-14.stypo.glif blockTriangle-23 blockT_riangle-23.glif blockTriangle-23.stypo blockT_riangle-23.stypo.glif blockTriangle-123 blockT_riangle-123.glif blockTriangle-123.stypo blockT_riangle-123.stypo.glif blockTriangle-124 blockT_riangle-124.glif blockTriangle-124.stypo blockT_riangle-124.stypo.glif blockTriangle-134 blockT_riangle-134.glif blockTriangle-134.stypo blockT_riangle-134.stypo.glif blockTriangle-234 blockT_riangle-234.glif blockTriangle-234.stypo blockT_riangle-234.stypo.glif blockCircle-UC blockC_ircle-UC.glif blockCircle-UC.stypo blockC_ircle-UC.stypo.glif blockCircle-LC blockC_ircle-LC.glif blockCircle-LC.stypo blockC_ircle-LC.stypo.glif blockCircle-ML blockC_ircle-ML.glif blockCircle-ML.stypo blockC_ircle-ML.stypo.glif blockCircle-MR blockC_ircle-MR.glif blockCircle-MR.stypo blockC_ircle-MR.stypo.glif blockCircle-1 blockC_ircle-1.glif blockCircle-1.stypo blockC_ircle-1.stypo.glif blockCircle-2 blockC_ircle-2.glif blockCircle-2.stypo blockC_ircle-2.stypo.glif blockCircle-3 blockC_ircle-3.glif blockCircle-3.stypo blockC_ircle-3.stypo.glif blockCircle-4 blockC_ircle-4.glif blockCircle-4.stypo blockC_ircle-4.stypo.glif blockSextant-1 blockS_extant-1.glif blockSextant-1.stypo blockS_extant-1.stypo.glif blockSextant-2 blockS_extant-2.glif blockSextant-2.stypo blockS_extant-2.stypo.glif blockSextant-12 blockS_extant-12.glif blockSextant-12.stypo blockS_extant-12.stypo.glif blockSextant-3 blockS_extant-3.glif blockSextant-3.stypo blockS_extant-3.stypo.glif blockSextant-13 blockS_extant-13.glif blockSextant-13.stypo blockS_extant-13.stypo.glif blockSextant-23 blockS_extant-23.glif blockSextant-23.stypo blockS_extant-23.stypo.glif blockSextant-123 blockS_extant-123.glif blockSextant-123.stypo blockS_extant-123.stypo.glif blockSextant-4 blockS_extant-4.glif blockSextant-4.stypo blockS_extant-4.stypo.glif blockSextant-14 blockS_extant-14.glif blockSextant-14.stypo blockS_extant-14.stypo.glif blockSextant-24 blockS_extant-24.glif blockSextant-24.stypo blockS_extant-24.stypo.glif blockSextant-124 blockS_extant-124.glif blockSextant-124.stypo blockS_extant-124.stypo.glif blockSextant-34 blockS_extant-34.glif blockSextant-34.stypo blockS_extant-34.stypo.glif blockSextant-134 blockS_extant-134.glif blockSextant-134.stypo blockS_extant-134.stypo.glif blockSextant-234 blockS_extant-234.glif blockSextant-234.stypo blockS_extant-234.stypo.glif blockSextant-1234 blockS_extant-1234.glif blockSextant-1234.stypo blockS_extant-1234.stypo.glif blockSextant-5 blockS_extant-5.glif blockSextant-5.stypo blockS_extant-5.stypo.glif blockSextant-15 blockS_extant-15.glif blockSextant-15.stypo blockS_extant-15.stypo.glif blockSextant-25 blockS_extant-25.glif blockSextant-25.stypo blockS_extant-25.stypo.glif blockSextant-125 blockS_extant-125.glif blockSextant-125.stypo blockS_extant-125.stypo.glif blockSextant-35 blockS_extant-35.glif blockSextant-35.stypo blockS_extant-35.stypo.glif blockSextant-235 blockS_extant-235.glif blockSextant-235.stypo blockS_extant-235.stypo.glif blockSextant-1235 blockS_extant-1235.glif blockSextant-1235.stypo blockS_extant-1235.stypo.glif blockSextant-45 blockS_extant-45.glif blockSextant-45.stypo blockS_extant-45.stypo.glif blockSextant-145 blockS_extant-145.glif blockSextant-145.stypo blockS_extant-145.stypo.glif blockSextant-245 blockS_extant-245.glif blockSextant-245.stypo blockS_extant-245.stypo.glif blockSextant-1245 blockS_extant-1245.glif blockSextant-1245.stypo blockS_extant-1245.stypo.glif blockSextant-345 blockS_extant-345.glif blockSextant-345.stypo blockS_extant-345.stypo.glif blockSextant-1345 blockS_extant-1345.glif blockSextant-1345.stypo blockS_extant-1345.stypo.glif blockSextant-2345 blockS_extant-2345.glif blockSextant-2345.stypo blockS_extant-2345.stypo.glif blockSextant-12345 blockS_extant-12345.glif blockSextant-12345.stypo blockS_extant-12345.stypo.glif blockSextant-6 blockS_extant-6.glif blockSextant-6.stypo blockS_extant-6.stypo.glif blockSextant-16 blockS_extant-16.glif blockSextant-16.stypo blockS_extant-16.stypo.glif blockSextant-26 blockS_extant-26.glif blockSextant-26.stypo blockS_extant-26.stypo.glif blockSextant-126 blockS_extant-126.glif blockSextant-126.stypo blockS_extant-126.stypo.glif blockSextant-36 blockS_extant-36.glif blockSextant-36.stypo blockS_extant-36.stypo.glif blockSextant-136 blockS_extant-136.glif blockSextant-136.stypo blockS_extant-136.stypo.glif blockSextant-236 blockS_extant-236.glif blockSextant-236.stypo blockS_extant-236.stypo.glif blockSextant-1236 blockS_extant-1236.glif blockSextant-1236.stypo blockS_extant-1236.stypo.glif blockSextant-46 blockS_extant-46.glif blockSextant-46.stypo blockS_extant-46.stypo.glif blockSextant-146 blockS_extant-146.glif blockSextant-146.stypo blockS_extant-146.stypo.glif blockSextant-1246 blockS_extant-1246.glif blockSextant-1246.stypo blockS_extant-1246.stypo.glif blockSextant-346 blockS_extant-346.glif blockSextant-346.stypo blockS_extant-346.stypo.glif blockSextant-1346 blockS_extant-1346.glif blockSextant-1346.stypo blockS_extant-1346.stypo.glif blockSextant-2346 blockS_extant-2346.glif blockSextant-2346.stypo blockS_extant-2346.stypo.glif blockSextant-12346 blockS_extant-12346.glif blockSextant-12346.stypo blockS_extant-12346.stypo.glif blockSextant-56 blockS_extant-56.glif blockSextant-56.stypo blockS_extant-56.stypo.glif blockSextant-156 blockS_extant-156.glif blockSextant-156.stypo blockS_extant-156.stypo.glif blockSextant-256 blockS_extant-256.glif blockSextant-256.stypo blockS_extant-256.stypo.glif blockSextant-1256 blockS_extant-1256.glif blockSextant-1256.stypo blockS_extant-1256.stypo.glif blockSextant-356 blockS_extant-356.glif blockSextant-356.stypo blockS_extant-356.stypo.glif blockSextant-1356 blockS_extant-1356.glif blockSextant-1356.stypo blockS_extant-1356.stypo.glif blockSextant-2356 blockS_extant-2356.glif blockSextant-2356.stypo blockS_extant-2356.stypo.glif blockSextant-12356 blockS_extant-12356.glif blockSextant-12356.stypo blockS_extant-12356.stypo.glif blockSextant-456 blockS_extant-456.glif blockSextant-456.stypo blockS_extant-456.stypo.glif blockSextant-1456 blockS_extant-1456.glif blockSextant-1456.stypo blockS_extant-1456.stypo.glif blockSextant-2456 blockS_extant-2456.glif blockSextant-2456.stypo blockS_extant-2456.stypo.glif blockSextant-12456 blockS_extant-12456.glif blockSextant-12456.stypo blockS_extant-12456.stypo.glif blockSextant-3456 blockS_extant-3456.glif blockSextant-3456.stypo blockS_extant-3456.stypo.glif blockSextant-13456 blockS_extant-13456.glif blockSextant-13456.stypo blockS_extant-13456.stypo.glif blockSextant-23456 blockS_extant-23456.glif blockSextant-23456.stypo blockS_extant-23456.stypo.glif blockDiagonal-1FB3C blockD_iagonal-1FB3C.glif blockDiagonal-1FB3C.stypo blockD_iagonal-1FB3C.stypo.glif blockDiagonal-1FB3D blockD_iagonal-1FB3D.glif blockDiagonal-1FB3D.stypo blockD_iagonal-1FB3D.stypo.glif blockDiagonal-1FB3E blockD_iagonal-1FB3E.glif blockDiagonal-1FB3E.stypo blockD_iagonal-1FB3E.stypo.glif blockDiagonal-1FB3F blockD_iagonal-1FB3F.glif blockDiagonal-1FB3F.stypo blockD_iagonal-1FB3F.stypo.glif blockDiagonal-1FB40 blockD_iagonal-1FB40.glif blockDiagonal-1FB40.stypo blockD_iagonal-1FB40.stypo.glif blockDiagonal-1FB41 blockD_iagonal-1FB41.glif blockDiagonal-1FB41.stypo blockD_iagonal-1FB41.stypo.glif blockDiagonal-1FB42 blockD_iagonal-1FB42.glif blockDiagonal-1FB42.stypo blockD_iagonal-1FB42.stypo.glif blockDiagonal-1FB43 blockD_iagonal-1FB43.glif blockDiagonal-1FB43.stypo blockD_iagonal-1FB43.stypo.glif blockDiagonal-1FB44 blockD_iagonal-1FB44.glif blockDiagonal-1FB44.stypo blockD_iagonal-1FB44.stypo.glif blockDiagonal-1FB45 blockD_iagonal-1FB45.glif blockDiagonal-1FB45.stypo blockD_iagonal-1FB45.stypo.glif blockDiagonal-1FB46 blockD_iagonal-1FB46.glif blockDiagonal-1FB46.stypo blockD_iagonal-1FB46.stypo.glif blockDiagonal-1FB47 blockD_iagonal-1FB47.glif blockDiagonal-1FB47.stypo blockD_iagonal-1FB47.stypo.glif blockDiagonal-1FB48 blockD_iagonal-1FB48.glif blockDiagonal-1FB48.stypo blockD_iagonal-1FB48.stypo.glif blockDiagonal-1FB49 blockD_iagonal-1FB49.glif blockDiagonal-1FB49.stypo blockD_iagonal-1FB49.stypo.glif blockDiagonal-1FB4A blockD_iagonal-1FB4A.glif blockDiagonal-1FB4A.stypo blockD_iagonal-1FB4A.stypo.glif blockDiagonal-1FB4B blockD_iagonal-1FB4B.glif blockDiagonal-1FB4B.stypo blockD_iagonal-1FB4B.stypo.glif blockDiagonal-1FB4C blockD_iagonal-1FB4C.glif blockDiagonal-1FB4C.stypo blockD_iagonal-1FB4C.stypo.glif blockDiagonal-1FB4D blockD_iagonal-1FB4D.glif blockDiagonal-1FB4D.stypo blockD_iagonal-1FB4D.stypo.glif blockDiagonal-1FB4E blockD_iagonal-1FB4E.glif blockDiagonal-1FB4E.stypo blockD_iagonal-1FB4E.stypo.glif blockDiagonal-1FB4F blockD_iagonal-1FB4F.glif blockDiagonal-1FB4F.stypo blockD_iagonal-1FB4F.stypo.glif blockDiagonal-1FB50 blockD_iagonal-1FB50.glif blockDiagonal-1FB50.stypo blockD_iagonal-1FB50.stypo.glif blockDiagonal-1FB51 blockD_iagonal-1FB51.glif blockDiagonal-1FB51.stypo blockD_iagonal-1FB51.stypo.glif blockDiagonal-1FB52 blockD_iagonal-1FB52.glif blockDiagonal-1FB52.stypo blockD_iagonal-1FB52.stypo.glif blockDiagonal-1FB53 blockD_iagonal-1FB53.glif blockDiagonal-1FB53.stypo blockD_iagonal-1FB53.stypo.glif blockDiagonal-1FB54 blockD_iagonal-1FB54.glif blockDiagonal-1FB54.stypo blockD_iagonal-1FB54.stypo.glif blockDiagonal-1FB55 blockD_iagonal-1FB55.glif blockDiagonal-1FB55.stypo blockD_iagonal-1FB55.stypo.glif blockDiagonal-1FB56 blockD_iagonal-1FB56.glif blockDiagonal-1FB56.stypo blockD_iagonal-1FB56.stypo.glif blockDiagonal-1FB57 blockD_iagonal-1FB57.glif blockDiagonal-1FB57.stypo blockD_iagonal-1FB57.stypo.glif blockDiagonal-1FB58 blockD_iagonal-1FB58.glif blockDiagonal-1FB58.stypo blockD_iagonal-1FB58.stypo.glif blockDiagonal-1FB59 blockD_iagonal-1FB59.glif blockDiagonal-1FB59.stypo blockD_iagonal-1FB59.stypo.glif blockDiagonal-1FB5A blockD_iagonal-1FB5A.glif blockDiagonal-1FB5A.stypo blockD_iagonal-1FB5A.stypo.glif blockDiagonal-1FB5B blockD_iagonal-1FB5B.glif blockDiagonal-1FB5B.stypo blockD_iagonal-1FB5B.stypo.glif blockDiagonal-1FB5C blockD_iagonal-1FB5C.glif blockDiagonal-1FB5C.stypo blockD_iagonal-1FB5C.stypo.glif blockDiagonal-1FB5D blockD_iagonal-1FB5D.glif blockDiagonal-1FB5D.stypo blockD_iagonal-1FB5D.stypo.glif blockDiagonal-1FB5E blockD_iagonal-1FB5E.glif blockDiagonal-1FB5E.stypo blockD_iagonal-1FB5E.stypo.glif blockDiagonal-1FB5F blockD_iagonal-1FB5F.glif blockDiagonal-1FB5F.stypo blockD_iagonal-1FB5F.stypo.glif blockDiagonal-1FB60 blockD_iagonal-1FB60.glif blockDiagonal-1FB60.stypo blockD_iagonal-1FB60.stypo.glif blockDiagonal-1FB61 blockD_iagonal-1FB61.glif blockDiagonal-1FB61.stypo blockD_iagonal-1FB61.stypo.glif blockDiagonal-1FB62 blockD_iagonal-1FB62.glif blockDiagonal-1FB62.stypo blockD_iagonal-1FB62.stypo.glif blockDiagonal-1FB63 blockD_iagonal-1FB63.glif blockDiagonal-1FB63.stypo blockD_iagonal-1FB63.stypo.glif blockDiagonal-1FB64 blockD_iagonal-1FB64.glif blockDiagonal-1FB64.stypo blockD_iagonal-1FB64.stypo.glif blockDiagonal-1FB65 blockD_iagonal-1FB65.glif blockDiagonal-1FB65.stypo blockD_iagonal-1FB65.stypo.glif blockDiagonal-1FB66 blockD_iagonal-1FB66.glif blockDiagonal-1FB66.stypo blockD_iagonal-1FB66.stypo.glif blockDiagonal-1FB67 blockD_iagonal-1FB67.glif blockDiagonal-1FB67.stypo blockD_iagonal-1FB67.stypo.glif blockOctant-1 blockO_ctant-1.glif blockOctant-1.stypo blockO_ctant-1.stypo.glif blockOctant-2 blockO_ctant-2.glif blockOctant-2.stypo blockO_ctant-2.stypo.glif blockOctant-12 blockO_ctant-12.glif blockOctant-12.stypo blockO_ctant-12.stypo.glif blockOctant-3 blockO_ctant-3.glif blockOctant-3.stypo blockO_ctant-3.stypo.glif blockOctant-23 blockO_ctant-23.glif blockOctant-23.stypo blockO_ctant-23.stypo.glif blockOctant-123 blockO_ctant-123.glif blockOctant-123.stypo blockO_ctant-123.stypo.glif blockOctant-4 blockO_ctant-4.glif blockOctant-4.stypo blockO_ctant-4.stypo.glif blockOctant-14 blockO_ctant-14.glif blockOctant-14.stypo blockO_ctant-14.stypo.glif blockOctant-124 blockO_ctant-124.glif blockOctant-124.stypo blockO_ctant-124.stypo.glif blockOctant-34 blockO_ctant-34.glif blockOctant-34.stypo blockO_ctant-34.stypo.glif blockOctant-134 blockO_ctant-134.glif blockOctant-134.stypo blockO_ctant-134.stypo.glif blockOctant-234 blockO_ctant-234.glif blockOctant-234.stypo blockO_ctant-234.stypo.glif blockOctant-5 blockO_ctant-5.glif blockOctant-5.stypo blockO_ctant-5.stypo.glif blockOctant-15 blockO_ctant-15.glif blockOctant-15.stypo blockO_ctant-15.stypo.glif blockOctant-25 blockO_ctant-25.glif blockOctant-25.stypo blockO_ctant-25.stypo.glif blockOctant-125 blockO_ctant-125.glif blockOctant-125.stypo blockO_ctant-125.stypo.glif blockOctant-135 blockO_ctant-135.glif blockOctant-135.stypo blockO_ctant-135.stypo.glif blockOctant-235 blockO_ctant-235.glif blockOctant-235.stypo blockO_ctant-235.stypo.glif blockOctant-1235 blockO_ctant-1235.glif blockOctant-1235.stypo blockO_ctant-1235.stypo.glif blockOctant-45 blockO_ctant-45.glif blockOctant-45.stypo blockO_ctant-45.stypo.glif blockOctant-145 blockO_ctant-145.glif blockOctant-145.stypo blockO_ctant-145.stypo.glif blockOctant-245 blockO_ctant-245.glif blockOctant-245.stypo blockO_ctant-245.stypo.glif blockOctant-1245 blockO_ctant-1245.glif blockOctant-1245.stypo blockO_ctant-1245.stypo.glif blockOctant-345 blockO_ctant-345.glif blockOctant-345.stypo blockO_ctant-345.stypo.glif blockOctant-1345 blockO_ctant-1345.glif blockOctant-1345.stypo blockO_ctant-1345.stypo.glif blockOctant-2345 blockO_ctant-2345.glif blockOctant-2345.stypo blockO_ctant-2345.stypo.glif blockOctant-12345 blockO_ctant-12345.glif blockOctant-12345.stypo blockO_ctant-12345.stypo.glif blockOctant-6 blockO_ctant-6.glif blockOctant-6.stypo blockO_ctant-6.stypo.glif blockOctant-16 blockO_ctant-16.glif blockOctant-16.stypo blockO_ctant-16.stypo.glif blockOctant-26 blockO_ctant-26.glif blockOctant-26.stypo blockO_ctant-26.stypo.glif blockOctant-126 blockO_ctant-126.glif blockOctant-126.stypo blockO_ctant-126.stypo.glif blockOctant-36 blockO_ctant-36.glif blockOctant-36.stypo blockO_ctant-36.stypo.glif blockOctant-136 blockO_ctant-136.glif blockOctant-136.stypo blockO_ctant-136.stypo.glif blockOctant-236 blockO_ctant-236.glif blockOctant-236.stypo blockO_ctant-236.stypo.glif blockOctant-1236 blockO_ctant-1236.glif blockOctant-1236.stypo blockO_ctant-1236.stypo.glif blockOctant-146 blockO_ctant-146.glif blockOctant-146.stypo blockO_ctant-146.stypo.glif blockOctant-246 blockO_ctant-246.glif blockOctant-246.stypo blockO_ctant-246.stypo.glif blockOctant-1246 blockO_ctant-1246.glif blockOctant-1246.stypo blockO_ctant-1246.stypo.glif blockOctant-346 blockO_ctant-346.glif blockOctant-346.stypo blockO_ctant-346.stypo.glif blockOctant-1346 blockO_ctant-1346.glif blockOctant-1346.stypo blockO_ctant-1346.stypo.glif blockOctant-2346 blockO_ctant-2346.glif blockOctant-2346.stypo blockO_ctant-2346.stypo.glif blockOctant-12346 blockO_ctant-12346.glif blockOctant-12346.stypo blockO_ctant-12346.stypo.glif blockOctant-56 blockO_ctant-56.glif blockOctant-56.stypo blockO_ctant-56.stypo.glif blockOctant-156 blockO_ctant-156.glif blockOctant-156.stypo blockO_ctant-156.stypo.glif blockOctant-256 blockO_ctant-256.glif blockOctant-256.stypo blockO_ctant-256.stypo.glif blockOctant-1256 blockO_ctant-1256.glif blockOctant-1256.stypo blockO_ctant-1256.stypo.glif blockOctant-356 blockO_ctant-356.glif blockOctant-356.stypo blockO_ctant-356.stypo.glif blockOctant-1356 blockO_ctant-1356.glif blockOctant-1356.stypo blockO_ctant-1356.stypo.glif blockOctant-2356 blockO_ctant-2356.glif blockOctant-2356.stypo blockO_ctant-2356.stypo.glif blockOctant-12356 blockO_ctant-12356.glif blockOctant-12356.stypo blockO_ctant-12356.stypo.glif blockOctant-456 blockO_ctant-456.glif blockOctant-456.stypo blockO_ctant-456.stypo.glif blockOctant-1456 blockO_ctant-1456.glif blockOctant-1456.stypo blockO_ctant-1456.stypo.glif blockOctant-2456 blockO_ctant-2456.glif blockOctant-2456.stypo blockO_ctant-2456.stypo.glif blockOctant-12456 blockO_ctant-12456.glif blockOctant-12456.stypo blockO_ctant-12456.stypo.glif blockOctant-3456 blockO_ctant-3456.glif blockOctant-3456.stypo blockO_ctant-3456.stypo.glif blockOctant-13456 blockO_ctant-13456.glif blockOctant-13456.stypo blockO_ctant-13456.stypo.glif blockOctant-23456 blockO_ctant-23456.glif blockOctant-23456.stypo blockO_ctant-23456.stypo.glif blockOctant-123456 blockO_ctant-123456.glif blockOctant-123456.stypo blockO_ctant-123456.stypo.glif blockOctant-7 blockO_ctant-7.glif blockOctant-7.stypo blockO_ctant-7.stypo.glif blockOctant-17 blockO_ctant-17.glif blockOctant-17.stypo blockO_ctant-17.stypo.glif blockOctant-27 blockO_ctant-27.glif blockOctant-27.stypo blockO_ctant-27.stypo.glif blockOctant-127 blockO_ctant-127.glif blockOctant-127.stypo blockO_ctant-127.stypo.glif blockOctant-37 blockO_ctant-37.glif blockOctant-37.stypo blockO_ctant-37.stypo.glif blockOctant-137 blockO_ctant-137.glif blockOctant-137.stypo blockO_ctant-137.stypo.glif blockOctant-237 blockO_ctant-237.glif blockOctant-237.stypo blockO_ctant-237.stypo.glif blockOctant-1237 blockO_ctant-1237.glif blockOctant-1237.stypo blockO_ctant-1237.stypo.glif blockOctant-47 blockO_ctant-47.glif blockOctant-47.stypo blockO_ctant-47.stypo.glif blockOctant-147 blockO_ctant-147.glif blockOctant-147.stypo blockO_ctant-147.stypo.glif blockOctant-247 blockO_ctant-247.glif blockOctant-247.stypo blockO_ctant-247.stypo.glif blockOctant-1247 blockO_ctant-1247.glif blockOctant-1247.stypo blockO_ctant-1247.stypo.glif blockOctant-347 blockO_ctant-347.glif blockOctant-347.stypo blockO_ctant-347.stypo.glif blockOctant-1347 blockO_ctant-1347.glif blockOctant-1347.stypo blockO_ctant-1347.stypo.glif blockOctant-2347 blockO_ctant-2347.glif blockOctant-2347.stypo blockO_ctant-2347.stypo.glif blockOctant-12347 blockO_ctant-12347.glif blockOctant-12347.stypo blockO_ctant-12347.stypo.glif blockOctant-157 blockO_ctant-157.glif blockOctant-157.stypo blockO_ctant-157.stypo.glif blockOctant-257 blockO_ctant-257.glif blockOctant-257.stypo blockO_ctant-257.stypo.glif blockOctant-1257 blockO_ctant-1257.glif blockOctant-1257.stypo blockO_ctant-1257.stypo.glif blockOctant-357 blockO_ctant-357.glif blockOctant-357.stypo blockO_ctant-357.stypo.glif blockOctant-2357 blockO_ctant-2357.glif blockOctant-2357.stypo blockO_ctant-2357.stypo.glif blockOctant-12357 blockO_ctant-12357.glif blockOctant-12357.stypo blockO_ctant-12357.stypo.glif blockOctant-457 blockO_ctant-457.glif blockOctant-457.stypo blockO_ctant-457.stypo.glif blockOctant-1457 blockO_ctant-1457.glif blockOctant-1457.stypo blockO_ctant-1457.stypo.glif blockOctant-12457 blockO_ctant-12457.glif blockOctant-12457.stypo blockO_ctant-12457.stypo.glif blockOctant-3457 blockO_ctant-3457.glif blockOctant-3457.stypo blockO_ctant-3457.stypo.glif blockOctant-13457 blockO_ctant-13457.glif blockOctant-13457.stypo blockO_ctant-13457.stypo.glif blockOctant-23457 blockO_ctant-23457.glif blockOctant-23457.stypo blockO_ctant-23457.stypo.glif blockOctant-67 blockO_ctant-67.glif blockOctant-67.stypo blockO_ctant-67.stypo.glif blockOctant-167 blockO_ctant-167.glif blockOctant-167.stypo blockO_ctant-167.stypo.glif blockOctant-267 blockO_ctant-267.glif blockOctant-267.stypo blockO_ctant-267.stypo.glif blockOctant-1267 blockO_ctant-1267.glif blockOctant-1267.stypo blockO_ctant-1267.stypo.glif blockOctant-367 blockO_ctant-367.glif blockOctant-367.stypo blockO_ctant-367.stypo.glif blockOctant-1367 blockO_ctant-1367.glif blockOctant-1367.stypo blockO_ctant-1367.stypo.glif blockOctant-2367 blockO_ctant-2367.glif blockOctant-2367.stypo blockO_ctant-2367.stypo.glif blockOctant-12367 blockO_ctant-12367.glif blockOctant-12367.stypo blockO_ctant-12367.stypo.glif blockOctant-467 blockO_ctant-467.glif blockOctant-467.stypo blockO_ctant-467.stypo.glif blockOctant-1467 blockO_ctant-1467.glif blockOctant-1467.stypo blockO_ctant-1467.stypo.glif blockOctant-2467 blockO_ctant-2467.glif blockOctant-2467.stypo blockO_ctant-2467.stypo.glif blockOctant-12467 blockO_ctant-12467.glif blockOctant-12467.stypo blockO_ctant-12467.stypo.glif blockOctant-3467 blockO_ctant-3467.glif blockOctant-3467.stypo blockO_ctant-3467.stypo.glif blockOctant-13467 blockO_ctant-13467.glif blockOctant-13467.stypo blockO_ctant-13467.stypo.glif blockOctant-23467 blockO_ctant-23467.glif blockOctant-23467.stypo blockO_ctant-23467.stypo.glif blockOctant-123467 blockO_ctant-123467.glif blockOctant-123467.stypo blockO_ctant-123467.stypo.glif blockOctant-567 blockO_ctant-567.glif blockOctant-567.stypo blockO_ctant-567.stypo.glif blockOctant-1567 blockO_ctant-1567.glif blockOctant-1567.stypo blockO_ctant-1567.stypo.glif blockOctant-2567 blockO_ctant-2567.glif blockOctant-2567.stypo blockO_ctant-2567.stypo.glif blockOctant-12567 blockO_ctant-12567.glif blockOctant-12567.stypo blockO_ctant-12567.stypo.glif blockOctant-3567 blockO_ctant-3567.glif blockOctant-3567.stypo blockO_ctant-3567.stypo.glif blockOctant-13567 blockO_ctant-13567.glif blockOctant-13567.stypo blockO_ctant-13567.stypo.glif blockOctant-23567 blockO_ctant-23567.glif blockOctant-23567.stypo blockO_ctant-23567.stypo.glif blockOctant-123567 blockO_ctant-123567.glif blockOctant-123567.stypo blockO_ctant-123567.stypo.glif blockOctant-4567 blockO_ctant-4567.glif blockOctant-4567.stypo blockO_ctant-4567.stypo.glif blockOctant-14567 blockO_ctant-14567.glif blockOctant-14567.stypo blockO_ctant-14567.stypo.glif blockOctant-24567 blockO_ctant-24567.glif blockOctant-24567.stypo blockO_ctant-24567.stypo.glif blockOctant-124567 blockO_ctant-124567.glif blockOctant-124567.stypo blockO_ctant-124567.stypo.glif blockOctant-34567 blockO_ctant-34567.glif blockOctant-34567.stypo blockO_ctant-34567.stypo.glif blockOctant-134567 blockO_ctant-134567.glif blockOctant-134567.stypo blockO_ctant-134567.stypo.glif blockOctant-234567 blockO_ctant-234567.glif blockOctant-234567.stypo blockO_ctant-234567.stypo.glif blockOctant-1234567 blockO_ctant-1234567.glif blockOctant-1234567.stypo blockO_ctant-1234567.stypo.glif blockOctant-8 blockO_ctant-8.glif blockOctant-8.stypo blockO_ctant-8.stypo.glif blockOctant-18 blockO_ctant-18.glif blockOctant-18.stypo blockO_ctant-18.stypo.glif blockOctant-28 blockO_ctant-28.glif blockOctant-28.stypo blockO_ctant-28.stypo.glif blockOctant-128 blockO_ctant-128.glif blockOctant-128.stypo blockO_ctant-128.stypo.glif blockOctant-38 blockO_ctant-38.glif blockOctant-38.stypo blockO_ctant-38.stypo.glif blockOctant-138 blockO_ctant-138.glif blockOctant-138.stypo blockO_ctant-138.stypo.glif blockOctant-238 blockO_ctant-238.glif blockOctant-238.stypo blockO_ctant-238.stypo.glif blockOctant-1238 blockO_ctant-1238.glif blockOctant-1238.stypo blockO_ctant-1238.stypo.glif blockOctant-48 blockO_ctant-48.glif blockOctant-48.stypo blockO_ctant-48.stypo.glif blockOctant-148 blockO_ctant-148.glif blockOctant-148.stypo blockO_ctant-148.stypo.glif blockOctant-248 blockO_ctant-248.glif blockOctant-248.stypo blockO_ctant-248.stypo.glif blockOctant-1248 blockO_ctant-1248.glif blockOctant-1248.stypo blockO_ctant-1248.stypo.glif blockOctant-348 blockO_ctant-348.glif blockOctant-348.stypo blockO_ctant-348.stypo.glif blockOctant-1348 blockO_ctant-1348.glif blockOctant-1348.stypo blockO_ctant-1348.stypo.glif blockOctant-2348 blockO_ctant-2348.glif blockOctant-2348.stypo blockO_ctant-2348.stypo.glif blockOctant-12348 blockO_ctant-12348.glif blockOctant-12348.stypo blockO_ctant-12348.stypo.glif blockOctant-58 blockO_ctant-58.glif blockOctant-58.stypo blockO_ctant-58.stypo.glif blockOctant-158 blockO_ctant-158.glif blockOctant-158.stypo blockO_ctant-158.stypo.glif blockOctant-258 blockO_ctant-258.glif blockOctant-258.stypo blockO_ctant-258.stypo.glif blockOctant-1258 blockO_ctant-1258.glif blockOctant-1258.stypo blockO_ctant-1258.stypo.glif blockOctant-358 blockO_ctant-358.glif blockOctant-358.stypo blockO_ctant-358.stypo.glif blockOctant-1358 blockO_ctant-1358.glif blockOctant-1358.stypo blockO_ctant-1358.stypo.glif blockOctant-2358 blockO_ctant-2358.glif blockOctant-2358.stypo blockO_ctant-2358.stypo.glif blockOctant-12358 blockO_ctant-12358.glif blockOctant-12358.stypo blockO_ctant-12358.stypo.glif blockOctant-458 blockO_ctant-458.glif blockOctant-458.stypo blockO_ctant-458.stypo.glif blockOctant-1458 blockO_ctant-1458.glif blockOctant-1458.stypo blockO_ctant-1458.stypo.glif blockOctant-2458 blockO_ctant-2458.glif blockOctant-2458.stypo blockO_ctant-2458.stypo.glif blockOctant-12458 blockO_ctant-12458.glif blockOctant-12458.stypo blockO_ctant-12458.stypo.glif blockOctant-3458 blockO_ctant-3458.glif blockOctant-3458.stypo blockO_ctant-3458.stypo.glif blockOctant-13458 blockO_ctant-13458.glif blockOctant-13458.stypo blockO_ctant-13458.stypo.glif blockOctant-23458 blockO_ctant-23458.glif blockOctant-23458.stypo blockO_ctant-23458.stypo.glif blockOctant-123458 blockO_ctant-123458.glif blockOctant-123458.stypo blockO_ctant-123458.stypo.glif blockOctant-168 blockO_ctant-168.glif blockOctant-168.stypo blockO_ctant-168.stypo.glif blockOctant-268 blockO_ctant-268.glif blockOctant-268.stypo blockO_ctant-268.stypo.glif blockOctant-1268 blockO_ctant-1268.glif blockOctant-1268.stypo blockO_ctant-1268.stypo.glif blockOctant-368 blockO_ctant-368.glif blockOctant-368.stypo blockO_ctant-368.stypo.glif blockOctant-2368 blockO_ctant-2368.glif blockOctant-2368.stypo blockO_ctant-2368.stypo.glif blockOctant-12368 blockO_ctant-12368.glif blockOctant-12368.stypo blockO_ctant-12368.stypo.glif blockOctant-468 blockO_ctant-468.glif blockOctant-468.stypo blockO_ctant-468.stypo.glif blockOctant-1468 blockO_ctant-1468.glif blockOctant-1468.stypo blockO_ctant-1468.stypo.glif blockOctant-12468 blockO_ctant-12468.glif blockOctant-12468.stypo blockO_ctant-12468.stypo.glif blockOctant-3468 blockO_ctant-3468.glif blockOctant-3468.stypo blockO_ctant-3468.stypo.glif blockOctant-13468 blockO_ctant-13468.glif blockOctant-13468.stypo blockO_ctant-13468.stypo.glif blockOctant-23468 blockO_ctant-23468.glif blockOctant-23468.stypo blockO_ctant-23468.stypo.glif blockOctant-568 blockO_ctant-568.glif blockOctant-568.stypo blockO_ctant-568.stypo.glif blockOctant-1568 blockO_ctant-1568.glif blockOctant-1568.stypo blockO_ctant-1568.stypo.glif blockOctant-2568 blockO_ctant-2568.glif blockOctant-2568.stypo blockO_ctant-2568.stypo.glif blockOctant-12568 blockO_ctant-12568.glif blockOctant-12568.stypo blockO_ctant-12568.stypo.glif blockOctant-3568 blockO_ctant-3568.glif blockOctant-3568.stypo blockO_ctant-3568.stypo.glif blockOctant-13568 blockO_ctant-13568.glif blockOctant-13568.stypo blockO_ctant-13568.stypo.glif blockOctant-23568 blockO_ctant-23568.glif blockOctant-23568.stypo blockO_ctant-23568.stypo.glif blockOctant-123568 blockO_ctant-123568.glif blockOctant-123568.stypo blockO_ctant-123568.stypo.glif blockOctant-4568 blockO_ctant-4568.glif blockOctant-4568.stypo blockO_ctant-4568.stypo.glif blockOctant-14568 blockO_ctant-14568.glif blockOctant-14568.stypo blockO_ctant-14568.stypo.glif blockOctant-24568 blockO_ctant-24568.glif blockOctant-24568.stypo blockO_ctant-24568.stypo.glif blockOctant-124568 blockO_ctant-124568.glif blockOctant-124568.stypo blockO_ctant-124568.stypo.glif blockOctant-34568 blockO_ctant-34568.glif blockOctant-34568.stypo blockO_ctant-34568.stypo.glif blockOctant-134568 blockO_ctant-134568.glif blockOctant-134568.stypo blockO_ctant-134568.stypo.glif blockOctant-234568 blockO_ctant-234568.glif blockOctant-234568.stypo blockO_ctant-234568.stypo.glif blockOctant-1234568 blockO_ctant-1234568.glif blockOctant-1234568.stypo blockO_ctant-1234568.stypo.glif blockOctant-178 blockO_ctant-178.glif blockOctant-178.stypo blockO_ctant-178.stypo.glif blockOctant-278 blockO_ctant-278.glif blockOctant-278.stypo blockO_ctant-278.stypo.glif blockOctant-1278 blockO_ctant-1278.glif blockOctant-1278.stypo blockO_ctant-1278.stypo.glif blockOctant-378 blockO_ctant-378.glif blockOctant-378.stypo blockO_ctant-378.stypo.glif blockOctant-1378 blockO_ctant-1378.glif blockOctant-1378.stypo blockO_ctant-1378.stypo.glif blockOctant-2378 blockO_ctant-2378.glif blockOctant-2378.stypo blockO_ctant-2378.stypo.glif blockOctant-12378 blockO_ctant-12378.glif blockOctant-12378.stypo blockO_ctant-12378.stypo.glif blockOctant-478 blockO_ctant-478.glif blockOctant-478.stypo blockO_ctant-478.stypo.glif blockOctant-1478 blockO_ctant-1478.glif blockOctant-1478.stypo blockO_ctant-1478.stypo.glif blockOctant-2478 blockO_ctant-2478.glif blockOctant-2478.stypo blockO_ctant-2478.stypo.glif blockOctant-12478 blockO_ctant-12478.glif blockOctant-12478.stypo blockO_ctant-12478.stypo.glif blockOctant-3478 blockO_ctant-3478.glif blockOctant-3478.stypo blockO_ctant-3478.stypo.glif blockOctant-13478 blockO_ctant-13478.glif blockOctant-13478.stypo blockO_ctant-13478.stypo.glif blockOctant-23478 blockO_ctant-23478.glif blockOctant-23478.stypo blockO_ctant-23478.stypo.glif blockOctant-123478 blockO_ctant-123478.glif blockOctant-123478.stypo blockO_ctant-123478.stypo.glif blockOctant-578 blockO_ctant-578.glif blockOctant-578.stypo blockO_ctant-578.stypo.glif blockOctant-1578 blockO_ctant-1578.glif blockOctant-1578.stypo blockO_ctant-1578.stypo.glif blockOctant-2578 blockO_ctant-2578.glif blockOctant-2578.stypo blockO_ctant-2578.stypo.glif blockOctant-12578 blockO_ctant-12578.glif blockOctant-12578.stypo blockO_ctant-12578.stypo.glif blockOctant-3578 blockO_ctant-3578.glif blockOctant-3578.stypo blockO_ctant-3578.stypo.glif blockOctant-13578 blockO_ctant-13578.glif blockOctant-13578.stypo blockO_ctant-13578.stypo.glif blockOctant-23578 blockO_ctant-23578.glif blockOctant-23578.stypo blockO_ctant-23578.stypo.glif blockOctant-123578 blockO_ctant-123578.glif blockOctant-123578.stypo blockO_ctant-123578.stypo.glif blockOctant-4578 blockO_ctant-4578.glif blockOctant-4578.stypo blockO_ctant-4578.stypo.glif blockOctant-14578 blockO_ctant-14578.glif blockOctant-14578.stypo blockO_ctant-14578.stypo.glif blockOctant-24578 blockO_ctant-24578.glif blockOctant-24578.stypo blockO_ctant-24578.stypo.glif blockOctant-124578 blockO_ctant-124578.glif blockOctant-124578.stypo blockO_ctant-124578.stypo.glif blockOctant-34578 blockO_ctant-34578.glif blockOctant-34578.stypo blockO_ctant-34578.stypo.glif blockOctant-134578 blockO_ctant-134578.glif blockOctant-134578.stypo blockO_ctant-134578.stypo.glif blockOctant-234578 blockO_ctant-234578.glif blockOctant-234578.stypo blockO_ctant-234578.stypo.glif blockOctant-1234578 blockO_ctant-1234578.glif blockOctant-1234578.stypo blockO_ctant-1234578.stypo.glif blockOctant-678 blockO_ctant-678.glif blockOctant-678.stypo blockO_ctant-678.stypo.glif blockOctant-1678 blockO_ctant-1678.glif blockOctant-1678.stypo blockO_ctant-1678.stypo.glif blockOctant-2678 blockO_ctant-2678.glif blockOctant-2678.stypo blockO_ctant-2678.stypo.glif blockOctant-12678 blockO_ctant-12678.glif blockOctant-12678.stypo blockO_ctant-12678.stypo.glif blockOctant-3678 blockO_ctant-3678.glif blockOctant-3678.stypo blockO_ctant-3678.stypo.glif blockOctant-13678 blockO_ctant-13678.glif blockOctant-13678.stypo blockO_ctant-13678.stypo.glif blockOctant-23678 blockO_ctant-23678.glif blockOctant-23678.stypo blockO_ctant-23678.stypo.glif blockOctant-123678 blockO_ctant-123678.glif blockOctant-123678.stypo blockO_ctant-123678.stypo.glif blockOctant-4678 blockO_ctant-4678.glif blockOctant-4678.stypo blockO_ctant-4678.stypo.glif blockOctant-14678 blockO_ctant-14678.glif blockOctant-14678.stypo blockO_ctant-14678.stypo.glif blockOctant-24678 blockO_ctant-24678.glif blockOctant-24678.stypo blockO_ctant-24678.stypo.glif blockOctant-124678 blockO_ctant-124678.glif blockOctant-124678.stypo blockO_ctant-124678.stypo.glif blockOctant-34678 blockO_ctant-34678.glif blockOctant-34678.stypo blockO_ctant-34678.stypo.glif blockOctant-134678 blockO_ctant-134678.glif blockOctant-134678.stypo blockO_ctant-134678.stypo.glif blockOctant-234678 blockO_ctant-234678.glif blockOctant-234678.stypo blockO_ctant-234678.stypo.glif blockOctant-1234678 blockO_ctant-1234678.glif blockOctant-1234678.stypo blockO_ctant-1234678.stypo.glif blockOctant-15678 blockO_ctant-15678.glif blockOctant-15678.stypo blockO_ctant-15678.stypo.glif blockOctant-25678 blockO_ctant-25678.glif blockOctant-25678.stypo blockO_ctant-25678.stypo.glif blockOctant-125678 blockO_ctant-125678.glif blockOctant-125678.stypo blockO_ctant-125678.stypo.glif blockOctant-35678 blockO_ctant-35678.glif blockOctant-35678.stypo blockO_ctant-35678.stypo.glif blockOctant-235678 blockO_ctant-235678.glif blockOctant-235678.stypo blockO_ctant-235678.stypo.glif blockOctant-1235678 blockO_ctant-1235678.glif blockOctant-1235678.stypo blockO_ctant-1235678.stypo.glif blockOctant-45678 blockO_ctant-45678.glif blockOctant-45678.stypo blockO_ctant-45678.stypo.glif blockOctant-145678 blockO_ctant-145678.glif blockOctant-145678.stypo blockO_ctant-145678.stypo.glif blockOctant-1245678 blockO_ctant-1245678.glif blockOctant-1245678.stypo blockO_ctant-1245678.stypo.glif blockOctant-1345678 blockO_ctant-1345678.glif blockOctant-1345678.stypo blockO_ctant-1345678.stypo.glif blockOctant-2345678 blockO_ctant-2345678.glif blockOctant-2345678.stypo blockO_ctant-2345678.stypo.glif blockSedecimant-1 blockS_edecimant-1.glif blockSedecimant-1.stypo blockS_edecimant-1.stypo.glif blockSedecimant-2 blockS_edecimant-2.glif blockSedecimant-2.stypo blockS_edecimant-2.stypo.glif blockSedecimant-3 blockS_edecimant-3.glif blockSedecimant-3.stypo blockS_edecimant-3.stypo.glif blockSedecimant-4 blockS_edecimant-4.glif blockSedecimant-4.stypo blockS_edecimant-4.stypo.glif blockSedecimant-5 blockS_edecimant-5.glif blockSedecimant-5.stypo blockS_edecimant-5.stypo.glif blockSedecimant-6 blockS_edecimant-6.glif blockSedecimant-6.stypo blockS_edecimant-6.stypo.glif blockSedecimant-7 blockS_edecimant-7.glif blockSedecimant-7.stypo blockS_edecimant-7.stypo.glif blockSedecimant-8 blockS_edecimant-8.glif blockSedecimant-8.stypo blockS_edecimant-8.stypo.glif blockSedecimant-9 blockS_edecimant-9.glif blockSedecimant-9.stypo blockS_edecimant-9.stypo.glif blockSedecimant-A blockS_edecimant-A.glif blockSedecimant-A.stypo blockS_edecimant-A.stypo.glif blockSedecimant-B blockS_edecimant-B.glif blockSedecimant-B.stypo blockS_edecimant-B.stypo.glif blockSedecimant-C blockS_edecimant-C.glif blockSedecimant-C.stypo blockS_edecimant-C.stypo.glif blockSedecimant-D blockS_edecimant-D.glif blockSedecimant-D.stypo blockS_edecimant-D.stypo.glif blockSedecimant-E blockS_edecimant-E.glif blockSedecimant-E.stypo blockS_edecimant-E.stypo.glif blockSedecimant-F blockS_edecimant-F.glif blockSedecimant-F.stypo blockS_edecimant-F.stypo.glif blockSedecimant-G blockS_edecimant-G.glif blockSedecimant-G.stypo blockS_edecimant-G.stypo.glif blockSedecimant-EFG blockS_edecimant-EFG.glif blockSedecimant-EFG.stypo blockS_edecimant-EFG.stypo.glif blockSedecimant-DEF blockS_edecimant-DEF.glif blockSedecimant-DEF.stypo blockS_edecimant-DEF.stypo.glif blockSedecimant-9D blockS_edecimant-9D.glif blockSedecimant-9D.stypo blockS_edecimant-9D.stypo.glif blockSedecimant-59D blockS_edecimant-59D.glif blockSedecimant-59D.stypo blockS_edecimant-59D.stypo.glif blockSedecimant-159 blockS_edecimant-159.glif blockSedecimant-159.stypo blockS_edecimant-159.stypo.glif blockSedecimant-15 blockS_edecimant-15.glif blockSedecimant-15.stypo blockS_edecimant-15.stypo.glif blockSedecimant-123 blockS_edecimant-123.glif blockSedecimant-123.stypo blockS_edecimant-123.stypo.glif blockSedecimant-234 blockS_edecimant-234.glif blockSedecimant-234.stypo blockS_edecimant-234.stypo.glif blockSedecimant-48 blockS_edecimant-48.glif blockSedecimant-48.stypo blockS_edecimant-48.stypo.glif blockSedecimant-48C blockS_edecimant-48C.glif blockSedecimant-48C.stypo blockS_edecimant-48C.stypo.glif blockSedecimant-8CG blockS_edecimant-8CG.glif blockSedecimant-8CG.stypo blockS_edecimant-8CG.stypo.glif blockSedecimant-CG blockS_edecimant-CG.glif blockSedecimant-CG.stypo blockS_edecimant-CG.stypo.glif verticalOneEighthBlock-2 verticalO_neE_ighthB_lock-2.glif verticalOneEighthBlock-2.stypo verticalO_neE_ighthB_lock-2.stypo.glif verticalOneEighthBlock-3 verticalO_neE_ighthB_lock-3.glif verticalOneEighthBlock-3.stypo verticalO_neE_ighthB_lock-3.stypo.glif verticalOneEighthBlock-4 verticalO_neE_ighthB_lock-4.glif verticalOneEighthBlock-4.stypo verticalO_neE_ighthB_lock-4.stypo.glif verticalOneEighthBlock-5 verticalO_neE_ighthB_lock-5.glif verticalOneEighthBlock-5.stypo verticalO_neE_ighthB_lock-5.stypo.glif verticalOneEighthBlock-6 verticalO_neE_ighthB_lock-6.glif verticalOneEighthBlock-6.stypo verticalO_neE_ighthB_lock-6.stypo.glif verticalOneEighthBlock-7 verticalO_neE_ighthB_lock-7.glif verticalOneEighthBlock-7.stypo verticalO_neE_ighthB_lock-7.stypo.glif horizontalOneEightBlock-2 horizontalO_neE_ightB_lock-2.glif horizontalOneEightBlock-2.stypo horizontalO_neE_ightB_lock-2.stypo.glif horizontalOneEightBlock-3 horizontalO_neE_ightB_lock-3.glif horizontalOneEightBlock-3.stypo horizontalO_neE_ightB_lock-3.stypo.glif horizontalOneEightBlock-4 horizontalO_neE_ightB_lock-4.glif horizontalOneEightBlock-4.stypo horizontalO_neE_ightB_lock-4.stypo.glif horizontalOneEightBlock-5 horizontalO_neE_ightB_lock-5.glif horizontalOneEightBlock-5.stypo horizontalO_neE_ightB_lock-5.stypo.glif horizontalOneEightBlock-6 horizontalO_neE_ightB_lock-6.glif horizontalOneEightBlock-6.stypo horizontalO_neE_ightB_lock-6.stypo.glif horizontalOneEightBlock-7 horizontalO_neE_ightB_lock-7.glif horizontalOneEightBlock-7.stypo horizontalO_neE_ightB_lock-7.stypo.glif leftAndLowerOneEightBlock leftA_ndL_owerO_neE_ightB_lock.glif leftAndLowerOneEightBlock.stypo leftA_ndL_owerO_neE_ightB_lock.stypo.glif leftAndUpperOneEightBlock leftA_ndU_pperO_neE_ightB_lock.glif leftAndUpperOneEightBlock.stypo leftA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndUpperOneEightBlock rightA_ndU_pperO_neE_ightB_lock.glif rightAndUpperOneEightBlock.stypo rightA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndLowerOneEightBlock rightA_ndL_owerO_neE_ightB_lock.glif rightAndLowerOneEightBlock.stypo rightA_ndL_owerO_neE_ightB_lock.stypo.glif upperAndLowerOneEightBlock upperA_ndL_owerO_neE_ightB_lock.glif upperAndLowerOneEightBlock.stypo upperA_ndL_owerO_neE_ightB_lock.stypo.glif upperThreeEighthsBlock upperT_hreeE_ighthsB_lock.glif upperThreeEighthsBlock.stypo upperT_hreeE_ighthsB_lock.stypo.glif upperFiveEighthsBlock upperF_iveE_ighthsB_lock.glif upperFiveEighthsBlock.stypo upperF_iveE_ighthsB_lock.stypo.glif upperSevenEighthsBlock upperS_evenE_ighthsB_lock.glif upperSevenEighthsBlock.stypo upperS_evenE_ighthsB_lock.stypo.glif rightOneQuarterBlock rightO_neQ_uarterB_lock.glif rightOneQuarterBlock.stypo rightO_neQ_uarterB_lock.stypo.glif rightThreeEighthsBlock rightT_hreeE_ighthsB_lock.glif rightThreeEighthsBlock.stypo rightT_hreeE_ighthsB_lock.stypo.glif rightFiveEighthsBlock rightF_iveE_ighthsB_lock.glif rightFiveEighthsBlock.stypo rightF_iveE_ighthsB_lock.stypo.glif rightThreeQuartersBlock rightT_hreeQ_uartersB_lock.glif rightThreeQuartersBlock.stypo rightT_hreeQ_uartersB_lock.stypo.glif rightSevenEighthsBlock rightS_evenE_ighthsB_lock.glif rightSevenEighthsBlock.stypo rightS_evenE_ighthsB_lock.stypo.glif leftTwoThirdsBlock leftT_woT_hirdsB_lock.glif leftTwoThirdsBlock.stypo leftT_woT_hirdsB_lock.stypo.glif leftOneThirdBlock leftO_neT_hirdB_lock.glif leftOneThirdBlock.stypo leftO_neT_hirdB_lock.stypo.glif heavyHorizontalFill heavyH_orizontalF_ill.glif heavyHorizontalFill.stypo heavyH_orizontalF_ill.stypo.glif blockSeparatedQuadrant-1 blockS_eparatedQ_uadrant-1.glif blockSeparatedQuadrant-1.stypo blockS_eparatedQ_uadrant-1.stypo.glif blockSeparatedQuadrant-2 blockS_eparatedQ_uadrant-2.glif blockSeparatedQuadrant-2.stypo blockS_eparatedQ_uadrant-2.stypo.glif blockSeparatedQuadrant-12 blockS_eparatedQ_uadrant-12.glif blockSeparatedQuadrant-12.stypo blockS_eparatedQ_uadrant-12.stypo.glif blockSeparatedQuadrant-3 blockS_eparatedQ_uadrant-3.glif blockSeparatedQuadrant-3.stypo blockS_eparatedQ_uadrant-3.stypo.glif blockSeparatedQuadrant-13 blockS_eparatedQ_uadrant-13.glif blockSeparatedQuadrant-13.stypo blockS_eparatedQ_uadrant-13.stypo.glif blockSeparatedQuadrant-23 blockS_eparatedQ_uadrant-23.glif blockSeparatedQuadrant-23.stypo blockS_eparatedQ_uadrant-23.stypo.glif blockSeparatedQuadrant-123 blockS_eparatedQ_uadrant-123.glif blockSeparatedQuadrant-123.stypo blockS_eparatedQ_uadrant-123.stypo.glif blockSeparatedQuadrant-4 blockS_eparatedQ_uadrant-4.glif blockSeparatedQuadrant-4.stypo blockS_eparatedQ_uadrant-4.stypo.glif blockSeparatedQuadrant-14 blockS_eparatedQ_uadrant-14.glif blockSeparatedQuadrant-14.stypo blockS_eparatedQ_uadrant-14.stypo.glif blockSeparatedQuadrant-24 blockS_eparatedQ_uadrant-24.glif blockSeparatedQuadrant-24.stypo blockS_eparatedQ_uadrant-24.stypo.glif blockSeparatedQuadrant-124 blockS_eparatedQ_uadrant-124.glif blockSeparatedQuadrant-124.stypo blockS_eparatedQ_uadrant-124.stypo.glif blockSeparatedQuadrant-34 blockS_eparatedQ_uadrant-34.glif blockSeparatedQuadrant-34.stypo blockS_eparatedQ_uadrant-34.stypo.glif blockSeparatedQuadrant-134 blockS_eparatedQ_uadrant-134.glif blockSeparatedQuadrant-134.stypo blockS_eparatedQ_uadrant-134.stypo.glif blockSeparatedQuadrant-234 blockS_eparatedQ_uadrant-234.glif blockSeparatedQuadrant-234.stypo blockS_eparatedQ_uadrant-234.stypo.glif blockSeparatedQuadrant-1234 blockS_eparatedQ_uadrant-1234.glif blockSeparatedQuadrant-1234.stypo blockS_eparatedQ_uadrant-1234.stypo.glif blockSeparatedSextant-1 blockS_eparatedS_extant-1.glif blockSeparatedSextant-1.stypo blockS_eparatedS_extant-1.stypo.glif blockSeparatedSextant-2 blockS_eparatedS_extant-2.glif blockSeparatedSextant-2.stypo blockS_eparatedS_extant-2.stypo.glif blockSeparatedSextant-12 blockS_eparatedS_extant-12.glif blockSeparatedSextant-12.stypo blockS_eparatedS_extant-12.stypo.glif blockSeparatedSextant-3 blockS_eparatedS_extant-3.glif blockSeparatedSextant-3.stypo blockS_eparatedS_extant-3.stypo.glif blockSeparatedSextant-13 blockS_eparatedS_extant-13.glif blockSeparatedSextant-13.stypo blockS_eparatedS_extant-13.stypo.glif blockSeparatedSextant-23 blockS_eparatedS_extant-23.glif blockSeparatedSextant-23.stypo blockS_eparatedS_extant-23.stypo.glif blockSeparatedSextant-123 blockS_eparatedS_extant-123.glif blockSeparatedSextant-123.stypo blockS_eparatedS_extant-123.stypo.glif blockSeparatedSextant-4 blockS_eparatedS_extant-4.glif blockSeparatedSextant-4.stypo blockS_eparatedS_extant-4.stypo.glif blockSeparatedSextant-14 blockS_eparatedS_extant-14.glif blockSeparatedSextant-14.stypo blockS_eparatedS_extant-14.stypo.glif blockSeparatedSextant-24 blockS_eparatedS_extant-24.glif blockSeparatedSextant-24.stypo blockS_eparatedS_extant-24.stypo.glif blockSeparatedSextant-124 blockS_eparatedS_extant-124.glif blockSeparatedSextant-124.stypo blockS_eparatedS_extant-124.stypo.glif blockSeparatedSextant-34 blockS_eparatedS_extant-34.glif blockSeparatedSextant-34.stypo blockS_eparatedS_extant-34.stypo.glif blockSeparatedSextant-134 blockS_eparatedS_extant-134.glif blockSeparatedSextant-134.stypo blockS_eparatedS_extant-134.stypo.glif blockSeparatedSextant-234 blockS_eparatedS_extant-234.glif blockSeparatedSextant-234.stypo blockS_eparatedS_extant-234.stypo.glif blockSeparatedSextant-1234 blockS_eparatedS_extant-1234.glif blockSeparatedSextant-1234.stypo blockS_eparatedS_extant-1234.stypo.glif blockSeparatedSextant-5 blockS_eparatedS_extant-5.glif blockSeparatedSextant-5.stypo blockS_eparatedS_extant-5.stypo.glif blockSeparatedSextant-15 blockS_eparatedS_extant-15.glif blockSeparatedSextant-15.stypo blockS_eparatedS_extant-15.stypo.glif blockSeparatedSextant-25 blockS_eparatedS_extant-25.glif blockSeparatedSextant-25.stypo blockS_eparatedS_extant-25.stypo.glif blockSeparatedSextant-125 blockS_eparatedS_extant-125.glif blockSeparatedSextant-125.stypo blockS_eparatedS_extant-125.stypo.glif blockSeparatedSextant-35 blockS_eparatedS_extant-35.glif blockSeparatedSextant-35.stypo blockS_eparatedS_extant-35.stypo.glif blockSeparatedSextant-135 blockS_eparatedS_extant-135.glif blockSeparatedSextant-135.stypo blockS_eparatedS_extant-135.stypo.glif blockSeparatedSextant-235 blockS_eparatedS_extant-235.glif blockSeparatedSextant-235.stypo blockS_eparatedS_extant-235.stypo.glif blockSeparatedSextant-1235 blockS_eparatedS_extant-1235.glif blockSeparatedSextant-1235.stypo blockS_eparatedS_extant-1235.stypo.glif blockSeparatedSextant-45 blockS_eparatedS_extant-45.glif blockSeparatedSextant-45.stypo blockS_eparatedS_extant-45.stypo.glif blockSeparatedSextant-145 blockS_eparatedS_extant-145.glif blockSeparatedSextant-145.stypo blockS_eparatedS_extant-145.stypo.glif blockSeparatedSextant-245 blockS_eparatedS_extant-245.glif blockSeparatedSextant-245.stypo blockS_eparatedS_extant-245.stypo.glif blockSeparatedSextant-1245 blockS_eparatedS_extant-1245.glif blockSeparatedSextant-1245.stypo blockS_eparatedS_extant-1245.stypo.glif blockSeparatedSextant-345 blockS_eparatedS_extant-345.glif blockSeparatedSextant-345.stypo blockS_eparatedS_extant-345.stypo.glif blockSeparatedSextant-1345 blockS_eparatedS_extant-1345.glif blockSeparatedSextant-1345.stypo blockS_eparatedS_extant-1345.stypo.glif blockSeparatedSextant-2345 blockS_eparatedS_extant-2345.glif blockSeparatedSextant-2345.stypo blockS_eparatedS_extant-2345.stypo.glif blockSeparatedSextant-12345 blockS_eparatedS_extant-12345.glif blockSeparatedSextant-12345.stypo blockS_eparatedS_extant-12345.stypo.glif blockSeparatedSextant-6 blockS_eparatedS_extant-6.glif blockSeparatedSextant-6.stypo blockS_eparatedS_extant-6.stypo.glif blockSeparatedSextant-16 blockS_eparatedS_extant-16.glif blockSeparatedSextant-16.stypo blockS_eparatedS_extant-16.stypo.glif blockSeparatedSextant-26 blockS_eparatedS_extant-26.glif blockSeparatedSextant-26.stypo blockS_eparatedS_extant-26.stypo.glif blockSeparatedSextant-126 blockS_eparatedS_extant-126.glif blockSeparatedSextant-126.stypo blockS_eparatedS_extant-126.stypo.glif blockSeparatedSextant-36 blockS_eparatedS_extant-36.glif blockSeparatedSextant-36.stypo blockS_eparatedS_extant-36.stypo.glif blockSeparatedSextant-136 blockS_eparatedS_extant-136.glif blockSeparatedSextant-136.stypo blockS_eparatedS_extant-136.stypo.glif blockSeparatedSextant-236 blockS_eparatedS_extant-236.glif blockSeparatedSextant-236.stypo blockS_eparatedS_extant-236.stypo.glif blockSeparatedSextant-1236 blockS_eparatedS_extant-1236.glif blockSeparatedSextant-1236.stypo blockS_eparatedS_extant-1236.stypo.glif blockSeparatedSextant-46 blockS_eparatedS_extant-46.glif blockSeparatedSextant-46.stypo blockS_eparatedS_extant-46.stypo.glif blockSeparatedSextant-146 blockS_eparatedS_extant-146.glif blockSeparatedSextant-146.stypo blockS_eparatedS_extant-146.stypo.glif blockSeparatedSextant-246 blockS_eparatedS_extant-246.glif blockSeparatedSextant-246.stypo blockS_eparatedS_extant-246.stypo.glif blockSeparatedSextant-1246 blockS_eparatedS_extant-1246.glif blockSeparatedSextant-1246.stypo blockS_eparatedS_extant-1246.stypo.glif blockSeparatedSextant-346 blockS_eparatedS_extant-346.glif blockSeparatedSextant-346.stypo blockS_eparatedS_extant-346.stypo.glif blockSeparatedSextant-1346 blockS_eparatedS_extant-1346.glif blockSeparatedSextant-1346.stypo blockS_eparatedS_extant-1346.stypo.glif blockSeparatedSextant-2346 blockS_eparatedS_extant-2346.glif blockSeparatedSextant-2346.stypo blockS_eparatedS_extant-2346.stypo.glif blockSeparatedSextant-12346 blockS_eparatedS_extant-12346.glif blockSeparatedSextant-12346.stypo blockS_eparatedS_extant-12346.stypo.glif blockSeparatedSextant-56 blockS_eparatedS_extant-56.glif blockSeparatedSextant-56.stypo blockS_eparatedS_extant-56.stypo.glif blockSeparatedSextant-156 blockS_eparatedS_extant-156.glif blockSeparatedSextant-156.stypo blockS_eparatedS_extant-156.stypo.glif blockSeparatedSextant-256 blockS_eparatedS_extant-256.glif blockSeparatedSextant-256.stypo blockS_eparatedS_extant-256.stypo.glif blockSeparatedSextant-1256 blockS_eparatedS_extant-1256.glif blockSeparatedSextant-1256.stypo blockS_eparatedS_extant-1256.stypo.glif blockSeparatedSextant-356 blockS_eparatedS_extant-356.glif blockSeparatedSextant-356.stypo blockS_eparatedS_extant-356.stypo.glif blockSeparatedSextant-1356 blockS_eparatedS_extant-1356.glif blockSeparatedSextant-1356.stypo blockS_eparatedS_extant-1356.stypo.glif blockSeparatedSextant-2356 blockS_eparatedS_extant-2356.glif blockSeparatedSextant-2356.stypo blockS_eparatedS_extant-2356.stypo.glif blockSeparatedSextant-12356 blockS_eparatedS_extant-12356.glif blockSeparatedSextant-12356.stypo blockS_eparatedS_extant-12356.stypo.glif blockSeparatedSextant-456 blockS_eparatedS_extant-456.glif blockSeparatedSextant-456.stypo blockS_eparatedS_extant-456.stypo.glif blockSeparatedSextant-1456 blockS_eparatedS_extant-1456.glif blockSeparatedSextant-1456.stypo blockS_eparatedS_extant-1456.stypo.glif blockSeparatedSextant-2456 blockS_eparatedS_extant-2456.glif blockSeparatedSextant-2456.stypo blockS_eparatedS_extant-2456.stypo.glif blockSeparatedSextant-12456 blockS_eparatedS_extant-12456.glif blockSeparatedSextant-12456.stypo blockS_eparatedS_extant-12456.stypo.glif blockSeparatedSextant-3456 blockS_eparatedS_extant-3456.glif blockSeparatedSextant-3456.stypo blockS_eparatedS_extant-3456.stypo.glif blockSeparatedSextant-13456 blockS_eparatedS_extant-13456.glif blockSeparatedSextant-13456.stypo blockS_eparatedS_extant-13456.stypo.glif blockSeparatedSextant-23456 blockS_eparatedS_extant-23456.glif blockSeparatedSextant-23456.stypo blockS_eparatedS_extant-23456.stypo.glif blockSeparatedSextant-123456 blockS_eparatedS_extant-123456.glif blockSeparatedSextant-123456.stypo blockS_eparatedS_extant-123456.stypo.glif segmentedDigit0 segmentedD_igit0.glif segmentedDigit1 segmentedD_igit1.glif segmentedDigit2 segmentedD_igit2.glif segmentedDigit3 segmentedD_igit3.glif segmentedDigit4 segmentedD_igit4.glif segmentedDigit5 segmentedD_igit5.glif segmentedDigit6 segmentedD_igit6.glif segmentedDigit7 segmentedD_igit7.glif segmentedDigit8 segmentedD_igit8.glif segmentedDigit9 segmentedD_igit9.glif largeType-1CE1A largeT_ype-1CE1A.glif largeType-1CE1A.stypo largeT_ype-1CE1A.stypo.glif largeType-1CE1B largeT_ype-1CE1B.glif largeType-1CE1B.stypo largeT_ype-1CE1B.stypo.glif largeType-1CE1C largeT_ype-1CE1C.glif largeType-1CE1C.stypo largeT_ype-1CE1C.stypo.glif largeType-1CE1D largeT_ype-1CE1D.glif largeType-1CE1D.stypo largeT_ype-1CE1D.stypo.glif largeType-1CE1E largeT_ype-1CE1E.glif largeType-1CE1E.stypo largeT_ype-1CE1E.stypo.glif largeType-1CE1F largeT_ype-1CE1F.glif largeType-1CE1F.stypo largeT_ype-1CE1F.stypo.glif largeType-1CE20 largeT_ype-1CE20.glif largeType-1CE20.stypo largeT_ype-1CE20.stypo.glif largeType-1CE21 largeT_ype-1CE21.glif largeType-1CE21.stypo largeT_ype-1CE21.stypo.glif largeType-1CE22 largeT_ype-1CE22.glif largeType-1CE22.stypo largeT_ype-1CE22.stypo.glif largeType-1CE23 largeT_ype-1CE23.glif largeType-1CE23.stypo largeT_ype-1CE23.stypo.glif largeType-1CE24 largeT_ype-1CE24.glif largeType-1CE24.stypo largeT_ype-1CE24.stypo.glif largeType-1CE25 largeT_ype-1CE25.glif largeType-1CE25.stypo largeT_ype-1CE25.stypo.glif largeType-1CE26 largeT_ype-1CE26.glif largeType-1CE26.stypo largeT_ype-1CE26.stypo.glif largeType-1CE27 largeT_ype-1CE27.glif largeType-1CE27.stypo largeT_ype-1CE27.stypo.glif largeType-1CE28 largeT_ype-1CE28.glif largeType-1CE28.stypo largeT_ype-1CE28.stypo.glif largeType-1CE29 largeT_ype-1CE29.glif largeType-1CE29.stypo largeT_ype-1CE29.stypo.glif largeType-1CE2A largeT_ype-1CE2A.glif largeType-1CE2A.stypo largeT_ype-1CE2A.stypo.glif largeType-1CE2B largeT_ype-1CE2B.glif largeType-1CE2B.stypo largeT_ype-1CE2B.stypo.glif largeType-1CE2C largeT_ype-1CE2C.glif largeType-1CE2C.stypo largeT_ype-1CE2C.stypo.glif largeType-1CE2D largeT_ype-1CE2D.glif largeType-1CE2D.stypo largeT_ype-1CE2D.stypo.glif largeType-1CE2E largeT_ype-1CE2E.glif largeType-1CE2E.stypo largeT_ype-1CE2E.stypo.glif largeType-1CE2F largeT_ype-1CE2F.glif largeType-1CE2F.stypo largeT_ype-1CE2F.stypo.glif largeType-1CE30 largeT_ype-1CE30.glif largeType-1CE30.stypo largeT_ype-1CE30.stypo.glif largeType-1CE31 largeT_ype-1CE31.glif largeType-1CE31.stypo largeT_ype-1CE31.stypo.glif largeType-1CE32 largeT_ype-1CE32.glif largeType-1CE32.stypo largeT_ype-1CE32.stypo.glif largeType-1CE33 largeT_ype-1CE33.glif largeType-1CE33.stypo largeT_ype-1CE33.stypo.glif largeType-1CE34 largeT_ype-1CE34.glif largeType-1CE34.stypo largeT_ype-1CE34.stypo.glif largeType-1CE35 largeT_ype-1CE35.glif largeType-1CE35.stypo largeT_ype-1CE35.stypo.glif largeType-1CE36 largeT_ype-1CE36.glif largeType-1CE36.stypo largeT_ype-1CE36.stypo.glif largeType-1CE37 largeT_ype-1CE37.glif largeType-1CE37.stypo largeT_ype-1CE37.stypo.glif largeType-1CE38 largeT_ype-1CE38.glif largeType-1CE38.stypo largeT_ype-1CE38.stypo.glif largeType-1CE39 largeT_ype-1CE39.glif largeType-1CE39.stypo largeT_ype-1CE39.stypo.glif largeType-1CE3A largeT_ype-1CE3A.glif largeType-1CE3A.stypo largeT_ype-1CE3A.stypo.glif largeType-1CE3B largeT_ype-1CE3B.glif largeType-1CE3B.stypo largeT_ype-1CE3B.stypo.glif largeType-1CE3C largeT_ype-1CE3C.glif largeType-1CE3C.stypo largeT_ype-1CE3C.stypo.glif largeType-1CE3D largeT_ype-1CE3D.glif largeType-1CE3D.stypo largeT_ype-1CE3D.stypo.glif largeType-1CE3E largeT_ype-1CE3E.glif largeType-1CE3E.stypo largeT_ype-1CE3E.stypo.glif largeType-1CE3F largeT_ype-1CE3F.glif largeType-1CE3F.stypo largeT_ype-1CE3F.stypo.glif largeType-1CE40 largeT_ype-1CE40.glif largeType-1CE40.stypo largeT_ype-1CE40.stypo.glif largeType-1CE41 largeT_ype-1CE41.glif largeType-1CE41.stypo largeT_ype-1CE41.stypo.glif largeType-1CE42 largeT_ype-1CE42.glif largeType-1CE42.stypo largeT_ype-1CE42.stypo.glif largeType-1CE43 largeT_ype-1CE43.glif largeType-1CE43.stypo largeT_ype-1CE43.stypo.glif largeType-1CE44 largeT_ype-1CE44.glif largeType-1CE44.stypo largeT_ype-1CE44.stypo.glif largeType-1CE45 largeT_ype-1CE45.glif largeType-1CE45.stypo largeT_ype-1CE45.stypo.glif largeType-1CE46 largeT_ype-1CE46.glif largeType-1CE46.stypo largeT_ype-1CE46.stypo.glif largeType-1CE47 largeT_ype-1CE47.glif largeType-1CE47.stypo largeT_ype-1CE47.stypo.glif largeType-1CE48 largeT_ype-1CE48.glif largeType-1CE48.stypo largeT_ype-1CE48.stypo.glif largeType-1CE49 largeT_ype-1CE49.glif largeType-1CE49.stypo largeT_ype-1CE49.stypo.glif largeType-1CE4A largeT_ype-1CE4A.glif largeType-1CE4A.stypo largeT_ype-1CE4A.stypo.glif largeType-1CE4B largeT_ype-1CE4B.glif largeType-1CE4B.stypo largeT_ype-1CE4B.stypo.glif largeType-1CE4C largeT_ype-1CE4C.glif largeType-1CE4C.stypo largeT_ype-1CE4C.stypo.glif largeType-1CE4D largeT_ype-1CE4D.glif largeType-1CE4D.stypo largeT_ype-1CE4D.stypo.glif largeType-1CE4E largeT_ype-1CE4E.glif largeType-1CE4E.stypo largeT_ype-1CE4E.stypo.glif largeType-1CE4F largeT_ype-1CE4F.glif largeType-1CE4F.stypo largeT_ype-1CE4F.stypo.glif largeType-1CE50 largeT_ype-1CE50.glif largeType-1CE50.stypo largeT_ype-1CE50.stypo.glif ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/copyright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ uni25A6 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/cuberoot-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _cuberoot_fourthroot-ar alignment -1 index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey _cuberoot_fourthroot-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _cuberoot_fourthroot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/currency.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/d.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dad-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dadD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dagesh-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dagger.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/daggerdbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dahal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dahal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelowT_ah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalD_otbelowT_ah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalF_ourdots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalF_ourdots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dal-ar.fina alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dal-ar alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalV_invertedbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dalet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/daletdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/damma-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dammatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dashdownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dateseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dcaron.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dcaron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name d ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dcroat.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name d ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ddahal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ddahal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ddal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ddal-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/de-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/decimalseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/degree.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deleteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/delta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name four.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name one.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name three.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name two.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ uni25A9 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/diamondB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dieresis.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dieresiscomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dieresiscomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dieresiscomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/divide.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/divisionslash.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S com.schriftgestaltung.Glyphs._originalLayerName [600] com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dollar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dong.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dcroat ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotaccent.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dotaccentcomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotaccentcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dotcenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots123678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots124-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots124567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots124568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots124578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots124678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots125-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots125678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots126-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots12678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots127-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots128-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots134-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots134567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots134568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots134578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots134678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots135-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots135678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots136-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots13678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots137-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots138-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots14-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots145-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots14567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots145678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots14568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots14578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots146-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots14678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots147-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots148-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots15-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots156-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots15678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots157-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots158-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots16-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots167-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots1678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots168-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots17-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots178-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots18-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots23678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots24-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots24567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots24568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots24578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots24678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots25-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots25678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots26-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots2678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots27-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots28-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots34-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots34567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots34568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots34578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots34678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots35-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots35678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots36-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots3678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots37-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots38-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots4-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots45-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots4567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots45678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots4568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots4578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots46-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots4678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots47-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots48-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots5-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots56-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots5678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots57-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots58-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots6-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots67-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots68-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots7-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots78-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dots8-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dottedC_ircle.glif ================================================ uni25CC ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dottedS_quare.glif ================================================ uni2B1A ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.comb.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ uni25BE ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downB_lackT_riangle.glif ================================================ triagdn ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ uni25BF ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/downW_hiteT_riangle.glif ================================================ uni25BD ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dtail.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dul-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dyeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/dzhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/e.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ebreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ecircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/edieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/edotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/edotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ef-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ef-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/egrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey eight-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey eight-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name eight-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eight.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eightinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eightsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/el-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ellipsis.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name period alignment -1 index 2 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/em-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/emacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/emdash.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/en-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name M.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endash.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name en-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/endofayah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eng.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/enquiryC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name Q.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name e ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/epsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/epsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/equivalence.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/er-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ereversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/es-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name C.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/esh.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/estimated.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/etatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eth.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/etilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/euro.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/eurocurrency.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name exclam alignment -1 index 1 name exclam ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name exclam alignment -1 index 1 name exclam alignment -1 index 2 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclamdouble.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name exclam alignment -1 index 1 name exclam ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/exclamdown.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ezh.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/f.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fatha-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fathatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otM_ovedbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehD_otless-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fehT_wodotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/filledR_ect.glif ================================================ filledrect ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalkaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalkafdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalmem-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalnun-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalpe-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finalpedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/finaltsadi-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/firsttonechinese.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name macron ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fisheye.glif ================================================ uni25C9 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/five.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name fivesuperior alignment -1 index 1 name eightinferior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fiveeighths.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name fivesuperior alignment -1 index 1 name eightinferior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fiveinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fivesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fl.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/florin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/footnotemarker-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/formF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persian.small01.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdu.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urduinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persian.urdusuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persianbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persiancenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/four.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fourdotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fourdotscenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fourdotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fourdotscenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fourdotscenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fourinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/foursuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fourthroot-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _fourthroot-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey _cuberoot_fourthroot-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _cuberoot_fourthroot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fraction.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/franc.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fullB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fullB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/fullstop-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/g.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey keheh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey keheh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey keheh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafI_nvertedstroke-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafT_wodotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gafsarkashabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gamma-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gamma.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gbreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ge-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/geresh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/germandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gershayim-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghainD_otbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ghestroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ge-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gheupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gimel-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gimeldagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/glottalstop.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/glottalstopmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/glottalstopreversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gravecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gravecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gravetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name gravecomb com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name greater alignment -1 index 1 name greater alignment -1 index 2 name greater ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/greaterequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name G.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/guarani.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name G ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/gueh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/guillemetleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/guillemetright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/guilsinglleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/guilsinglright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/h.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hadescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ha-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hah-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahF_ourbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahH_amzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotstahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotstahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hah-ar.init anchor bottom.dot index 1 name tahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name tahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hahT_wodotsverticalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hamza-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hamzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hbar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name h ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/he-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heartB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/heh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehA_lefabove-ar.init.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehA_lefabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehD_oachashmee-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehV_invertedabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _hehgoalcomma public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _hehgoalcomma public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoal-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hehgoal-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hehgoalH_amzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/het-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamza-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name highhamza-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaA_lef-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaW_aw-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar anchor top index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/highhamzaY_eh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/holam-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/holamhaser-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hookabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ uni2B23 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalF_illS_quare.glif ================================================ uni25A4 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name H.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontalbar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name emdash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horizontallineextension.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name boxLightHorizontal ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/horncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/house.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hryvnia.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hungarumlaut.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hungarumlautcomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hungarumlautcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hungarumlautcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name minus ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/hyphentwo.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hyphen ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/i.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ia-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ibreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/icircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/idieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/idotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/idotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ie-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iegrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/igrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ihookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iigrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ij.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ij_acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb alignment -1 index 1 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/imacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/imacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/increment.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/infinity.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/integral.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/integralbt.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/integraltp.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/intersection.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/inverseB_ullet.glif ================================================ invbullet ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ invcircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/io-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name i ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iota-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iota.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iotadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iotadieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iotatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/itilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iu-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/j.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jdotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeem-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeemT_wodotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/jeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/k.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name keheh-ar.fina alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =kafswash-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.medi.alt.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey kafswash-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kafswash-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey kafswash-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kaiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kappa.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kashida-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kasra-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kasratan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/keheh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_hreedotsupbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kgreenlandic.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/khah-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kip.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name K ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kirghizoe-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kirghizoe-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kirghizyu-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kirghizyu-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/kje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/klinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/l.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.init.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam-ar.medi.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _bar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamB_ar-ar.medi.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam-ar.fina com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _doublebar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamD_oublebar-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsabove-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamT_hreedotsbelow-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamV_above-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.fina.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alef-ar.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_2 index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_2 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzabelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefH_amzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefM_adda-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefM_adda-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefW_asla-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_alefW_asla-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lam_lam_heh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lambdastroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lamed-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lameddagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeC_ircle.glif ================================================ uni25EF ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE20.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE21.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE22.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE23.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE24.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE25.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE26.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE27.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE28.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE29.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE30.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE31.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE32.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE33.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE34.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE35.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE36.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE37.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE38.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE39.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE40.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE41.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE42.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE43.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE44.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE45.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE46.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE47.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE48.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE49.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE50.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lari.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId 8E053A5E-67DA-4970-A6F5-068DBFE5AD21 com.schriftgestaltung.layerOrderInGlyph..notdef 2 com.schriftgestaltung.layerOrderInGlyph.A 2 com.schriftgestaltung.layerOrderInGlyph.A-cy 2 com.schriftgestaltung.layerOrderInGlyph.A.half 2 com.schriftgestaltung.layerOrderInGlyph.AE 2 com.schriftgestaltung.layerOrderInGlyph.AEacute 2 com.schriftgestaltung.layerOrderInGlyph.Aacute 2 com.schriftgestaltung.layerOrderInGlyph.Abreve 2 com.schriftgestaltung.layerOrderInGlyph.Abreveacute 2 com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Abrevegrave 2 com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove 2 com.schriftgestaltung.layerOrderInGlyph.Abrevetilde 2 com.schriftgestaltung.layerOrderInGlyph.Acaron 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Adieresis 2 com.schriftgestaltung.layerOrderInGlyph.Adotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Agrave 2 com.schriftgestaltung.layerOrderInGlyph.Ahookabove 2 com.schriftgestaltung.layerOrderInGlyph.Alpha 2 com.schriftgestaltung.layerOrderInGlyph.Alpha-latin 2 com.schriftgestaltung.layerOrderInGlyph.Alphatonos 2 com.schriftgestaltung.layerOrderInGlyph.Amacron 2 com.schriftgestaltung.layerOrderInGlyph.Aogonek 2 com.schriftgestaltung.layerOrderInGlyph.Aring 2 com.schriftgestaltung.layerOrderInGlyph.Aringacute 2 com.schriftgestaltung.layerOrderInGlyph.Asmall 2 com.schriftgestaltung.layerOrderInGlyph.Astroke 2 com.schriftgestaltung.layerOrderInGlyph.Atilde 2 com.schriftgestaltung.layerOrderInGlyph.B 2 com.schriftgestaltung.layerOrderInGlyph.B.half 2 com.schriftgestaltung.layerOrderInGlyph.Be-cy 2 com.schriftgestaltung.layerOrderInGlyph.Beta 2 com.schriftgestaltung.layerOrderInGlyph.C 2 com.schriftgestaltung.layerOrderInGlyph.C.half 2 com.schriftgestaltung.layerOrderInGlyph.CR 2 com.schriftgestaltung.layerOrderInGlyph.Cacute 2 com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Ccaron 2 com.schriftgestaltung.layerOrderInGlyph.Ccedilla 2 com.schriftgestaltung.layerOrderInGlyph.Ccircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Cdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Che-cy 2 com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Chi 2 com.schriftgestaltung.layerOrderInGlyph.Cstroke 2 com.schriftgestaltung.layerOrderInGlyph.D 2 com.schriftgestaltung.layerOrderInGlyph.D.half 2 com.schriftgestaltung.layerOrderInGlyph.Dafrican 2 com.schriftgestaltung.layerOrderInGlyph.Dcaron 2 com.schriftgestaltung.layerOrderInGlyph.Dcroat 2 com.schriftgestaltung.layerOrderInGlyph.De-cy 2 com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Delta 2 com.schriftgestaltung.layerOrderInGlyph.Dje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Dze-cy 2 com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.E 2 com.schriftgestaltung.layerOrderInGlyph.E-cy 2 com.schriftgestaltung.layerOrderInGlyph.E.half 2 com.schriftgestaltung.layerOrderInGlyph.Eacute 2 com.schriftgestaltung.layerOrderInGlyph.Ebreve 2 com.schriftgestaltung.layerOrderInGlyph.Ecaron 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Edieresis 2 com.schriftgestaltung.layerOrderInGlyph.Edotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Edotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ef-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Egrave 2 com.schriftgestaltung.layerOrderInGlyph.Ehookabove 2 com.schriftgestaltung.layerOrderInGlyph.El-cy 2 com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Em-cy 2 com.schriftgestaltung.layerOrderInGlyph.Emacron 2 com.schriftgestaltung.layerOrderInGlyph.En-cy 2 com.schriftgestaltung.layerOrderInGlyph.Endescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Eng 2 com.schriftgestaltung.layerOrderInGlyph.Eogonek 2 com.schriftgestaltung.layerOrderInGlyph.Eopen 2 com.schriftgestaltung.layerOrderInGlyph.Epsilon 2 com.schriftgestaltung.layerOrderInGlyph.Epsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.Er-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ereversed 2 com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy 2 com.schriftgestaltung.layerOrderInGlyph.Es-cy 2 com.schriftgestaltung.layerOrderInGlyph.Esh 2 com.schriftgestaltung.layerOrderInGlyph.Eta 2 com.schriftgestaltung.layerOrderInGlyph.Etatonos 2 com.schriftgestaltung.layerOrderInGlyph.Eth 2 com.schriftgestaltung.layerOrderInGlyph.Etilde 2 com.schriftgestaltung.layerOrderInGlyph.Ezh 2 com.schriftgestaltung.layerOrderInGlyph.F 2 com.schriftgestaltung.layerOrderInGlyph.F.half 2 com.schriftgestaltung.layerOrderInGlyph.Fhook 2 com.schriftgestaltung.layerOrderInGlyph.G 2 com.schriftgestaltung.layerOrderInGlyph.G.half 2 com.schriftgestaltung.layerOrderInGlyph.Gamma 2 com.schriftgestaltung.layerOrderInGlyph.Gammaafrican 2 com.schriftgestaltung.layerOrderInGlyph.Gbreve 2 com.schriftgestaltung.layerOrderInGlyph.Gcaron 2 com.schriftgestaltung.layerOrderInGlyph.Gcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Gdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ge-cy 2 com.schriftgestaltung.layerOrderInGlyph.Germandbls 2 com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gsmall 2 com.schriftgestaltung.layerOrderInGlyph.Gstroke 2 com.schriftgestaltung.layerOrderInGlyph.H 2 com.schriftgestaltung.layerOrderInGlyph.H.half 2 com.schriftgestaltung.layerOrderInGlyph.Ha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hbar 2 com.schriftgestaltung.layerOrderInGlyph.Hcaron 2 com.schriftgestaltung.layerOrderInGlyph.Hcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Hdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.I 2 com.schriftgestaltung.layerOrderInGlyph.I-cy 2 com.schriftgestaltung.layerOrderInGlyph.I.half 2 com.schriftgestaltung.layerOrderInGlyph.IJ 2 com.schriftgestaltung.layerOrderInGlyph.IJ_acute 2 com.schriftgestaltung.layerOrderInGlyph.Ia-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iacute 2 com.schriftgestaltung.layerOrderInGlyph.Ibreve 2 com.schriftgestaltung.layerOrderInGlyph.Icircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Idieresis 2 com.schriftgestaltung.layerOrderInGlyph.Idotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Idotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ie-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.Igrave 2 com.schriftgestaltung.layerOrderInGlyph.Ihookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ii-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iishort-cy 2 com.schriftgestaltung.layerOrderInGlyph.Imacron 2 com.schriftgestaltung.layerOrderInGlyph.Imacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.Io-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iogonek 2 com.schriftgestaltung.layerOrderInGlyph.Iota 2 com.schriftgestaltung.layerOrderInGlyph.Iotaafrican 2 com.schriftgestaltung.layerOrderInGlyph.Iotadieresis 2 com.schriftgestaltung.layerOrderInGlyph.Iotatonos 2 com.schriftgestaltung.layerOrderInGlyph.Ismall 2 com.schriftgestaltung.layerOrderInGlyph.Itilde 2 com.schriftgestaltung.layerOrderInGlyph.Iu-cy 2 com.schriftgestaltung.layerOrderInGlyph.J 2 com.schriftgestaltung.layerOrderInGlyph.Jacute 2 com.schriftgestaltung.layerOrderInGlyph.Jcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Je-cy 2 com.schriftgestaltung.layerOrderInGlyph.K 2 com.schriftgestaltung.layerOrderInGlyph.K.half 2 com.schriftgestaltung.layerOrderInGlyph.Ka-cy 2 com.schriftgestaltung.layerOrderInGlyph.Kacute 2 com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.KaiSymbol 2 com.schriftgestaltung.layerOrderInGlyph.Kappa 2 com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Kdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Kje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Klinebelow 2 com.schriftgestaltung.layerOrderInGlyph.L 2 com.schriftgestaltung.layerOrderInGlyph.L.half 2 com.schriftgestaltung.layerOrderInGlyph.LIG 2 com.schriftgestaltung.layerOrderInGlyph.Lacute 2 com.schriftgestaltung.layerOrderInGlyph.Lambda 2 com.schriftgestaltung.layerOrderInGlyph.Lbar 2 com.schriftgestaltung.layerOrderInGlyph.Lcaron 2 com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ldot 2 com.schriftgestaltung.layerOrderInGlyph.Ldotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Lje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Llinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde 2 com.schriftgestaltung.layerOrderInGlyph.Lslash 2 com.schriftgestaltung.layerOrderInGlyph.Lsmall 2 com.schriftgestaltung.layerOrderInGlyph.M 2 com.schriftgestaltung.layerOrderInGlyph.M.half 2 com.schriftgestaltung.layerOrderInGlyph.Mu 2 com.schriftgestaltung.layerOrderInGlyph.N 2 com.schriftgestaltung.layerOrderInGlyph.N.half 2 com.schriftgestaltung.layerOrderInGlyph.Nacute 2 com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Ncaron 2 com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Nhookleft 2 com.schriftgestaltung.layerOrderInGlyph.Nje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Nlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Ntilde 2 com.schriftgestaltung.layerOrderInGlyph.Nu 2 com.schriftgestaltung.layerOrderInGlyph.O 2 com.schriftgestaltung.layerOrderInGlyph.O-cy 2 com.schriftgestaltung.layerOrderInGlyph.O.half 2 com.schriftgestaltung.layerOrderInGlyph.OE 2 com.schriftgestaltung.layerOrderInGlyph.Oacute 2 com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Obarred-cy 2 com.schriftgestaltung.layerOrderInGlyph.Obreve 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Odieresis 2 com.schriftgestaltung.layerOrderInGlyph.Odotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ograve 2 com.schriftgestaltung.layerOrderInGlyph.Ohm 2 com.schriftgestaltung.layerOrderInGlyph.Ohookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ohorn 2 com.schriftgestaltung.layerOrderInGlyph.Ohornacute 2 com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ohorngrave 2 com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ohorntilde 2 com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.Omacron 2 com.schriftgestaltung.layerOrderInGlyph.Omacronacute 2 com.schriftgestaltung.layerOrderInGlyph.Omacrongrave 2 com.schriftgestaltung.layerOrderInGlyph.Omega 2 com.schriftgestaltung.layerOrderInGlyph.Omegatonos 2 com.schriftgestaltung.layerOrderInGlyph.Omicron 2 com.schriftgestaltung.layerOrderInGlyph.Omicrontonos 2 com.schriftgestaltung.layerOrderInGlyph.Oogonek 2 com.schriftgestaltung.layerOrderInGlyph.Oopen 2 com.schriftgestaltung.layerOrderInGlyph.Oslash 2 com.schriftgestaltung.layerOrderInGlyph.Oslashacute 2 com.schriftgestaltung.layerOrderInGlyph.Otilde 2 com.schriftgestaltung.layerOrderInGlyph.P 2 com.schriftgestaltung.layerOrderInGlyph.P.half 2 com.schriftgestaltung.layerOrderInGlyph.Palochka-cy 2 com.schriftgestaltung.layerOrderInGlyph.Pe-cy 2 com.schriftgestaltung.layerOrderInGlyph.Phi 2 com.schriftgestaltung.layerOrderInGlyph.Pi 2 com.schriftgestaltung.layerOrderInGlyph.Psi 2 com.schriftgestaltung.layerOrderInGlyph.Q 2 com.schriftgestaltung.layerOrderInGlyph.Q.half 2 com.schriftgestaltung.layerOrderInGlyph.R 2 com.schriftgestaltung.layerOrderInGlyph.R.half 2 com.schriftgestaltung.layerOrderInGlyph.Racute 2 com.schriftgestaltung.layerOrderInGlyph.Rcaron 2 com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Rdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Rho 2 com.schriftgestaltung.layerOrderInGlyph.S 2 com.schriftgestaltung.layerOrderInGlyph.S.half 2 com.schriftgestaltung.layerOrderInGlyph.Sacute 2 com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Scaron 2 com.schriftgestaltung.layerOrderInGlyph.Scedilla 2 com.schriftgestaltung.layerOrderInGlyph.Schwa 2 com.schriftgestaltung.layerOrderInGlyph.Schwa-cy 2 com.schriftgestaltung.layerOrderInGlyph.Scircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Scommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Sdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Sha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Shcha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Shha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Sigma 2 com.schriftgestaltung.layerOrderInGlyph.Softsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.T 2 com.schriftgestaltung.layerOrderInGlyph.T.half 2 com.schriftgestaltung.layerOrderInGlyph.Tau 2 com.schriftgestaltung.layerOrderInGlyph.Tbar 2 com.schriftgestaltung.layerOrderInGlyph.Tcaron 2 com.schriftgestaltung.layerOrderInGlyph.Tcedilla 2 com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke 2 com.schriftgestaltung.layerOrderInGlyph.Te-cy 2 com.schriftgestaltung.layerOrderInGlyph.Theta 2 com.schriftgestaltung.layerOrderInGlyph.Thorn 2 com.schriftgestaltung.layerOrderInGlyph.Tlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Tse-cy 2 com.schriftgestaltung.layerOrderInGlyph.Tshe-cy 2 com.schriftgestaltung.layerOrderInGlyph.U 2 com.schriftgestaltung.layerOrderInGlyph.U-cy 2 com.schriftgestaltung.layerOrderInGlyph.U.half 2 com.schriftgestaltung.layerOrderInGlyph.Uacute 2 com.schriftgestaltung.layerOrderInGlyph.Ubreve 2 com.schriftgestaltung.layerOrderInGlyph.Ucircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Udieresis 2 com.schriftgestaltung.layerOrderInGlyph.Udotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ugrave 2 com.schriftgestaltung.layerOrderInGlyph.Uhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Uhorn 2 com.schriftgestaltung.layerOrderInGlyph.Uhornacute 2 com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Uhorngrave 2 com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Uhorntilde 2 com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.Umacron 2 com.schriftgestaltung.layerOrderInGlyph.Umacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.Uogonek 2 com.schriftgestaltung.layerOrderInGlyph.Upsilon 2 com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican 2 com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis 2 com.schriftgestaltung.layerOrderInGlyph.Upsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.Uring 2 com.schriftgestaltung.layerOrderInGlyph.Ushort-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.Utilde 2 com.schriftgestaltung.layerOrderInGlyph.V 2 com.schriftgestaltung.layerOrderInGlyph.V.half 2 com.schriftgestaltung.layerOrderInGlyph.Ve-cy 2 com.schriftgestaltung.layerOrderInGlyph.Vhook 2 com.schriftgestaltung.layerOrderInGlyph.Vturned 2 com.schriftgestaltung.layerOrderInGlyph.W 2 com.schriftgestaltung.layerOrderInGlyph.Wacute 2 com.schriftgestaltung.layerOrderInGlyph.Wcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Wdieresis 2 com.schriftgestaltung.layerOrderInGlyph.Wgrave 2 com.schriftgestaltung.layerOrderInGlyph.X 2 com.schriftgestaltung.layerOrderInGlyph.X.half 2 com.schriftgestaltung.layerOrderInGlyph.Xi 2 com.schriftgestaltung.layerOrderInGlyph.Y 2 com.schriftgestaltung.layerOrderInGlyph.Y.half 2 com.schriftgestaltung.layerOrderInGlyph.Yacute 2 com.schriftgestaltung.layerOrderInGlyph.Ycircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ydieresis 2 com.schriftgestaltung.layerOrderInGlyph.Ydotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Yeru-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ygrave 2 com.schriftgestaltung.layerOrderInGlyph.Yhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Yi-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ymacron 2 com.schriftgestaltung.layerOrderInGlyph.Ytilde 2 com.schriftgestaltung.layerOrderInGlyph.Z 2 com.schriftgestaltung.layerOrderInGlyph.Zacute 2 com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Zcaron 2 com.schriftgestaltung.layerOrderInGlyph.Zdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ze-cy 2 com.schriftgestaltung.layerOrderInGlyph.Zeta 2 com.schriftgestaltung.layerOrderInGlyph.Zhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.short.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefFathatan-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefHamzaabove-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph._alefHamzabelow-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph._alefMadda-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph._alefThreeabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefTwoabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefWasla-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzaabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzabelow-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._alefabove 2 com.schriftgestaltung.layerOrderInGlyph._bar 2 com.schriftgestaltung.layerOrderInGlyph._cuberoot_fourthroot-ar 2 com.schriftgestaltung.layerOrderInGlyph._damma-ar 2 com.schriftgestaltung.layerOrderInGlyph._dot-ar 2 com.schriftgestaltung.layerOrderInGlyph._dotVInvertedabove 2 com.schriftgestaltung.layerOrderInGlyph._dotVabove 2 com.schriftgestaltung.layerOrderInGlyph._dots.horz.below 2 com.schriftgestaltung.layerOrderInGlyph._doublebar 2 com.schriftgestaltung.layerOrderInGlyph._fatha-ar 2 com.schriftgestaltung.layerOrderInGlyph._four-persian.small01 2 com.schriftgestaltung.layerOrderInGlyph._fourdotscenter-ar 2 com.schriftgestaltung.layerOrderInGlyph._fourthroot-ar 2 com.schriftgestaltung.layerOrderInGlyph._hamzasmall-ar 2 com.schriftgestaltung.layerOrderInGlyph._hamzawavy 2 com.schriftgestaltung.layerOrderInGlyph._hehgoalcomma 2 com.schriftgestaltung.layerOrderInGlyph._highhamzaAlef-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._invertedstroke 2 com.schriftgestaltung.layerOrderInGlyph._onedotstah 2 com.schriftgestaltung.layerOrderInGlyph._ringArabic 2 com.schriftgestaltung.layerOrderInGlyph._stroke 2 com.schriftgestaltung.layerOrderInGlyph._tahabove 2 com.schriftgestaltung.layerOrderInGlyph._tahabovesmall 2 com.schriftgestaltung.layerOrderInGlyph._threedots-ar 2 com.schriftgestaltung.layerOrderInGlyph._twodotshorizontal-ar 2 com.schriftgestaltung.layerOrderInGlyph._twodotstah 2 com.schriftgestaltung.layerOrderInGlyph._twodotsverticalabove-ar 2 com.schriftgestaltung.layerOrderInGlyph._vabove 2 com.schriftgestaltung.layerOrderInGlyph._vbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph._vinvertedbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar 2 com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.a 2 com.schriftgestaltung.layerOrderInGlyph.a-cy 2 com.schriftgestaltung.layerOrderInGlyph.aacute 2 com.schriftgestaltung.layerOrderInGlyph.abreve 2 com.schriftgestaltung.layerOrderInGlyph.abreveacute 2 com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow 2 com.schriftgestaltung.layerOrderInGlyph.abrevegrave 2 com.schriftgestaltung.layerOrderInGlyph.abrevehookabove 2 com.schriftgestaltung.layerOrderInGlyph.abrevetilde 2 com.schriftgestaltung.layerOrderInGlyph.acaron 2 com.schriftgestaltung.layerOrderInGlyph.acircumflex 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.acircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl 2 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.acute 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.acutetonecomb 2 com.schriftgestaltung.layerOrderInGlyph.adieresis 2 com.schriftgestaltung.layerOrderInGlyph.adotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ae 2 com.schriftgestaltung.layerOrderInGlyph.ae-ar 1 com.schriftgestaltung.layerOrderInGlyph.ae-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.aeacute 2 com.schriftgestaltung.layerOrderInGlyph.afghani-ar 1 com.schriftgestaltung.layerOrderInGlyph.agrave 2 com.schriftgestaltung.layerOrderInGlyph.ahookabove 2 com.schriftgestaltung.layerOrderInGlyph.ain-ar 2 com.schriftgestaltung.layerOrderInGlyph.ain-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.ain-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.ain-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar 2 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.alt 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alef-ar.short 2 com.schriftgestaltung.layerOrderInGlyph.alef-hb 1 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.rlig 2 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alefabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.alefdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.alefpatah-hb 1 com.schriftgestaltung.layerOrderInGlyph.alefqamats-hb 1 com.schriftgestaltung.layerOrderInGlyph.allah-ar 1 com.schriftgestaltung.layerOrderInGlyph.alpha 2 com.schriftgestaltung.layerOrderInGlyph.alpha-latin 2 com.schriftgestaltung.layerOrderInGlyph.alphatonos 2 com.schriftgestaltung.layerOrderInGlyph.amacron 2 com.schriftgestaltung.layerOrderInGlyph.ampersand 2 com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga 2 com.schriftgestaltung.layerOrderInGlyph.anoteleia 2 com.schriftgestaltung.layerOrderInGlyph.aogonek 2 com.schriftgestaltung.layerOrderInGlyph.apostrophemod 2 com.schriftgestaltung.layerOrderInGlyph.approxequal 2 com.schriftgestaltung.layerOrderInGlyph.aring 2 com.schriftgestaltung.layerOrderInGlyph.aringacute 2 com.schriftgestaltung.layerOrderInGlyph.asciicircum 2 com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk 2 com.schriftgestaltung.layerOrderInGlyph.asterisk-ar 2 com.schriftgestaltung.layerOrderInGlyph.asteriskArt-ar 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.at 2 com.schriftgestaltung.layerOrderInGlyph.atilde 2 com.schriftgestaltung.layerOrderInGlyph.ayin-hb 1 com.schriftgestaltung.layerOrderInGlyph.b 2 com.schriftgestaltung.layerOrderInGlyph.backslash 2 com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga 2 com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.backspaceControl 2 com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.baht 4 com.schriftgestaltung.layerOrderInGlyph.bar 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.be-cy 2 com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB 2 com.schriftgestaltung.layerOrderInGlyph.beeh-ar 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.beh-ar 2 com.schriftgestaltung.layerOrderInGlyph.beh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.beh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.beh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.beh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar 2 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.bellControl 2 com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.bet-hb 1 com.schriftgestaltung.layerOrderInGlyph.beta 2 com.schriftgestaltung.layerOrderInGlyph.betdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.bitcoin 2 com.schriftgestaltung.layerOrderInGlyph.blackCircle 2 com.schriftgestaltung.layerOrderInGlyph.blackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackHexagon 2 com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle 2 com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackParallelogram 2 com.schriftgestaltung.layerOrderInGlyph.blackPentagon 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace 2 com.schriftgestaltung.layerOrderInGlyph.blackSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect 2 com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.blank 2 com.schriftgestaltung.layerOrderInGlyph.blank-braille 2 com.schriftgestaltung.layerOrderInGlyph.blankSymbol 2 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDown 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUp 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.braceleft 2 com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.braceright 2 com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga 2 com.schriftgestaltung.layerOrderInGlyph.bracketleft 2 com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bracketright 2 com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga 2 com.schriftgestaltung.layerOrderInGlyph.breve 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.brokenbar 2 com.schriftgestaltung.layerOrderInGlyph.bullet 2 com.schriftgestaltung.layerOrderInGlyph.bulletoperator 2 com.schriftgestaltung.layerOrderInGlyph.bullseye 2 com.schriftgestaltung.layerOrderInGlyph.c 2 com.schriftgestaltung.layerOrderInGlyph.cacute 2 com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.cancelControl 2 com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.careof 2 com.schriftgestaltung.layerOrderInGlyph.caron 2 com.schriftgestaltung.layerOrderInGlyph.caroncomb 2 com.schriftgestaltung.layerOrderInGlyph.caroncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl 2 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.ccaron 2 com.schriftgestaltung.layerOrderInGlyph.ccedilla 2 com.schriftgestaltung.layerOrderInGlyph.ccircumflex 2 com.schriftgestaltung.layerOrderInGlyph.cdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.cedi 2 com.schriftgestaltung.layerOrderInGlyph.cedilla 2 com.schriftgestaltung.layerOrderInGlyph.cedillacomb 2 com.schriftgestaltung.layerOrderInGlyph.cent 2 com.schriftgestaltung.layerOrderInGlyph.che-cy 2 com.schriftgestaltung.layerOrderInGlyph.checkmark 2 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.chi 2 com.schriftgestaltung.layerOrderInGlyph.circumflex 2 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb 2 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.colon 2 com.schriftgestaltung.layerOrderInGlyph.colon.center 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.colonsign 2 com.schriftgestaltung.layerOrderInGlyph.colontriangularmod 2 com.schriftgestaltung.layerOrderInGlyph.comma 2 com.schriftgestaltung.layerOrderInGlyph.comma-ar 2 com.schriftgestaltung.layerOrderInGlyph.commaabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb 2 com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb 2 com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.commaturnedmod 2 com.schriftgestaltung.layerOrderInGlyph.copyright 2 com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.cuberoot-ar 1 com.schriftgestaltung.layerOrderInGlyph.currency 2 com.schriftgestaltung.layerOrderInGlyph.d 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.dad-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.dagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.dagger 2 com.schriftgestaltung.layerOrderInGlyph.daggerdbl 2 com.schriftgestaltung.layerOrderInGlyph.dahal-ar 1 com.schriftgestaltung.layerOrderInGlyph.dahal-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dal-ar 1 com.schriftgestaltung.layerOrderInGlyph.dal-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dalet-hb 1 com.schriftgestaltung.layerOrderInGlyph.daletdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.damma-ar 2 com.schriftgestaltung.layerOrderInGlyph.dammatan-ar 2 com.schriftgestaltung.layerOrderInGlyph.dashdownArrow 2 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl 2 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.dateseparator-ar 1 com.schriftgestaltung.layerOrderInGlyph.dcaron 2 com.schriftgestaltung.layerOrderInGlyph.dcaron.alt 2 com.schriftgestaltung.layerOrderInGlyph.dcroat 2 com.schriftgestaltung.layerOrderInGlyph.ddahal-ar 1 com.schriftgestaltung.layerOrderInGlyph.ddahal-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ddal-ar 2 com.schriftgestaltung.layerOrderInGlyph.ddal-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.de-cy 2 com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.decimalseparator-ar 2 com.schriftgestaltung.layerOrderInGlyph.degree 2 com.schriftgestaltung.layerOrderInGlyph.deleteControl 2 com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.delta 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.dieresis 2 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb 2 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case 2 com.schriftgestaltung.layerOrderInGlyph.dieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.divide 2 com.schriftgestaltung.layerOrderInGlyph.divisionslash 2 com.schriftgestaltung.layerOrderInGlyph.dje-cy 2 com.schriftgestaltung.layerOrderInGlyph.dollar 4 com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.dong 2 com.schriftgestaltung.layerOrderInGlyph.dotabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.dotaccent 2 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb 2 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.dotbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.dotcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.dots1-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1235-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1236-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1237-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1238-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1245-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1246-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1247-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1248-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots125-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1256-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots125678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1257-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1258-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots126-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1267-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1268-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots127-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1278-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots128-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots135-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots135678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots136-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots137-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots138-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots145-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots145678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots146-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots147-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots148-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots15-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots156-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots15678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots157-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots158-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots16-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots167-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots168-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots17-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots178-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots18-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots235-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots235678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots236-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots237-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots238-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots245-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots245678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots246-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots247-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots248-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots25-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots256-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots25678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots257-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots258-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots26-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots267-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots268-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots27-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots278-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots28-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots35-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots35678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots36-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots37-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots38-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots45-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots45678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots46-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots47-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots48-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots5-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots56-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots5678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots57-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots58-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots6-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots67-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots68-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots7-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots78-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots8-braille 2 com.schriftgestaltung.layerOrderInGlyph.dottedCircle 2 com.schriftgestaltung.layerOrderInGlyph.dottedSquare 2 com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar 2 com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar.comb 2 com.schriftgestaltung.layerOrderInGlyph.downArrow 2 com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow 2 com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.dtail 2 com.schriftgestaltung.layerOrderInGlyph.dul-ar 1 com.schriftgestaltung.layerOrderInGlyph.dul-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar 1 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.dze-cy 2 com.schriftgestaltung.layerOrderInGlyph.dzhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.e 2 com.schriftgestaltung.layerOrderInGlyph.e-ar 1 com.schriftgestaltung.layerOrderInGlyph.e-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.e-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.e-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.e-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.e-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.e-cy 2 com.schriftgestaltung.layerOrderInGlyph.eacute 2 com.schriftgestaltung.layerOrderInGlyph.ebreve 2 com.schriftgestaltung.layerOrderInGlyph.ecaron 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.edieresis 2 com.schriftgestaltung.layerOrderInGlyph.edotaccent 2 com.schriftgestaltung.layerOrderInGlyph.edotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ef-cy 2 com.schriftgestaltung.layerOrderInGlyph.ef-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.egrave 2 com.schriftgestaltung.layerOrderInGlyph.ehookabove 2 com.schriftgestaltung.layerOrderInGlyph.eight 2 com.schriftgestaltung.layerOrderInGlyph.eight-ar 2 com.schriftgestaltung.layerOrderInGlyph.eight-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.eight-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.eight-persian 2 com.schriftgestaltung.layerOrderInGlyph.eight-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.eight-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.eight.dnom 2 com.schriftgestaltung.layerOrderInGlyph.eight.numr 2 com.schriftgestaltung.layerOrderInGlyph.eightinferior 2 com.schriftgestaltung.layerOrderInGlyph.eightsuperior 2 com.schriftgestaltung.layerOrderInGlyph.el-cy 2 com.schriftgestaltung.layerOrderInGlyph.el-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.ellipsis 2 com.schriftgestaltung.layerOrderInGlyph.em-cy 2 com.schriftgestaltung.layerOrderInGlyph.emacron 2 com.schriftgestaltung.layerOrderInGlyph.emdash 2 com.schriftgestaltung.layerOrderInGlyph.en-cy 2 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endash 2 com.schriftgestaltung.layerOrderInGlyph.endescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.endofayah-ar 1 com.schriftgestaltung.layerOrderInGlyph.eng 2 com.schriftgestaltung.layerOrderInGlyph.enquiryControl 2 com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.eogonek 2 com.schriftgestaltung.layerOrderInGlyph.eopen 2 com.schriftgestaltung.layerOrderInGlyph.epsilon 2 com.schriftgestaltung.layerOrderInGlyph.epsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.equal 2 com.schriftgestaltung.layerOrderInGlyph.equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.equivalence 2 com.schriftgestaltung.layerOrderInGlyph.er-cy 2 com.schriftgestaltung.layerOrderInGlyph.ereversed-cy 2 com.schriftgestaltung.layerOrderInGlyph.es-cy 2 com.schriftgestaltung.layerOrderInGlyph.escapeControl 2 com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.esh 2 com.schriftgestaltung.layerOrderInGlyph.estimated 2 com.schriftgestaltung.layerOrderInGlyph.eta 2 com.schriftgestaltung.layerOrderInGlyph.etatonos 2 com.schriftgestaltung.layerOrderInGlyph.eth 2 com.schriftgestaltung.layerOrderInGlyph.etilde 2 com.schriftgestaltung.layerOrderInGlyph.eturned 2 com.schriftgestaltung.layerOrderInGlyph.euro 2 com.schriftgestaltung.layerOrderInGlyph.eurocurrency 2 com.schriftgestaltung.layerOrderInGlyph.exclam 2 com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclamdouble 2 com.schriftgestaltung.layerOrderInGlyph.exclamdown 2 com.schriftgestaltung.layerOrderInGlyph.ezh 2 com.schriftgestaltung.layerOrderInGlyph.f 2 com.schriftgestaltung.layerOrderInGlyph.fatha-ar 2 com.schriftgestaltung.layerOrderInGlyph.fathatan-ar 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.feh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.fi 2 com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.filledRect 2 com.schriftgestaltung.layerOrderInGlyph.finalkaf-hb 1 com.schriftgestaltung.layerOrderInGlyph.finalkafdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.finalmem-hb 1 com.schriftgestaltung.layerOrderInGlyph.finalnun-hb 1 com.schriftgestaltung.layerOrderInGlyph.finalpe-hb 1 com.schriftgestaltung.layerOrderInGlyph.finalpedagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.finaltsadi-hb 1 com.schriftgestaltung.layerOrderInGlyph.firsttonechinese 2 com.schriftgestaltung.layerOrderInGlyph.fisheye 2 com.schriftgestaltung.layerOrderInGlyph.five 2 com.schriftgestaltung.layerOrderInGlyph.five-ar 2 com.schriftgestaltung.layerOrderInGlyph.five-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.five-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.five-persian 2 com.schriftgestaltung.layerOrderInGlyph.five-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.five-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.five.dnom 2 com.schriftgestaltung.layerOrderInGlyph.five.numr 2 com.schriftgestaltung.layerOrderInGlyph.fiveeighths 2 com.schriftgestaltung.layerOrderInGlyph.fiveinferior 2 com.schriftgestaltung.layerOrderInGlyph.fivesuperior 2 com.schriftgestaltung.layerOrderInGlyph.fl 2 com.schriftgestaltung.layerOrderInGlyph.florin 2 com.schriftgestaltung.layerOrderInGlyph.footnotemarker-ar 1 com.schriftgestaltung.layerOrderInGlyph.formFeedControl 2 com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.four 2 com.schriftgestaltung.layerOrderInGlyph.four-ar 2 com.schriftgestaltung.layerOrderInGlyph.four-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.four-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.four-persian 2 com.schriftgestaltung.layerOrderInGlyph.four-persian.small01 2 com.schriftgestaltung.layerOrderInGlyph.four-persian.urdu 2 com.schriftgestaltung.layerOrderInGlyph.four-persian.urduinferior 1 com.schriftgestaltung.layerOrderInGlyph.four-persian.urdusuperior 1 com.schriftgestaltung.layerOrderInGlyph.four-persianbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.four-persiancenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.four-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.four-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.four.dnom 2 com.schriftgestaltung.layerOrderInGlyph.four.half 2 com.schriftgestaltung.layerOrderInGlyph.four.numr 2 com.schriftgestaltung.layerOrderInGlyph.fourdotsabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.fourdotsbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.fourdotscenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.fourinferior 2 com.schriftgestaltung.layerOrderInGlyph.foursuperior 2 com.schriftgestaltung.layerOrderInGlyph.fourthroot-ar 1 com.schriftgestaltung.layerOrderInGlyph.fraction 2 com.schriftgestaltung.layerOrderInGlyph.franc 2 com.schriftgestaltung.layerOrderInGlyph.fullBlock 2 com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.fullstop-ar 2 com.schriftgestaltung.layerOrderInGlyph.g 2 com.schriftgestaltung.layerOrderInGlyph.gaf-ar 2 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar 1 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.gafsarkashabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.gamma 2 com.schriftgestaltung.layerOrderInGlyph.gamma-latin 2 com.schriftgestaltung.layerOrderInGlyph.gbreve 2 com.schriftgestaltung.layerOrderInGlyph.gcaron 2 com.schriftgestaltung.layerOrderInGlyph.gcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.gcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.gdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.ge-cy 2 com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.geresh-hb 2 com.schriftgestaltung.layerOrderInGlyph.germandbls 2 com.schriftgestaltung.layerOrderInGlyph.gershayim-hb 2 com.schriftgestaltung.layerOrderInGlyph.ghain-ar 2 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy 2 com.schriftgestaltung.layerOrderInGlyph.gimel-hb 1 com.schriftgestaltung.layerOrderInGlyph.gimeldagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.gje-cy 2 com.schriftgestaltung.layerOrderInGlyph.glottalstop 2 com.schriftgestaltung.layerOrderInGlyph.glottalstopmod 2 com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed 2 com.schriftgestaltung.layerOrderInGlyph.grave 2 com.schriftgestaltung.layerOrderInGlyph.gravecomb 2 com.schriftgestaltung.layerOrderInGlyph.gravecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.gravetonecomb 2 com.schriftgestaltung.layerOrderInGlyph.greater 2 com.schriftgestaltung.layerOrderInGlyph.greater.alt 2 com.schriftgestaltung.layerOrderInGlyph.greater.center 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greaterequal 2 com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.gstroke 2 com.schriftgestaltung.layerOrderInGlyph.guarani 2 com.schriftgestaltung.layerOrderInGlyph.gueh-ar 1 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.guillemetleft 2 com.schriftgestaltung.layerOrderInGlyph.guillemetright 2 com.schriftgestaltung.layerOrderInGlyph.guilsinglleft 2 com.schriftgestaltung.layerOrderInGlyph.guilsinglright 2 com.schriftgestaltung.layerOrderInGlyph.h 2 com.schriftgestaltung.layerOrderInGlyph.ha-cy 2 com.schriftgestaltung.layerOrderInGlyph.hadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.hah-ar 2 com.schriftgestaltung.layerOrderInGlyph.hah-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.hah-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hah-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hamza-ar 2 com.schriftgestaltung.layerOrderInGlyph.hamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.hamzabelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.hbar 2 com.schriftgestaltung.layerOrderInGlyph.hcaron 2 com.schriftgestaltung.layerOrderInGlyph.hcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.hdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.he-hb 1 com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament 2 com.schriftgestaltung.layerOrderInGlyph.hedagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.heh-ar 2 com.schriftgestaltung.layerOrderInGlyph.heh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.heh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.heh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init.fina 1 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar 2 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar 2 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.het-hb 1 com.schriftgestaltung.layerOrderInGlyph.highhamza-ar 2 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.holam-hb 1 com.schriftgestaltung.layerOrderInGlyph.holamhaser-hb 1 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon 2 com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl 2 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.horizontalbar 2 com.schriftgestaltung.layerOrderInGlyph.horizontallineextension 2 com.schriftgestaltung.layerOrderInGlyph.horncomb 2 com.schriftgestaltung.layerOrderInGlyph.horncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.house 2 com.schriftgestaltung.layerOrderInGlyph.hryvnia 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.hyphen 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphentwo 2 com.schriftgestaltung.layerOrderInGlyph.i 2 com.schriftgestaltung.layerOrderInGlyph.i-cy 2 com.schriftgestaltung.layerOrderInGlyph.ia-cy 2 com.schriftgestaltung.layerOrderInGlyph.iacute 2 com.schriftgestaltung.layerOrderInGlyph.ibreve 2 com.schriftgestaltung.layerOrderInGlyph.icircumflex 2 com.schriftgestaltung.layerOrderInGlyph.idieresis 2 com.schriftgestaltung.layerOrderInGlyph.idotbelow 2 com.schriftgestaltung.layerOrderInGlyph.idotless 2 com.schriftgestaltung.layerOrderInGlyph.ie-cy 2 com.schriftgestaltung.layerOrderInGlyph.iegrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.igrave 2 com.schriftgestaltung.layerOrderInGlyph.ihookabove 2 com.schriftgestaltung.layerOrderInGlyph.ii-cy 2 com.schriftgestaltung.layerOrderInGlyph.ii-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.iishort-cy 2 com.schriftgestaltung.layerOrderInGlyph.iishort-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.ij 2 com.schriftgestaltung.layerOrderInGlyph.ij_acute 2 com.schriftgestaltung.layerOrderInGlyph.imacron 2 com.schriftgestaltung.layerOrderInGlyph.imacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.increment 2 com.schriftgestaltung.layerOrderInGlyph.infinity 2 com.schriftgestaltung.layerOrderInGlyph.integral 2 com.schriftgestaltung.layerOrderInGlyph.integralbt 2 com.schriftgestaltung.layerOrderInGlyph.integraltp 2 com.schriftgestaltung.layerOrderInGlyph.intersection 2 com.schriftgestaltung.layerOrderInGlyph.inverseBullet 2 com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.io-cy 2 com.schriftgestaltung.layerOrderInGlyph.iogonek 2 com.schriftgestaltung.layerOrderInGlyph.iota 2 com.schriftgestaltung.layerOrderInGlyph.iota-latin 2 com.schriftgestaltung.layerOrderInGlyph.iotadieresis 2 com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.iotatonos 2 com.schriftgestaltung.layerOrderInGlyph.itilde 2 com.schriftgestaltung.layerOrderInGlyph.iu-cy 2 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.j 2 com.schriftgestaltung.layerOrderInGlyph.jacute 2 com.schriftgestaltung.layerOrderInGlyph.jcaron 2 com.schriftgestaltung.layerOrderInGlyph.jcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.jdotless 2 com.schriftgestaltung.layerOrderInGlyph.je-cy 2 com.schriftgestaltung.layerOrderInGlyph.jeem-ar 2 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.jeh-ar 2 com.schriftgestaltung.layerOrderInGlyph.jeh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.k 2 com.schriftgestaltung.layerOrderInGlyph.ka-cy 2 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.kadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.kaf-ar 2 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kaf-hb 1 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kafdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi.alt 1 com.schriftgestaltung.layerOrderInGlyph.kaiSymbol 2 com.schriftgestaltung.layerOrderInGlyph.kappa 2 com.schriftgestaltung.layerOrderInGlyph.kashida-ar 2 com.schriftgestaltung.layerOrderInGlyph.kasra-ar 2 com.schriftgestaltung.layerOrderInGlyph.kasratan-ar 2 com.schriftgestaltung.layerOrderInGlyph.kcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.kdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.keheh-ar 2 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.kgreenlandic 2 com.schriftgestaltung.layerOrderInGlyph.khah-ar 2 com.schriftgestaltung.layerOrderInGlyph.khah-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.khah-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.khah-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.kip 2 com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar 1 com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar 1 com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.kje-cy 2 com.schriftgestaltung.layerOrderInGlyph.klinebelow 2 com.schriftgestaltung.layerOrderInGlyph.l 2 com.schriftgestaltung.layerOrderInGlyph.lacute 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar.init.rlig 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi.rlig 2 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi.rlig 1 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina.short 2 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.short 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar 2 com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.lam_lam_heh-ar 1 com.schriftgestaltung.layerOrderInGlyph.lambda 2 com.schriftgestaltung.layerOrderInGlyph.lambdastroke 2 com.schriftgestaltung.layerOrderInGlyph.lamed-hb 1 com.schriftgestaltung.layerOrderInGlyph.lameddagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.largeCircle 2 com.schriftgestaltung.layerOrderInGlyph.lari 2 com.schriftgestaltung.layerOrderInGlyph.lbar 2 com.schriftgestaltung.layerOrderInGlyph.lbelt 2 com.schriftgestaltung.layerOrderInGlyph.lcaron 2 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.ldot 2 com.schriftgestaltung.layerOrderInGlyph.ldotbelow 2 com.schriftgestaltung.layerOrderInGlyph.leftArrow 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftRightArrow 2 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer 2 com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.less 2 com.schriftgestaltung.layerOrderInGlyph.less.alt 2 com.schriftgestaltung.layerOrderInGlyph.less.center 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga 4 com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.lessequal 2 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl 2 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.lineseparator 2 com.schriftgestaltung.layerOrderInGlyph.lira 2 com.schriftgestaltung.layerOrderInGlyph.liraTurkish 2 com.schriftgestaltung.layerOrderInGlyph.literSign 2 com.schriftgestaltung.layerOrderInGlyph.lje-cy 2 com.schriftgestaltung.layerOrderInGlyph.llinebelow 2 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde 2 com.schriftgestaltung.layerOrderInGlyph.logicalnot 2 com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed 2 com.schriftgestaltung.layerOrderInGlyph.longs 2 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek 2 com.schriftgestaltung.layerOrderInGlyph.lowlinecomb 2 com.schriftgestaltung.layerOrderInGlyph.lozenge 2 com.schriftgestaltung.layerOrderInGlyph.lslash 2 com.schriftgestaltung.layerOrderInGlyph.m 2 com.schriftgestaltung.layerOrderInGlyph.macron 2 com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.macroncomb 2 com.schriftgestaltung.layerOrderInGlyph.macroncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.madda-ar 2 com.schriftgestaltung.layerOrderInGlyph.manat 2 com.schriftgestaltung.layerOrderInGlyph.maqaf-hb 2 com.schriftgestaltung.layerOrderInGlyph.mars 2 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.meem-ar 2 com.schriftgestaltung.layerOrderInGlyph.meem-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.meem-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.meem-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.meemStopabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.mem-hb 1 com.schriftgestaltung.layerOrderInGlyph.memdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.micro 2 com.schriftgestaltung.layerOrderInGlyph.minus 2 com.schriftgestaltung.layerOrderInGlyph.minute 2 com.schriftgestaltung.layerOrderInGlyph.misraComma-ar 1 com.schriftgestaltung.layerOrderInGlyph.mu 2 com.schriftgestaltung.layerOrderInGlyph.multiply 2 com.schriftgestaltung.layerOrderInGlyph.n 2 com.schriftgestaltung.layerOrderInGlyph.nacute 2 com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.naira 2 com.schriftgestaltung.layerOrderInGlyph.napostrophe 2 com.schriftgestaltung.layerOrderInGlyph.nbspace 2 com.schriftgestaltung.layerOrderInGlyph.ncaron 2 com.schriftgestaltung.layerOrderInGlyph.ncommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl 2 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.newlineControl 2 com.schriftgestaltung.layerOrderInGlyph.ng-ar 1 com.schriftgestaltung.layerOrderInGlyph.ng-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ng-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ng-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar 1 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.nhookleft 2 com.schriftgestaltung.layerOrderInGlyph.nine 2 com.schriftgestaltung.layerOrderInGlyph.nine-ar 2 com.schriftgestaltung.layerOrderInGlyph.nine-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.nine-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.nine-persian 2 com.schriftgestaltung.layerOrderInGlyph.nine-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.nine-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.nine.dnom 2 com.schriftgestaltung.layerOrderInGlyph.nine.numr 2 com.schriftgestaltung.layerOrderInGlyph.nineinferior 2 com.schriftgestaltung.layerOrderInGlyph.ninesuperior 2 com.schriftgestaltung.layerOrderInGlyph.nje-cy 2 com.schriftgestaltung.layerOrderInGlyph.nlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.nmod 2 com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen 2 com.schriftgestaltung.layerOrderInGlyph.noon-ar 2 com.schriftgestaltung.layerOrderInGlyph.noon-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.noon-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noon-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noon-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar 2 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.noonghunnaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.note-musical 2 com.schriftgestaltung.layerOrderInGlyph.notedbl-musical 2 com.schriftgestaltung.layerOrderInGlyph.notequal 2 com.schriftgestaltung.layerOrderInGlyph.notidentical 2 com.schriftgestaltung.layerOrderInGlyph.ntilde 2 com.schriftgestaltung.layerOrderInGlyph.nu 2 com.schriftgestaltung.layerOrderInGlyph.nullControl 2 com.schriftgestaltung.layerOrderInGlyph.number-ar 1 com.schriftgestaltung.layerOrderInGlyph.numbermark-ar 1 com.schriftgestaltung.layerOrderInGlyph.numbersign 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numeral-greek 2 com.schriftgestaltung.layerOrderInGlyph.numero 2 com.schriftgestaltung.layerOrderInGlyph.nun-hb 1 com.schriftgestaltung.layerOrderInGlyph.nundagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar 1 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.o 2 com.schriftgestaltung.layerOrderInGlyph.o-cy 2 com.schriftgestaltung.layerOrderInGlyph.oacute 2 com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.obarred-cy 2 com.schriftgestaltung.layerOrderInGlyph.obreve 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.odieresis 2 com.schriftgestaltung.layerOrderInGlyph.odotbelow 2 com.schriftgestaltung.layerOrderInGlyph.oe 2 com.schriftgestaltung.layerOrderInGlyph.oe-ar 1 com.schriftgestaltung.layerOrderInGlyph.oe-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ogonek 2 com.schriftgestaltung.layerOrderInGlyph.ogonekcomb 2 com.schriftgestaltung.layerOrderInGlyph.ograve 2 com.schriftgestaltung.layerOrderInGlyph.ohookabove 2 com.schriftgestaltung.layerOrderInGlyph.ohorn 2 com.schriftgestaltung.layerOrderInGlyph.ohornacute 2 com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ohorngrave 2 com.schriftgestaltung.layerOrderInGlyph.ohornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ohorntilde 2 com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.omacron 2 com.schriftgestaltung.layerOrderInGlyph.omacronacute 2 com.schriftgestaltung.layerOrderInGlyph.omacrongrave 2 com.schriftgestaltung.layerOrderInGlyph.omega 2 com.schriftgestaltung.layerOrderInGlyph.omegatonos 2 com.schriftgestaltung.layerOrderInGlyph.omicron 2 com.schriftgestaltung.layerOrderInGlyph.omicrontonos 2 com.schriftgestaltung.layerOrderInGlyph.one 2 com.schriftgestaltung.layerOrderInGlyph.one-ar 2 com.schriftgestaltung.layerOrderInGlyph.one-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.one-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.one-persian 2 com.schriftgestaltung.layerOrderInGlyph.one-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.one-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.one.dnom 2 com.schriftgestaltung.layerOrderInGlyph.one.half 2 com.schriftgestaltung.layerOrderInGlyph.one.numr 2 com.schriftgestaltung.layerOrderInGlyph.onedotenleader 2 com.schriftgestaltung.layerOrderInGlyph.oneeighth 2 com.schriftgestaltung.layerOrderInGlyph.onehalf 2 com.schriftgestaltung.layerOrderInGlyph.oneinferior 2 com.schriftgestaltung.layerOrderInGlyph.onequarter 2 com.schriftgestaltung.layerOrderInGlyph.onesuperior 2 com.schriftgestaltung.layerOrderInGlyph.oogonek 2 com.schriftgestaltung.layerOrderInGlyph.oopen 2 com.schriftgestaltung.layerOrderInGlyph.ordfeminine 2 com.schriftgestaltung.layerOrderInGlyph.ordmasculine 2 com.schriftgestaltung.layerOrderInGlyph.orthogonal 2 com.schriftgestaltung.layerOrderInGlyph.oslash 2 com.schriftgestaltung.layerOrderInGlyph.oslashacute 2 com.schriftgestaltung.layerOrderInGlyph.otilde 2 com.schriftgestaltung.layerOrderInGlyph.overline 2 com.schriftgestaltung.layerOrderInGlyph.p 2 com.schriftgestaltung.layerOrderInGlyph.pagenumber-ar 1 com.schriftgestaltung.layerOrderInGlyph.palochka-cy 2 com.schriftgestaltung.layerOrderInGlyph.paragraph 2 com.schriftgestaltung.layerOrderInGlyph.parenleft 2 com.schriftgestaltung.layerOrderInGlyph.parenleft-ar 2 com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.parenright 2 com.schriftgestaltung.layerOrderInGlyph.parenright-ar 2 com.schriftgestaltung.layerOrderInGlyph.partialdiff 2 com.schriftgestaltung.layerOrderInGlyph.paseq-hb 2 com.schriftgestaltung.layerOrderInGlyph.patah-hb 1 com.schriftgestaltung.layerOrderInGlyph.pe-cy 2 com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.pe-hb 1 com.schriftgestaltung.layerOrderInGlyph.pedagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.peh-ar 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.peh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.percent 2 com.schriftgestaltung.layerOrderInGlyph.percent-ar 2 com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga 2 com.schriftgestaltung.layerOrderInGlyph.period 2 com.schriftgestaltung.layerOrderInGlyph.period_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.periodcentered 2 com.schriftgestaltung.layerOrderInGlyph.perispomenicomb 2 com.schriftgestaltung.layerOrderInGlyph.perthousand 2 com.schriftgestaltung.layerOrderInGlyph.perthousand-ar 1 com.schriftgestaltung.layerOrderInGlyph.peseta 2 com.schriftgestaltung.layerOrderInGlyph.peso 2 com.schriftgestaltung.layerOrderInGlyph.phi 2 com.schriftgestaltung.layerOrderInGlyph.pi 2 com.schriftgestaltung.layerOrderInGlyph.plus 2 com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.plusminus 2 com.schriftgestaltung.layerOrderInGlyph.prescription 2 com.schriftgestaltung.layerOrderInGlyph.product 2 com.schriftgestaltung.layerOrderInGlyph.psi 2 com.schriftgestaltung.layerOrderInGlyph.published 2 com.schriftgestaltung.layerOrderInGlyph.punctuationspace 2 com.schriftgestaltung.layerOrderInGlyph.q 2 com.schriftgestaltung.layerOrderInGlyph.qaf-ar 2 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar 1 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar 2 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.qamats-hb 1 com.schriftgestaltung.layerOrderInGlyph.qamatsqatan-hb 1 com.schriftgestaltung.layerOrderInGlyph.qof-hb 1 com.schriftgestaltung.layerOrderInGlyph.qofdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.question 2 com.schriftgestaltung.layerOrderInGlyph.question-ar 2 com.schriftgestaltung.layerOrderInGlyph.question_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.questiondown 2 com.schriftgestaltung.layerOrderInGlyph.questiongreek 2 com.schriftgestaltung.layerOrderInGlyph.quotedbl 2 com.schriftgestaltung.layerOrderInGlyph.quotedblbase 2 com.schriftgestaltung.layerOrderInGlyph.quotedblleft 2 com.schriftgestaltung.layerOrderInGlyph.quotedblright 2 com.schriftgestaltung.layerOrderInGlyph.quoteleft 2 com.schriftgestaltung.layerOrderInGlyph.quotereversed 2 com.schriftgestaltung.layerOrderInGlyph.quoteright 2 com.schriftgestaltung.layerOrderInGlyph.quotesinglbase 2 com.schriftgestaltung.layerOrderInGlyph.quotesingle 2 com.schriftgestaltung.layerOrderInGlyph.r 2 com.schriftgestaltung.layerOrderInGlyph.racute 2 com.schriftgestaltung.layerOrderInGlyph.radical 2 com.schriftgestaltung.layerOrderInGlyph.ratio 2 com.schriftgestaltung.layerOrderInGlyph.ray-ar 1 com.schriftgestaltung.layerOrderInGlyph.rcaron 2 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.rdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.registered 2 com.schriftgestaltung.layerOrderInGlyph.reh-ar 2 com.schriftgestaltung.layerOrderInGlyph.reh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rehv-ar 1 com.schriftgestaltung.layerOrderInGlyph.rehv-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.replacementCharacter 2 com.schriftgestaltung.layerOrderInGlyph.resh-hb 1 com.schriftgestaltung.layerOrderInGlyph.reshdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.returnsymbol 2 com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet 2 com.schriftgestaltung.layerOrderInGlyph.rho 2 com.schriftgestaltung.layerOrderInGlyph.rightArrow 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightBlock 2 com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer 2 com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.ring 2 com.schriftgestaltung.layerOrderInGlyph.ringArabic 2 com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.ringcomb 2 com.schriftgestaltung.layerOrderInGlyph.ringcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar 1 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet 2 com.schriftgestaltung.layerOrderInGlyph.rreh-ar 2 com.schriftgestaltung.layerOrderInGlyph.rreh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.ruble 2 com.schriftgestaltung.layerOrderInGlyph.rupee 2 com.schriftgestaltung.layerOrderInGlyph.rupeeIndian 2 com.schriftgestaltung.layerOrderInGlyph.s 2 com.schriftgestaltung.layerOrderInGlyph.sacute 2 com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.sad-ar 2 com.schriftgestaltung.layerOrderInGlyph.sad-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.sad-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.sad-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.samekh-hb 1 com.schriftgestaltung.layerOrderInGlyph.samekhdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.samvat-ar 1 com.schriftgestaltung.layerOrderInGlyph.scaron 2 com.schriftgestaltung.layerOrderInGlyph.scedilla 2 com.schriftgestaltung.layerOrderInGlyph.schwa 2 com.schriftgestaltung.layerOrderInGlyph.schwa-cy 2 com.schriftgestaltung.layerOrderInGlyph.scircumflex 2 com.schriftgestaltung.layerOrderInGlyph.scommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.sdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.second 2 com.schriftgestaltung.layerOrderInGlyph.section 2 com.schriftgestaltung.layerOrderInGlyph.seen-ar 2 com.schriftgestaltung.layerOrderInGlyph.seen-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.seen-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seen-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.semicolon 2 com.schriftgestaltung.layerOrderInGlyph.semicolon-ar 2 com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga 2 com.schriftgestaltung.layerOrderInGlyph.seven 2 com.schriftgestaltung.layerOrderInGlyph.seven-ar 2 com.schriftgestaltung.layerOrderInGlyph.seven-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.seven-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.seven-persian 2 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdu 2 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urduinferior 1 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdusuperior 1 com.schriftgestaltung.layerOrderInGlyph.seven-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.seven-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.seven.dnom 2 com.schriftgestaltung.layerOrderInGlyph.seven.numr 2 com.schriftgestaltung.layerOrderInGlyph.seveneighths 2 com.schriftgestaltung.layerOrderInGlyph.seveninferior 2 com.schriftgestaltung.layerOrderInGlyph.sevensuperior 2 com.schriftgestaltung.layerOrderInGlyph.sha-cy 2 com.schriftgestaltung.layerOrderInGlyph.sha-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.shadda-ar 2 com.schriftgestaltung.layerOrderInGlyph.shadedark 2 com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shadelight 2 com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shademedium 2 com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shcha-cy 2 com.schriftgestaltung.layerOrderInGlyph.shcha-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.sheqel 2 com.schriftgestaltung.layerOrderInGlyph.shha-cy 2 com.schriftgestaltung.layerOrderInGlyph.shiftInControl 2 com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl 2 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.shin-hb 1 com.schriftgestaltung.layerOrderInGlyph.shindagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.shindageshshindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.shindageshsindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.shindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.shinshindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.shinsindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.sigma 2 com.schriftgestaltung.layerOrderInGlyph.sigmafinal 2 com.schriftgestaltung.layerOrderInGlyph.sindhiampersand-ar 1 com.schriftgestaltung.layerOrderInGlyph.sindhipostpositionmen-ar 1 com.schriftgestaltung.layerOrderInGlyph.sindot-hb 1 com.schriftgestaltung.layerOrderInGlyph.six 2 com.schriftgestaltung.layerOrderInGlyph.six-ar 2 com.schriftgestaltung.layerOrderInGlyph.six-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.six-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.six-persian 2 com.schriftgestaltung.layerOrderInGlyph.six-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.six-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.six.dnom 2 com.schriftgestaltung.layerOrderInGlyph.six.numr 2 com.schriftgestaltung.layerOrderInGlyph.sixinferior 2 com.schriftgestaltung.layerOrderInGlyph.sixsuperior 2 com.schriftgestaltung.layerOrderInGlyph.slash 2 com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.softhyphen 2 com.schriftgestaltung.layerOrderInGlyph.softsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.softsign-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.space 2 com.schriftgestaltung.layerOrderInGlyph.spaceControl 2 com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl 2 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl 2 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.sterling 2 com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto 2 com.schriftgestaltung.layerOrderInGlyph.substituteControl 2 com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.sukun-ar 2 com.schriftgestaltung.layerOrderInGlyph.summation 2 com.schriftgestaltung.layerOrderInGlyph.sunWithRays 2 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl 2 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.t 2 com.schriftgestaltung.layerOrderInGlyph.tah-ar 2 com.schriftgestaltung.layerOrderInGlyph.tah-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.tah-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.tah-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tahbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.tahcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.tau 2 com.schriftgestaltung.layerOrderInGlyph.tav-hb 1 com.schriftgestaltung.layerOrderInGlyph.tavdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.tbar 2 com.schriftgestaltung.layerOrderInGlyph.tcaron 2 com.schriftgestaltung.layerOrderInGlyph.tcedilla 2 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar 2 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar 1 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.te-cy 2 com.schriftgestaltung.layerOrderInGlyph.te-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.teh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar 2 com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar 2 com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tehabove-ar.small 2 com.schriftgestaltung.layerOrderInGlyph.teheh-ar 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tenge 2 com.schriftgestaltung.layerOrderInGlyph.tesh 2 com.schriftgestaltung.layerOrderInGlyph.tet-hb 1 com.schriftgestaltung.layerOrderInGlyph.tetdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.thal-ar 2 com.schriftgestaltung.layerOrderInGlyph.thal-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.theh-ar 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.theh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.theta 2 com.schriftgestaltung.layerOrderInGlyph.thetamod 2 com.schriftgestaltung.layerOrderInGlyph.thorn 2 com.schriftgestaltung.layerOrderInGlyph.thousandseparator-ar 2 com.schriftgestaltung.layerOrderInGlyph.three 2 com.schriftgestaltung.layerOrderInGlyph.three-ar 2 com.schriftgestaltung.layerOrderInGlyph.three-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.three-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.three-persian 2 com.schriftgestaltung.layerOrderInGlyph.three-persian.small01 2 com.schriftgestaltung.layerOrderInGlyph.three-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.three-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.three.dnom 2 com.schriftgestaltung.layerOrderInGlyph.three.half 2 com.schriftgestaltung.layerOrderInGlyph.three.numr 2 com.schriftgestaltung.layerOrderInGlyph.threedots-ar 1 com.schriftgestaltung.layerOrderInGlyph.threedotsdownabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.threedotsdownbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.threedotsdowncenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar.v2 2 com.schriftgestaltung.layerOrderInGlyph.threedotsupbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.threedotsupcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.threeeighths 2 com.schriftgestaltung.layerOrderInGlyph.threeinferior 2 com.schriftgestaltung.layerOrderInGlyph.threequarters 2 com.schriftgestaltung.layerOrderInGlyph.threesuperior 2 com.schriftgestaltung.layerOrderInGlyph.tilde 2 com.schriftgestaltung.layerOrderInGlyph.tildecomb 2 com.schriftgestaltung.layerOrderInGlyph.tildecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.tonos 2 com.schriftgestaltung.layerOrderInGlyph.tonos.case 2 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.trademark 2 com.schriftgestaltung.layerOrderInGlyph.tsadi-hb 1 com.schriftgestaltung.layerOrderInGlyph.tsadidagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.tse-cy 2 com.schriftgestaltung.layerOrderInGlyph.tse-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.tshe-cy 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.alt 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.tugrik 2 com.schriftgestaltung.layerOrderInGlyph.two 2 com.schriftgestaltung.layerOrderInGlyph.two-ar 2 com.schriftgestaltung.layerOrderInGlyph.two-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.two-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.two-persian 2 com.schriftgestaltung.layerOrderInGlyph.two-persian.small01 2 com.schriftgestaltung.layerOrderInGlyph.two-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.two-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.two.dnom 2 com.schriftgestaltung.layerOrderInGlyph.two.half 2 com.schriftgestaltung.layerOrderInGlyph.two.numr 2 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar.v2 2 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotstahbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotstahcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalbelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalcenter-ar 2 com.schriftgestaltung.layerOrderInGlyph.twoinferior 2 com.schriftgestaltung.layerOrderInGlyph.twosuperior 2 com.schriftgestaltung.layerOrderInGlyph.u 2 com.schriftgestaltung.layerOrderInGlyph.u-ar 1 com.schriftgestaltung.layerOrderInGlyph.u-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.u-cy 2 com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.uacute 2 com.schriftgestaltung.layerOrderInGlyph.ubreve 2 com.schriftgestaltung.layerOrderInGlyph.ucircumflex 2 com.schriftgestaltung.layerOrderInGlyph.udieresis 2 com.schriftgestaltung.layerOrderInGlyph.udotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ugrave 2 com.schriftgestaltung.layerOrderInGlyph.uhookabove 2 com.schriftgestaltung.layerOrderInGlyph.uhorn 2 com.schriftgestaltung.layerOrderInGlyph.uhornacute 2 com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.uhorngrave 2 com.schriftgestaltung.layerOrderInGlyph.uhornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.uhorntilde 2 com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.umacron 2 com.schriftgestaltung.layerOrderInGlyph.umacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.underscore 2 com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga 2 com.schriftgestaltung.layerOrderInGlyph.underscoredbl 2 com.schriftgestaltung.layerOrderInGlyph.uni08B3 1 com.schriftgestaltung.layerOrderInGlyph.uni08B3.fina 1 com.schriftgestaltung.layerOrderInGlyph.uni08B3.init 1 com.schriftgestaltung.layerOrderInGlyph.uni08B3.medi 1 com.schriftgestaltung.layerOrderInGlyph.uni08B4 1 com.schriftgestaltung.layerOrderInGlyph.uni08B4.fina 1 com.schriftgestaltung.layerOrderInGlyph.uni08B4.init 1 com.schriftgestaltung.layerOrderInGlyph.uni08B4.medi 1 com.schriftgestaltung.layerOrderInGlyph.uni08B9.fina 1 com.schriftgestaltung.layerOrderInGlyph.uniFBC0 2 com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.uogonek 2 com.schriftgestaltung.layerOrderInGlyph.upArrow 2 com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upDashArrow 2 com.schriftgestaltung.layerOrderInGlyph.upDownArrow 2 com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow 2 com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfArc 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftArc 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightArc 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.upsilon 2 com.schriftgestaltung.layerOrderInGlyph.upsilon-latin 2 com.schriftgestaltung.layerOrderInGlyph.upsilondieresis 2 com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.upsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.uring 2 com.schriftgestaltung.layerOrderInGlyph.ushort-cy 2 com.schriftgestaltung.layerOrderInGlyph.ustraight-cy 2 com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.utilde 2 com.schriftgestaltung.layerOrderInGlyph.v 2 com.schriftgestaltung.layerOrderInGlyph.vabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.vav-hb 1 com.schriftgestaltung.layerOrderInGlyph.vavdagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.vavholam-hb 1 com.schriftgestaltung.layerOrderInGlyph.ve-ar 1 com.schriftgestaltung.layerOrderInGlyph.ve-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.ve-cy 2 com.schriftgestaltung.layerOrderInGlyph.ve-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.alt 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.veh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.venus 2 com.schriftgestaltung.layerOrderInGlyph.verseComma-ar 1 com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle 2 com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl 2 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.vhook 2 com.schriftgestaltung.layerOrderInGlyph.vinvertedabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.vturned 2 com.schriftgestaltung.layerOrderInGlyph.w 2 com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga 2 com.schriftgestaltung.layerOrderInGlyph.wacute 2 com.schriftgestaltung.layerOrderInGlyph.wasla-ar 2 com.schriftgestaltung.layerOrderInGlyph.wavyhamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.wavyhamzabelow-ar 2 com.schriftgestaltung.layerOrderInGlyph.waw-ar 2 com.schriftgestaltung.layerOrderInGlyph.waw-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.wawStraight-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wawring-ar 1 com.schriftgestaltung.layerOrderInGlyph.wawring-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.wcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.wdieresis 2 com.schriftgestaltung.layerOrderInGlyph.wgrave 2 com.schriftgestaltung.layerOrderInGlyph.whiteBullet 2 com.schriftgestaltung.layerOrderInGlyph.whiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.whiteDiamond 2 com.schriftgestaltung.layerOrderInGlyph.whiteHexagon 2 com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond 2 com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge 2 com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram 2 com.schriftgestaltung.layerOrderInGlyph.whitePentagon 2 com.schriftgestaltung.layerOrderInGlyph.whiteRect 2 com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace 2 com.schriftgestaltung.layerOrderInGlyph.whiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.wmod 2 com.schriftgestaltung.layerOrderInGlyph.won 2 com.schriftgestaltung.layerOrderInGlyph.x 2 com.schriftgestaltung.layerOrderInGlyph.x.multiply 2 com.schriftgestaltung.layerOrderInGlyph.xi 2 com.schriftgestaltung.layerOrderInGlyph.y 2 com.schriftgestaltung.layerOrderInGlyph.yacute 2 com.schriftgestaltung.layerOrderInGlyph.ycircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ydieresis 2 com.schriftgestaltung.layerOrderInGlyph.ydotbelow 2 com.schriftgestaltung.layerOrderInGlyph.year-ar 1 com.schriftgestaltung.layerOrderInGlyph.yeh-ar 2 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.medi 2 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina.alt 2 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init.alt 2 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.isol 1 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar 2 com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar 2 com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init.alt 1 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.medi 1 com.schriftgestaltung.layerOrderInGlyph.yen 2 com.schriftgestaltung.layerOrderInGlyph.yeru-cy 2 com.schriftgestaltung.layerOrderInGlyph.ygrave 2 com.schriftgestaltung.layerOrderInGlyph.yhookabove 2 com.schriftgestaltung.layerOrderInGlyph.yi-cy 2 com.schriftgestaltung.layerOrderInGlyph.ymacron 2 com.schriftgestaltung.layerOrderInGlyph.ymod 2 com.schriftgestaltung.layerOrderInGlyph.yod-hb 1 com.schriftgestaltung.layerOrderInGlyph.yoddagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.ytilde 2 com.schriftgestaltung.layerOrderInGlyph.yu-ar 1 com.schriftgestaltung.layerOrderInGlyph.yu-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.z 2 com.schriftgestaltung.layerOrderInGlyph.zacute 2 com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.zah-ar 2 com.schriftgestaltung.layerOrderInGlyph.zah-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.zah-ar.init 2 com.schriftgestaltung.layerOrderInGlyph.zah-ar.medi 2 com.schriftgestaltung.layerOrderInGlyph.zain-ar 2 com.schriftgestaltung.layerOrderInGlyph.zain-ar.fina 2 com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar 1 com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.zayin-hb 1 com.schriftgestaltung.layerOrderInGlyph.zayindagesh-hb 1 com.schriftgestaltung.layerOrderInGlyph.zcaron 2 com.schriftgestaltung.layerOrderInGlyph.zdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.ze-cy 2 com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.zero 2 com.schriftgestaltung.layerOrderInGlyph.zero-ar 2 com.schriftgestaltung.layerOrderInGlyph.zero-arinferior 1 com.schriftgestaltung.layerOrderInGlyph.zero-arsuperior 1 com.schriftgestaltung.layerOrderInGlyph.zero-persian 2 com.schriftgestaltung.layerOrderInGlyph.zero-persianinferior 1 com.schriftgestaltung.layerOrderInGlyph.zero-persiansuperior 1 com.schriftgestaltung.layerOrderInGlyph.zero.dnom 2 com.schriftgestaltung.layerOrderInGlyph.zero.numr 2 com.schriftgestaltung.layerOrderInGlyph.zero.zero 2 com.schriftgestaltung.layerOrderInGlyph.zeroinferior 2 com.schriftgestaltung.layerOrderInGlyph.zerosuperior 2 com.schriftgestaltung.layerOrderInGlyph.zeta 2 com.schriftgestaltung.layerOrderInGlyph.zhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.zmod 2 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lbelt.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lcaron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name l ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ldot.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name l alignment -1 index 1 name periodcentered ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ldotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackP_ointer.glif ================================================ triaglf ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ uni25C2 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftB_lackT_riangle.glif ================================================ uni25C0 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ uni25D6 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ uni2B16 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ uni25E7 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D0 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftR_ightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ uni25C5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ uni25C3 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ uni25C1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name greater alignment -1 index 1 name less alignment -1 index 2 name asciitilde ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_asterisk.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name less alignment -1 index 1 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name greater alignment -1 index 1 name less alignment -1 index 2 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_bar_bar.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bar alignment -1 index 1 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_bar_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name greater alignment -1 index 1 name less alignment -1 index 2 name bar ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_dollar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name exclam ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_less_less.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name less alignment -1 index 1 name less alignment -1 index 2 name less ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_plus.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name less ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_plus_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name greater alignment -1 index 1 name less alignment -1 index 2 name plus ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/less_slash_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lessequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lineseparator.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lira.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/liraT_urkish.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/literS_ign.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/llinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lmiddletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/logicalnot.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/logicalnotR_eversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/longs.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfA_rc.glif ================================================ uni25E1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D2 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DB ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ uni2B12 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftA_rc.glif ================================================ uni25DF ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ uni25E3 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ uni2B14 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ uni25FA ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightA_rc.glif ================================================ uni25DE ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ uni25E2 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ uni25EA ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F6 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ uni25FF ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowernumeral-greek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name comma ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lowlinecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lozenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/lslash.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name l ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/m.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/macron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name macroncomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/macronbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/macroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/macroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/madda-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/manat.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/maqaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mars.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ uni25FE ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumB_lackS_quare.glif ================================================ uni25FC ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ uni25FD ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ uni25FB ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meem-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemS_topabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/meemT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mem-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/memdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/micro.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/minus.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/minute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/misraC_omma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/mu.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/n.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/naira.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/napostrophe.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name n ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nbspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ncaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ncommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/newlineC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ng-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ngoeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nhookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey nine-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey nine-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name nine-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name nine-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nine.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nineinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ninesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nlinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nonbreakinghyphen.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hyphentwo ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noon-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonA_frican-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_ahabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonT_wodotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunna-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/noonghunnaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/note-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/notedbl-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/notequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/notidentical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nu.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nullC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name U.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/number-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbermark-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name bracketleft ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_colon.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name numbersign alignment -1 index 1 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name numbersign ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_exclam.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name numbersign alignment -1 index 1 name exclam ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name parenleft ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_question.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numeral-greek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quoteright ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/numero.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nun-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nundagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/nyeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/o.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/obarred-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name o ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/obreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ocircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/odieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/odotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oe-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oe-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oe.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ogonekcomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ogonekcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ograve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ohungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omacronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omacrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omega.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omegatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omicron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/omicrontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name one-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name one-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/one.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onedotenleader.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name onesuperior alignment -1 index 1 name eightinferior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oneeighth.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name onesuperior alignment -1 index 1 name eightinferior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name onesuperior alignment -1 index 1 name twoinferior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onehalf.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name onesuperior alignment -1 index 1 name twoinferior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oneinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name foursuperior alignment -1 index 1 name onesuperior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onequarter.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name foursuperior alignment -1 index 1 name onesuperior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/onesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name o ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ordfeminine.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ordmasculine.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/orthogonal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oslash.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name o ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/oslashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/otilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/overline.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/p.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pagenumber-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/palochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/paragraph.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/parenleft-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/parenleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/parenright-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name parenleft-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/parenright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/partialdiff.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/paseq-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/patah-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pe-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pedagesh-hb.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pehM_eemabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/percent-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/percent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/percent_percent.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_hyphen.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_period.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_period_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_period_less.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_period_period.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name period alignment -1 index 2 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/period_question.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period alignment -1 index 1 name question ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/periodcentered.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/perispomenicomb.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name tildecomb com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/perthousand-ar.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/perthousand.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peseta.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name P ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/peso.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name P ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/phi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/pi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/plus.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/plus_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name plus alignment -1 index 1 name greater ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/plus_plus.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name plus alignment -1 index 1 name plus ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/plus_plus_plus.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name plus alignment -1 index 1 name plus alignment -1 index 2 name plus ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/plusminus.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name minus ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/prescription.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/product.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/psi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/published.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/punctuationspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/q.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafA_frican-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.init.alt.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.init.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafD_otless-ar.medi.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qafT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qamats-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qamatsqatan-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qof-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/qofdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question_colon.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name question alignment -1 index 1 name colon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name question ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question_period.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name question alignment -1 index 1 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question_question.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name question alignment -1 index 1 name question ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/question_question_equal.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name question ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/questiondown.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/questiongreek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name semicolon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotedbl.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quotesingle alignment -1 index 1 name quotesingle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotedblbase.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotedblleft.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quoteleft alignment -1 index 1 name quoteleft ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotedblright.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quoteright alignment -1 index 1 name quoteright ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quoteleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotereversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quoteright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotesinglbase.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name quoteright ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/quotesingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/r.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/racute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/radical.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ratio.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ray-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name R.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/registered.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/reh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/reh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelowdotabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehD_otbelowdotabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name reh-ar alignment -1 index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehF_ourdots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehF_ourdots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehL_oop-ar.fina.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehL_oop-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _ringArabic com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehS_troke-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehS_troke-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey reh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey reh-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotsverticalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehT_wodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehV_below-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehV_below-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehv-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rehv-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/replacementC_haracter.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/resh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/reshdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/returnsymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rho.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackP_ointer.glif ================================================ triagrt ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ uni25B8 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightB_lackT_riangle.glif ================================================ uni25B6 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ uni25D7 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ uni2B17 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ uni25E8 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ uni25BB ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ uni25B9 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ uni25B7 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ring.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ringcomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ringA_rabic.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ringbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ringcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ringcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rnoon-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rreh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rreh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ruble.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name P ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rupee.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/rupeeI_ndian.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/s.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sad-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sadT_wodotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/samekh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/samekhdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/samvat-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/scaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/scedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/schwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/schwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/scircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/scommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/second.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/section.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seen-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenD_otbelowD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenF_ourdotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotsverticalabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenT_wodotsverticalabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seenV_invertedabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit0.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit1.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit7.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit8.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/segmentedD_igit9.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/semicolon-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/semicolon.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name comma ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name semicolon alignment -1 index 1 name semicolon ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name eight-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seven-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seven-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urdu.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urduinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persian.urdusuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name seven-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name seven-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seven.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name sevensuperior alignment -1 index 1 name eightinferior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seveneighths.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name sevensuperior alignment -1 index 1 name eightinferior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/seveninferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sevensuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shadda-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shadedark.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shadedark.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shadelight.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shadelight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shademedium.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shademedium.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name sha-cy.loclBGR ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheen-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheenD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sheqel.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name I.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name O.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shindagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shindageshshindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shindageshsindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shindot-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shinshindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/shinsindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sigma.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sigmafinal.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sindhiampersand-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hamza-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sindhipostpositionmen-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =meem-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =meem-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sindot-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/six.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sixinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sixsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_asterisk.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash alignment -1 index 1 name asterisk ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash alignment -1 index 1 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/slash_slash_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash alignment -1 index 1 name slash alignment -1 index 2 name slash ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/softhyphen.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hyphen ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/softsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/space.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/spaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name P.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/spadeB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name H.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sterling.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/strictlyequivalentto.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/substituteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sukun-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/summation.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/sunW_ithR_ays.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name Y.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/t.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tah-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahT_wodotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tahcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tau.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tav-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tavdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tbar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name t ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcaron.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name t ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey tcheh-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey tcheh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tchehD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcheheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/te-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbuta-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbuta-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbutagoal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehM_arbutagoal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_ehabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsdown-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tehabove-ar.small.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/teheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tesh.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tetdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thalA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey thal-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thalA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/theta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thetamod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/thousandseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name three-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name three-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/three.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsdownabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsdownbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsdowncenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsupabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsupabove-ar.v2.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dotabove-ar alignment -1 index 1 name dotabove-ar alignment -1 index 2 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threedotsupcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name threesuperior alignment -1 index 1 name eightinferior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threeeighths.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name threesuperior alignment -1 index 1 name eightinferior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threeinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name foursuperior alignment -1 index 1 name threesuperior com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threequarters.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name foursuperior alignment -1 index 1 name threesuperior ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/threesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tilde.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name tildecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tildecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tildecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tonos.case.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name tonos ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tonos.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ uni2BCA ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ uni2B18 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ uni2B13 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ uni2B15 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/trademark.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tsadi-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tsadidagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tse-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tshe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tteheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/tugrik.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name T ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name two-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name two-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/two.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _twodotshorizontal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalabove-ar.v2.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dotabove-ar alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotshorizontalcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotstahbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabovesmall alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotstahcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabovesmall alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twodotsverticalcenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twoinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/twosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/u-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/u-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/u.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar.fina alignment -1 index 1 name hamzaabove-ar alignment -1 index 2 name _damma-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar alignment -1 index 1 name hamzaabove-ar alignment -1 index 2 name _damma-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ubreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ucircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/udieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/udotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ugrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhorn.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name u ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uhungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/umacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/umacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscore.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscore_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscore_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscore_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/underscoredbl.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name underscore alignment -1 index 1 name underscore ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.init.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_3.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.init.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_4.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uni08B_9.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uniF_B_C_0.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name U.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uogonek.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name u ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ uni25B4 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upB_lackT_riangle.glif ================================================ triagup ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upD_ashA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upD_ownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name upDownArrow ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ uni25ED com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name upWhiteTriangle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ uni25EE ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ uni25B5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteT_riangle.glif ================================================ uni25B3 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ uni25EC com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name upWhiteTriangle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfA_rc.glif ================================================ uni25E0 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DA ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftA_rc.glif ================================================ uni25DC ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ uni25E4 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ uni25E9 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F4 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftT_riangle.glif ================================================ uni25F8 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ uni25D5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightA_rc.glif ================================================ uni25DD ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ uni25D4 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ uni25E5 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F7 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperR_ightT_riangle.glif ================================================ uni25F9 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ uni25A7 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ uni25A8 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upsilon-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upsilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upsilondieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/upsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/uring.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ushort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ustraight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ustraightstroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ustraight-cy ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/utilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/v.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vav-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vavdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vavholam-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ve-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ve-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ve-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name multiply ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/veh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/venus.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verseC_omma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ uni25EB ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalF_illC_ircle.glif ================================================ uni25CD ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalF_illS_quare.glif ================================================ uni25A5 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name V.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vhook.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vinvertedabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/vturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/w.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/w_w_w.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wasla-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wavyhamzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzawavy public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wavyhamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzawavy com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/waw-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/waw-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawD_otcenter-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotcenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawD_otcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotcenter-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawS_traight-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_hreeA_bove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_hreeA_bove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_wodots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawT_wodots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawring-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wawring-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wdieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteB_ullet.glif ================================================ openbullet ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteC_ircle.glif ================================================ circle ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteD_iamond.glif ================================================ uni25C7 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteH_exagon.glif ================================================ uni2B21 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ uni2B2D ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ uni25A3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteL_argeS_quare.glif ================================================ uni2B1C ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ uni25F1 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ uni25F2 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ uni2B26 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ uni2B28 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteP_arallelogram.glif ================================================ uni25B1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteP_entagon.glif ================================================ uni2B20 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteR_ect.glif ================================================ uni25AD ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ uni25A2 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ uni2B2B ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteS_mallS_quare.glif ================================================ H18551 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteS_quare.glif ================================================ H22073 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ uni25F0 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ uni25F3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ uni2B2F ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ uni25AF ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ uni2B1E ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/wmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/won.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name W ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/x.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/x.multiply.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name multiply ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/xi.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/y.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ycircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ydieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ydotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/year-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alefMaksura-ar.fina.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeh-farsi.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehF_ourbelow-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehH_amzaabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alefMaksura-ar alignment -1 index 1 name ringArabic com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehK_ashmiri-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.isol.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_ail-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreeabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_woabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehV_inverted-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarree-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarree-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment -1 index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_hreeabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yehbarreeT_woabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yen.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Y ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yeru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ygrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yi-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ymacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ymod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yod-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yoddagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ytilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yu-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/yu-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/z.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zah-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zainV_I_nvertedabove-ar.fina.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zainV_I_nvertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zayin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zayindagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ze-cy.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name zero-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zero.zero.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey zero com.schriftgestaltung.Glyphs.glyph.rightMetricsKey zero ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zeroinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zerosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zeta.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zhedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs/zmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/allah-ar.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/contents.plist ================================================ allah-ar allah-ar.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif ================================================ FILE: sources/CascadiaCode-Bold.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-Bold.ufo/groups.plist ================================================ public.kern1.eight-ar.inferior eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior public.kern1.five-ar.inferior five-arinferior five-arsuperior public.kern1.four-persian.urdu.inferior four-persian.urduinferior four-persian.urdusuperior public.kern1.seven-ar.inferior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior public.kern2.dot_below pehMeemabove-ar.init public.kern2.eight-ar.inferior eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior public.kern2.nine-ar.inferior nine-arinferior nine-arsuperior nine-persianinferior nine-persiansuperior public.kern2.seven-ar.inferior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior public.kern2.seven-persian.urdu.inferior seven-persian.urduinferior seven-persian.urdusuperior public.kern2.six-ar.inferior six-arinferior six-arsuperior ================================================ FILE: sources/CascadiaCode-Bold.ufo/layercontents.plist ================================================ public.default glyphs public.background glyphs.public.background ================================================ FILE: sources/CascadiaCode-Bold.ufo/lib.plist ================================================ com.github.googlei18n.ufo2ft.filters name decomposeTransformedComponents pre 1 exclude ij_acute baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen baht.BRACKET.600 dollar.BRACKET.600 lam_alef-ar lam_alef-ar.fina lam_alef-ar.fina.short lam_alef-ar.short lam_lam_heh-ar allah-ar _tahabove name propagateAnchors pre 1 com.schriftgestaltung.appVersion 1352 com.schriftgestaltung.customParameter.GSFont.Axes Name Weight Tag wght com.schriftgestaltung.customParameter.GSFont.DisplayStrings {}/braceleft_bar.liga com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment com.schriftgestaltung.customParameter.GSFont.disablesLastChange com.schriftgestaltung.customParameter.GSFont.note #Macro to convert the ligatures from editable to production mode def ligatureProcess(production): for glyph in Glyphs.font.glyphs: if glyph.color == 3: #2 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 1200 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 1200 elif glyph.color == 4: #3 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 2400 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 2400 elif glyph.color == 9: #4 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 3600 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 3600 ligatureProcess(True) #True for production mode, False for editable Settings for scaler for halves and thirds Third 30 30 30 40 40 40 80 -160 -340 Half 70 70 70 45 45 45 60 -220 -360 com.schriftgestaltung.customParameter.GSFont.useNiceNames 1 com.schriftgestaltung.customParameter.GSFontMaster.customValue 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue1 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue2 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue3 0 com.schriftgestaltung.customParameter.GSFontMaster.iconName com.schriftgestaltung.customParameter.GSFontMaster.weightValue 750 com.schriftgestaltung.customParameter.GSFontMaster.widthValue 0 com.schriftgestaltung.fontMasterID 8E053A5E-67DA-4970-A6F5-068DBFE5AD21 com.schriftgestaltung.fontMasterOrder 2 com.schriftgestaltung.keyboardIncrement 1 com.schriftgestaltung.weight Bold com.schriftgestaltung.weightValue 750 com.schriftgestaltung.width Regular public.glyphOrder A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat dtail e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR ef-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol hamza-ar highhamza-ar alef-ar alef-ar.fina alef-ar.fina.alt alef-ar.fina.rlig alef-ar.short alef-ar.fina.short alef-ar.fina.short.alt alef-ar.fina.short.rlig alefHamzaabove-ar alefHamzaabove-ar.fina alefHamzaabove-ar.fina.alt alefHamzaabove-ar.fina.rlig alefHamzabelow-ar alefHamzabelow-ar.fina alefHamzabelow-ar.fina.alt alefHamzabelow-ar.fina.rlig alefWavyhamzaabove-ar alefWavyhamzaabove-ar.fina alefWavyhamzaabove-ar.fina.alt alefWavyhamzaabove-ar.fina.rlig alefWavyhamzabelow-ar alefWavyhamzabelow-ar.fina alefWavyhamzabelow-ar.fina.alt alefWavyhamzabelow-ar.fina.rlig alefMadda-ar alefMadda-ar.fina alefMadda-ar.fina.alt alefMadda-ar.fina.rlig alefWasla-ar alefWasla-ar.fina alefWasla-ar.fina.alt alefWasla-ar.fina.rlig alefFathatan-ar alefFathatan-ar.fina alefFathatan-ar.fina.rlig highhamzaAlef-ar highhamzaAlef-ar.fina highhamzaAlef-ar.fina.rlig behDotless-ar behDotless-ar.alt behDotless-ar.fina behDotless-ar.fina.alt behDotless-ar.medi behDotless-ar.init behDotless-ar.init.alt beh-ar beh-ar.alt beh-ar.fina beh-ar.fina.alt beh-ar.medi beh-ar.init beh-ar.init.alt peh-ar peh-ar.fina peh-ar.fina.alt peh-ar.medi peh-ar.init peh-ar.init.alt peh-ar.alt beeh-ar beeh-ar.alt beeh-ar.fina beeh-ar.fina.alt beeh-ar.medi beeh-ar.init beeh-ar.init.alt beheh-ar beheh-ar.alt beheh-ar.fina beheh-ar.fina.alt beheh-ar.medi beheh-ar.init beheh-ar.init.alt alefMaksura-ar.medi alefMaksura-ar.init alefMaksura-ar.init.alt teh-ar teh-ar.alt teh-ar.fina teh-ar.fina.alt teh-ar.medi teh-ar.init teh-ar.init.alt tehRing-ar tehRing-ar.fina tehRing-ar.fina.alt tehRing-ar.medi tehRing-ar.init tehRing-ar.init.alt tehRing-ar.alt tehThreedotsdown-ar tehThreedotsdown-ar.fina tehThreedotsdown-ar.fina.alt tehThreedotsdown-ar.medi tehThreedotsdown-ar.init tehThreedotsdown-ar.init.alt tehThreedotsdown-ar.alt theh-ar theh-ar.alt theh-ar.fina theh-ar.fina.alt theh-ar.medi theh-ar.init theh-ar.init.alt tteh-ar tteh-ar.alt tteh-ar.fina tteh-ar.fina.alt tteh-ar.medi tteh-ar.init tteh-ar.init.alt tteheh-ar tteheh-ar.alt tteheh-ar.fina tteheh-ar.fina.alt tteheh-ar.medi tteheh-ar.init tteheh-ar.init.alt teheh-ar teheh-ar.alt teheh-ar.fina teheh-ar.fina.alt teheh-ar.medi teheh-ar.init teheh-ar.init.alt behThreedotshorizontalbelow-ar behThreedotshorizontalbelow-ar.fina behThreedotshorizontalbelow-ar.fina.alt behThreedotshorizontalbelow-ar.medi behThreedotshorizontalbelow-ar.init behThreedotshorizontalbelow-ar.init.alt behThreedotshorizontalbelow-ar.alt behThreedotsupabove-ar behThreedotsupabove-ar.fina behThreedotsupabove-ar.fina.alt behThreedotsupabove-ar.medi behThreedotsupabove-ar.init behThreedotsupabove-ar.init.alt behThreedotsupabove-ar.alt behThreedotsupbelow-ar behThreedotsupbelow-ar.fina behThreedotsupbelow-ar.fina.alt behThreedotsupbelow-ar.medi behThreedotsupbelow-ar.init behThreedotsupbelow-ar.init.alt behThreedotsupbelow-ar.alt tehThreedotsupbelow-ar tehThreedotsupbelow-ar.fina tehThreedotsupbelow-ar.fina.alt tehThreedotsupbelow-ar.medi tehThreedotsupbelow-ar.init tehThreedotsupbelow-ar.init.alt tehThreedotsupbelow-ar.alt behTwodotsbelowDotabove-ar behTwodotsbelowDotabove-ar.fina behTwodotsbelowDotabove-ar.fina.alt behTwodotsbelowDotabove-ar.medi behTwodotsbelowDotabove-ar.init behTwodotsbelowDotabove-ar.init.alt behTwodotsbelowDotabove-ar.alt behVinvertedbelow-ar behVinvertedbelow-ar.fina behVinvertedbelow-ar.fina.alt behVinvertedbelow-ar.medi behVinvertedbelow-ar.init behVinvertedbelow-ar.init.alt behVinvertedbelow-ar.alt behVabove-ar behVabove-ar.fina behVabove-ar.fina.alt behVabove-ar.medi behVabove-ar.init behVabove-ar.init.alt behVabove-ar.alt behVbelow-ar behVbelow-ar.fina behVbelow-ar.fina.alt behVbelow-ar.medi behVbelow-ar.init behVbelow-ar.init.alt behVbelow-ar.alt behhamzaabove-ar behhamzaabove-ar.fina behhamzaabove-ar.fina.alt behhamzaabove-ar.medi behhamzaabove-ar.init behhamzaabove-ar.alt jeem-ar jeem-ar.fina jeem-ar.medi jeem-ar.init tcheh-ar tcheh-ar.fina tcheh-ar.medi tcheh-ar.init tcheheh-ar tcheheh-ar.fina tcheheh-ar.medi tcheheh-ar.init tchehDotabove-ar tchehDotabove-ar.fina tchehDotabove-ar.medi tchehDotabove-ar.init nyeh-ar nyeh-ar.fina nyeh-ar.medi nyeh-ar.init dyeh-ar dyeh-ar.fina dyeh-ar.medi dyeh-ar.init hah-ar hah-ar.fina hah-ar.medi hah-ar.init hahHamzaabove-ar hahHamzaabove-ar.fina hahHamzaabove-ar.medi hahHamzaabove-ar.init hahTwodotsverticalabove-ar hahTwodotsverticalabove-ar.fina hahTwodotsverticalabove-ar.medi hahTwodotsverticalabove-ar.init hahTwodotshorizontalabove-ar hahTwodotshorizontalabove-ar.fina hahTwodotshorizontalabove-ar.medi hahTwodotshorizontalabove-ar.init hahThreedotsabove-ar hahThreedotsabove-ar.fina hahThreedotsabove-ar.medi hahThreedotsabove-ar.init hahThreedotsupbelow-ar hahThreedotsupbelow-ar.fina hahThreedotsupbelow-ar.medi hahThreedotsupbelow-ar.init khah-ar khah-ar.fina khah-ar.medi khah-ar.init hahTahbelow-ar hahTahbelow-ar.fina hahTahbelow-ar.medi hahTahbelow-ar.init hahTahTwodotshorizontalabove-ar hahTahTwodotshorizontalabove-ar.fina hahTahTwodotshorizontalabove-ar.medi hahTahTwodotshorizontalabove-ar.init hahFourbelow-ar hahFourbelow-ar.fina hahFourbelow-ar.medi hahFourbelow-ar.init jeemTwodotsabove-ar jeemTwodotsabove-ar.fina jeemTwodotsabove-ar.medi jeemTwodotsabove-ar.init dal-ar dal-ar.fina thal-ar thal-ar.fina thalAlefabove-ar thalAlefabove-ar.fina ddal-ar ddal-ar.fina dahal-ar dahal-ar.fina ddahal-ar ddahal-ar.fina dalRing-ar dalRing-ar.fina dalDotbelow-ar dalDotbelow-ar.fina dalDotbelowTah-ar dalDotbelowTah-ar.fina dul-ar dul-ar.fina dalThreedotsdown-ar dalThreedotsdown-ar.fina dalFourdots-ar dalFourdots-ar.fina dalVinvertedabove-ar dalVinvertedabove-ar.fina dalTwodotsverticalbelowTahabove-ar dalVinvertedbelow-ar dalVinvertedbelow-ar.fina dalThreedotsbelow-ar dalThreedotsbelow-ar.fina reh-ar reh-ar.fina zain-ar zain-ar.fina zainVInvertedabove-ar uni08B3 uni08B3.fina uni08B3.medi uni08B3.init uni08B4 uni08B4.fina uni08B4.medi uni08B4.init rreh-ar rreh-ar.fina rehv-ar rehv-ar.fina rehRing-ar rehRing-ar.fina rehDotbelow-ar rehDotbelow-ar.fina rehVbelow-ar rehVbelow-ar.fina rehDotbelowdotabove-ar rehDotbelowdotabove-ar.fina rehTwodots-ar rehTwodots-ar.fina jeh-ar jeh-ar.fina rehFourdots-ar rehFourdots-ar.fina rehVinvertedabove-ar rehVinvertedabove-ar.fina rehStroke-ar rehStroke-ar.fina rehTwodotsverticalabove-ar rehTwodotsverticalabove-ar.fina rehHamzaabove-ar rehHamzaabove-ar.fina rehTwodotshorizontalaboveTahabove-ar rehTwodotshorizontalaboveTahabove-ar.fina rehAlefabove-ar rehAlefabove-ar.fina rehLoop-ar rehLoop-ar.fina seen-ar seen-ar.alt seen-ar.fina seen-ar.fina.alt seen-ar.medi seen-ar.init seenDotbelowDotabove-ar seenDotbelowDotabove-ar.fina seenDotbelowDotabove-ar.fina.alt seenDotbelowDotabove-ar.medi seenDotbelowDotabove-ar.init seenDotbelowDotabove-ar.alt seenThreedotsbelow-ar seenThreedotsbelow-ar.fina seenThreedotsbelow-ar.fina.alt seenThreedotsbelow-ar.medi seenThreedotsbelow-ar.init seenThreedotsbelow-ar.alt sheen-ar sheen-ar.alt sheen-ar.fina sheen-ar.fina.alt sheen-ar.medi sheen-ar.init sheenDotbelow-ar sheenDotbelow-ar.fina sheenDotbelow-ar.fina.alt sheenDotbelow-ar.medi sheenDotbelow-ar.init sheenDotbelow-ar.alt seenThreedotsbelowthreedots-ar sad-ar sad-ar.alt sad-ar.fina sad-ar.fina.alt sad-ar.medi sad-ar.init sadTwodotsbelow-ar sadTwodotsbelow-ar.fina sadTwodotsbelow-ar.fina.alt sadTwodotsbelow-ar.medi sadTwodotsbelow-ar.init sadTwodotsbelow-ar.alt sadThreedots-ar sadThreedots-ar.fina sadThreedots-ar.fina.alt sadThreedots-ar.medi sadThreedots-ar.init sadThreedots-ar.alt sadThreedotsbelow-ar sadThreedotsbelow-ar.fina sadThreedotsbelow-ar.fina.alt sadThreedotsbelow-ar.medi sadThreedotsbelow-ar.init sadThreedotsbelow-ar.alt dad-ar dad-ar.alt dad-ar.fina dad-ar.fina.alt dad-ar.medi dad-ar.init dadDotbelow-ar dadDotbelow-ar.fina dadDotbelow-ar.fina.alt dadDotbelow-ar.medi dadDotbelow-ar.init dadDotbelow-ar.alt tah-ar tah-ar.fina tah-ar.medi tah-ar.init tahThreedots-ar tahThreedots-ar.fina tahThreedots-ar.medi tahThreedots-ar.init zah-ar zah-ar.fina zah-ar.medi zah-ar.init tahTwodotsabove-ar tahTwodotsabove-ar.fina tahTwodotsabove-ar.medi tahTwodotsabove-ar.init ain-ar ain-ar.fina ain-ar.medi ain-ar.init ainThreedots-ar ainThreedots-ar.fina ainThreedots-ar.medi ainThreedots-ar.init ghain-ar ghain-ar.fina ghain-ar.medi ghain-ar.init ghainDotbelow-ar ghainDotbelow-ar.fina ghainDotbelow-ar.medi ghainDotbelow-ar.init feh-ar feh-ar.alt feh-ar.fina feh-ar.fina.alt feh-ar.medi feh-ar.init feh-ar.init.alt veh-ar veh-ar.alt veh-ar.fina veh-ar.fina.alt veh-ar.medi veh-ar.init veh-ar.init.alt fehDotless-ar fehDotless-ar.alt fehDotless-ar.fina fehDotless-ar.fina.alt fehDotless-ar.medi fehDotless-ar.init fehDotless-ar.init.alt fehDotMovedbelow-ar fehDotbelow-ar fehDotbelow-ar.fina fehDotbelow-ar.fina.alt fehDotbelow-ar.medi fehDotbelow-ar.init fehDotbelow-ar.alt fehThreedotsbelow-ar fehThreedotsbelow-ar.fina fehThreedotsbelow-ar.fina.alt fehThreedotsbelow-ar.medi fehThreedotsbelow-ar.init fehThreedotsbelow-ar.alt fehDotbelowThreedotsabove-ar fehDotbelowThreedotsabove-ar.fina fehDotbelowThreedotsabove-ar.fina.alt fehDotbelowThreedotsabove-ar.medi fehDotbelowThreedotsabove-ar.init fehDotbelowThreedotsabove-ar.alt peheh-ar peheh-ar.fina peheh-ar.fina.alt peheh-ar.medi peheh-ar.init peheh-ar.init.alt peheh-ar.alt qafDotless-ar qafDotless-ar.medi qafDotless-ar.init qafDotless-ar.init.alt qafDotless-ar.fina qaf-ar qaf-ar.fina qaf-ar.medi qaf-ar.init qaf-ar.init.alt qafDotabove-ar qafDotabove-ar.fina qafDotabove-ar.medi qafDotabove-ar.init qafDotabove-ar.init.alt qafThreedotsabove-ar qafThreedotsabove-ar.fina qafThreedotsabove-ar.medi qafThreedotsabove-ar.init qafDotbelow-ar qafDotbelow-ar.fina qafDotbelow-ar.medi qafDotbelow-ar.init qafAfrican-ar qafAfrican-ar.fina qafAfrican-ar.medi qafAfrican-ar.init qafAfrican-ar.init.alt kaf-ar kaf-ar.fina kaf-ar.medi kaf-ar.init keheh-ar keheh-ar.fina keheh-ar.medi keheh-ar.init kehehTwodotshorizontalabove-ar kehehTwodotshorizontalabove-ar.fina kehehTwodotshorizontalabove-ar.medi kehehTwodotshorizontalabove-ar.init kehehThreedotsbelow-ar kehehThreedotsbelow-ar.fina kehehThreedotsbelow-ar.medi kehehThreedotsbelow-ar.init kehehDotabove-ar kehehDotabove-ar.fina kehehDotabove-ar.medi kehehDotabove-ar.init kehehThreedotsabove-ar kehehThreedotsabove-ar.fina kehehThreedotsabove-ar.medi kehehThreedotsabove-ar.init kehehThreedotsupbelow-ar kehehThreedotsupbelow-ar.fina kehehThreedotsupbelow-ar.medi kehehThreedotsupbelow-ar.init gaf-ar gaf-ar.fina gaf-ar.medi gaf-ar.init gafRing-ar gafRing-ar.fina gafRing-ar.medi gafRing-ar.init gafThreedots-ar gafThreedots-ar.fina gafThreedots-ar.medi gafThreedots-ar.init kafswash-ar kafswash-ar.fina kafswash-ar.fina.alt kafswash-ar.medi kafswash-ar.medi.alt kafswash-ar.init kafswash-ar.init.alt kafswash-ar.alt kafRing-ar kafRing-ar.fina kafRing-ar.medi kafRing-ar.init kafDotabove-ar kafDotabove-ar.fina kafDotabove-ar.medi kafDotabove-ar.init kafTwodotshorizontalabove-ar kafTwodotshorizontalabove-ar.fina kafTwodotshorizontalabove-ar.medi kafTwodotshorizontalabove-ar.init kafThreedotsbelow-ar kafThreedotsbelow-ar.fina kafThreedotsbelow-ar.medi kafThreedotsbelow-ar.init gafTwodotsbelow-ar gafTwodotsbelow-ar.fina gafTwodotsbelow-ar.medi gafTwodotsbelow-ar.init gafInvertedstroke-ar gafInvertedstroke-ar.fina gafInvertedstroke-ar.medi gafInvertedstroke-ar.init ng-ar ng-ar.fina ng-ar.medi ng-ar.init ngoeh-ar ngoeh-ar.fina ngoeh-ar.medi ngoeh-ar.init gueh-ar gueh-ar.fina gueh-ar.medi gueh-ar.init lam-ar lam-ar.fina lam-ar.medi lam-ar.medi.rlig lam-ar.init lam-ar.init.rlig lamVabove-ar lamVabove-ar.fina lamVabove-ar.medi lamVabove-ar.medi.rlig lamVabove-ar.init lamVabove-ar.init.rlig lamDotabove-ar lamDotabove-ar.fina lamDotabove-ar.medi lamDotabove-ar.medi.rlig lamDotabove-ar.init lamDotabove-ar.init.rlig lamThreedotsabove-ar lamThreedotsabove-ar.fina lamThreedotsabove-ar.medi lamThreedotsabove-ar.medi.rlig lamThreedotsabove-ar.init lamThreedotsabove-ar.init.rlig lamThreedotsbelow-ar lamThreedotsbelow-ar.fina lamThreedotsbelow-ar.medi lamThreedotsbelow-ar.medi.rlig lamThreedotsbelow-ar.init lamThreedotsbelow-ar.init.rlig lamDoublebar-ar lamDoublebar-ar.fina lamDoublebar-ar.medi lamDoublebar-ar.medi.rlig lamDoublebar-ar.init lamDoublebar-ar.init.rlig meem-ar meem-ar.fina meem-ar.medi meem-ar.init meemThreedotsabove-ar meemThreedotsabove-ar.fina meemThreedotsabove-ar.medi meemThreedotsabove-ar.init noon-ar noon-ar.fina noon-ar.medi noon-ar.init noon-ar.init.alt noonDotbelow-ar noonDotbelow-ar.fina noonDotbelow-ar.medi noonDotbelow-ar.init noonDotbelow-ar.init.alt noonghunna-ar noonghunna-ar.medi noonghunna-ar.init noonghunna-ar.init.alt noonghunna-ar.fina rnoon-ar rnoon-ar.fina rnoon-ar.medi rnoon-ar.init rnoon-ar.init.alt noonRing-ar noonRing-ar.fina noonRing-ar.medi noonRing-ar.init noonRing-ar.init.alt noonThreedotsabove-ar noonThreedotsabove-ar.fina noonThreedotsabove-ar.medi noonThreedotsabove-ar.init noonThreedotsabove-ar.init.alt noonAfrican-ar noonAfrican-ar.fina noonAfrican-ar.medi noonAfrican-ar.init noonAfrican-ar.init.alt heh-ar heh-ar.fina heh-ar.medi heh-ar.init hehHamzaabove-ar hehHamzaabove-ar.fina hehgoal-ar hehgoal-ar.fina hehgoal-ar.medi hehgoal-ar.init hehgoal-ar.init.alt hehgoalHamzaabove-ar hehgoalHamzaabove-ar.fina hehgoalHamzaabove-ar.medi hehgoalHamzaabove-ar.init hehgoalHamzaabove-ar.init.alt hehDoachashmee-ar hehDoachashmee-ar.fina hehDoachashmee-ar.medi hehDoachashmee-ar.init hehVinvertedabove-ar hehVinvertedabove-ar.fina hehVinvertedabove-ar.medi hehVinvertedabove-ar.init hehAlefabove-ar.init hehAlefabove-ar.init.fina tehMarbuta-ar tehMarbuta-ar.fina tehMarbutagoal-ar tehMarbutagoal-ar.fina waw-ar waw-ar.fina wawring-ar wawring-ar.fina wawTwodots-ar wawTwodots-ar.fina wawDotabove-ar wawDotabove-ar.fina wawHamzaabove-ar wawHamzaabove-ar.fina wawTwoabove-ar wawTwoabove-ar.fina wawThreeAbove-ar wawThreeAbove-ar.fina wawDotcenter-ar wawDotcenter-ar.fina wawStraight-ar kirghizoe-ar kirghizoe-ar.fina oe-ar oe-ar.fina u-ar u-ar.fina yu-ar yu-ar.fina kirghizyu-ar kirghizyu-ar.fina ve-ar ve-ar.fina alefMaksura-ar alefMaksura-ar.fina alefMaksura-ar.fina.alt alefMaksuraAlefabove-ar alefMaksuraAlefabove-ar.fina alefMaksuraAlefabove-ar.fina.alt alefTwoabove-ar alefTwoabove-ar.fina alefTwoabove-ar.fina.alt alefTwoabove-ar.fina.rlig alefThreeabove-ar alefThreeabove-ar.fina alefThreeabove-ar.fina.alt alefThreeabove-ar.fina.rlig yeh-ar yeh-ar.fina yeh-ar.fina.alt yeh-ar.medi yeh-ar.init yeh-ar.init.alt yehHamzaabove-ar yehHamzaabove-ar.fina yehHamzaabove-ar.fina.alt yehHamzaabove-ar.medi yehHamzaabove-ar.init yehHamzaabove-ar.init.alt yehVabove-ar yehVabove-ar.fina yehVabove-ar.fina.alt yehVabove-ar.medi yehVabove-ar.init yehVabove-ar.init.alt yehTwodotsbelowHamzaabove-ar yehTwodotsbelowHamzaabove-ar.fina yehTwodotsbelowHamzaabove-ar.medi yehTwodotsbelowHamzaabove-ar.init yehTwodotsbelowHamzaabove-ar.init.alt yehTwodotsbelowDotabove-ar yehTwodotsbelowDotabove-ar.fina yehTwodotsbelowDotabove-ar.medi yehTwodotsbelowDotabove-ar.init yehTwodotsbelowDotabove-ar.init.alt yehVinverted-farsi yehVinverted-farsi.fina yehVinverted-farsi.fina.alt yehVinverted-farsi.medi yehVinverted-farsi.init yehVinverted-farsi.init.alt yeh-farsi yeh-farsi.fina yeh-farsi.fina.alt yeh-farsi.medi yeh-farsi.init yeh-farsi.init.alt yehTwodotsabove-farsi yehTwodotsabove-farsi.fina yehTwodotsabove-farsi.fina.alt yehTwodotsabove-farsi.medi yehTwodotsabove-farsi.init yehTwodotsabove-farsi.init.alt yehThreedotsabove-farsi yehThreedotsabove-farsi.fina yehThreedotsabove-farsi.fina.alt yehThreedotsabove-farsi.medi yehThreedotsabove-farsi.init yehThreedotsabove-farsi.init.alt yehTwoabove-farsi yehTwoabove-farsi.fina yehTwoabove-farsi.fina.alt yehTwoabove-farsi.medi yehTwoabove-farsi.init yehTwoabove-farsi.init.alt yehThreeabove-farsi yehThreeabove-farsi.fina yehThreeabove-farsi.fina.alt yehThreeabove-farsi.medi yehThreeabove-farsi.init yehThreeabove-farsi.init.alt yehFourbelow-farsi yehFourbelow-farsi.fina yehFourbelow-farsi.fina.alt yehFourbelow-farsi.medi yehFourbelow-farsi.init yehFourbelow-farsi.init.alt yehTail-ar yehTail-ar.fina yehTail-ar.fina.alt yehKashmiri-ar yehKashmiri-ar.fina yehKashmiri-ar.fina.alt yehKashmiri-ar.medi yehKashmiri-ar.init yehKashmiri-ar.init.alt e-ar e-ar.fina e-ar.fina.alt e-ar.medi e-ar.init e-ar.init.alt yehThreedotsbelow-ar yehThreedotsbelow-ar.fina yehThreedotsbelow-ar.fina.alt yehThreedotsbelow-ar.medi yehThreedotsbelow-ar.init yehThreedotsbelow-ar.init.alt yehbarree-ar yehbarree-ar.fina yehbarreeHamzaabove-ar yehbarreeHamzaabove-ar.fina yehbarreeTwoabove-ar yehbarreeTwoabove-ar.fina yehbarreeTwoabove-ar.medi yehbarreeTwoabove-ar.init yehbarreeTwoabove-ar.init.alt yehbarreeThreeabove-ar yehbarreeThreeabove-ar.fina yehbarreeThreeabove-ar.medi yehbarreeThreeabove-ar.init yehbarreeThreeabove-ar.init.alt yehRohingya-ar yehRohingya-ar.isol yehRohingya-ar.fina highhamzaWaw-ar highhamzaWaw-ar.fina uHamzaabove-ar uHamzaabove-ar.fina highhamzaYeh-ar highhamzaYeh-ar.fina highhamzaYeh-ar.fina.alt highhamzaYeh-ar.medi highhamzaYeh-ar.init highhamzaYeh-ar.init.alt ae-ar ae-ar.fina seenFourdotsabove-ar seenFourdotsabove-ar.fina seenFourdotsabove-ar.fina.alt seenFourdotsabove-ar.medi seenFourdotsabove-ar.init seenFourdotsabove-ar.alt ainTwodotshorizontalabove-ar ainTwodotshorizontalabove-ar.fina ainTwodotshorizontalabove-ar.medi ainTwodotshorizontalabove-ar.init ainThreedotsdownabove-ar ainThreedotsdownabove-ar.fina ainThreedotsdownabove-ar.medi ainThreedotsdownabove-ar.init ainTwodotsverticalabove-ar ainTwodotsverticalabove-ar.fina ainTwodotsverticalabove-ar.medi ainTwodotsverticalabove-ar.init fehTwodotsbelow-ar fehTwodotsbelow-ar.fina fehTwodotsbelow-ar.fina.alt fehTwodotsbelow-ar.medi fehTwodotsbelow-ar.init fehTwodotsbelow-ar.alt fehThreedotsupbelow-ar fehThreedotsupbelow-ar.fina fehThreedotsupbelow-ar.fina.alt fehThreedotsupbelow-ar.medi fehThreedotsupbelow-ar.init fehThreedotsupbelow-ar.alt meemDotabove-ar meemDotabove-ar.fina meemDotabove-ar.medi meemDotabove-ar.init meemDotbelow-ar meemDotbelow-ar.fina meemDotbelow-ar.medi meemDotbelow-ar.init noonTwodotsbelow-ar noonTwodotsbelow-ar.fina noonTwodotsbelow-ar.medi noonTwodotsbelow-ar.init noonTwodotsbelow-ar.init.alt noonTahabove-ar noonTahabove-ar.fina noonTahabove-ar.medi noonTahabove-ar.init noonTahabove-ar.init.alt noonVabove-ar noonVabove-ar.fina noonVabove-ar.medi noonVabove-ar.init noonVabove-ar.init.alt lamBar-ar lamBar-ar.fina lamBar-ar.medi lamBar-ar.medi.rlig lamBar-ar.init lamBar-ar.init.rlig seenTwodotshorizontalabove-ar seenTwodotshorizontalabove-ar.fina seenTwodotsverticalabove-ar.fina.alt seenTwodotshorizontalabove-ar.medi seenTwodotshorizontalabove-ar.init seenTwodotsverticalabove-ar.alt seenTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar.fina seenTahTwodotshorizontalabove-ar.fina.alt seenTahTwodotshorizontalabove-ar.medi seenTahTwodotshorizontalabove-ar.init seenTahTwodotshorizontalabove-ar.alt hahTahabove-ar hahTahabove-ar.fina hahTahabove-ar.medi hahTahabove-ar.init seenFourabove-ar seenFourabove-ar.fina seenFourabove-ar.fina.alt seenFourabove-ar.medi seenFourabove-ar.init seenFourabove-ar.alt seenVinvertedabove-ar seenVinvertedabove-ar.fina seenVinvertedabove-ar.fina.alt seenVinvertedabove-ar.medi seenVinvertedabove-ar.init seenVinvertedabove-ar.alt kashida-ar behMeemabove-ar behMeemabove-ar.fina behMeemabove-ar.fina.alt behMeemabove-ar.medi behMeemabove-ar.init behMeemabove-ar.init.alt behMeemabove-ar.alt fehDotMovedbelow-ar.init fehDotMovedbelow-ar.medi pehMeemabove-ar pehMeemabove-ar.fina pehMeemabove-ar.fina.alt pehMeemabove-ar.medi pehMeemabove-ar.init pehMeemabove-ar.init.alt pehMeemabove-ar.alt uni08B9.fina tehTehabove-ar tehTehabove-ar.fina tehTehabove-ar.fina.alt tehTehabove-ar.medi tehTehabove-ar.init tehTehabove-ar.init.alt tehTehabove-ar.alt yehTwodotsbelowNoonabove-ar yehTwodotsbelowNoonabove-ar.fina yehTwodotsbelowNoonabove-ar.fina.alt yehTwodotsbelowNoonabove-ar.medi yehTwodotsbelowNoonabove-ar.init yehTwodotsbelowNoonabove-ar.init.alt lam_alef-ar lam_alef-ar.fina lam_alef-ar.fina.short lam_alef-ar.short lam_alefHamzaabove-ar lam_alefHamzaabove-ar.fina lam_alefHamzabelow-ar lam_alefHamzabelow-ar.fina lam_alefMadda-ar lam_alefMadda-ar.fina lam_lam_heh-ar lam_alefWasla-ar lam_alefWasla-ar.fina allah-ar alef-hb alefpatah-hb alefqamats-hb alefdagesh-hb bet-hb betdagesh-hb gimel-hb gimeldagesh-hb dalet-hb daletdagesh-hb he-hb hedagesh-hb vav-hb vavdagesh-hb vavholam-hb zayin-hb zayindagesh-hb het-hb tet-hb tetdagesh-hb yod-hb yoddagesh-hb finalkaf-hb finalkafdagesh-hb kaf-hb kafdagesh-hb lamed-hb lameddagesh-hb finalmem-hb mem-hb memdagesh-hb finalnun-hb nun-hb nundagesh-hb samekh-hb samekhdagesh-hb ayin-hb finalpe-hb finalpedagesh-hb pe-hb pedagesh-hb finaltsadi-hb tsadi-hb tsadidagesh-hb qof-hb qofdagesh-hb resh-hb reshdagesh-hb shin-hb shinshindot-hb shinsindot-hb shindageshshindot-hb shindageshsindot-hb shindagesh-hb tav-hb tavdagesh-hb thetamod zmod zero one two three four five six seven eight nine zero.zero one.half two.half three.half four.half zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths decimalseparator-ar thousandseparator-ar zero-ar one-ar two-ar three-ar four-ar five-ar six-ar seven-ar eight-ar nine-ar zero-persian one-persian two-persian three-persian four-persian five-persian six-persian seven-persian eight-persian nine-persian two-persian.small01 three-persian.small01 four-persian.small01 four-persian.urdu seven-persian.urdu eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior five-arinferior five-arsuperior five-persianinferior five-persiansuperior four-arinferior four-arsuperior four-persianinferior four-persiansuperior nine-arinferior nine-arsuperior nine-persianinferior nine-persiansuperior one-arinferior one-arsuperior one-persianinferior one-persiansuperior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior six-arinferior six-arsuperior six-persianinferior six-persiansuperior three-arinferior three-arsuperior three-persianinferior three-persiansuperior two-arinferior two-arsuperior two-persianinferior two-persiansuperior four-persian.urduinferior seven-persian.urduinferior four-persian.urdusuperior seven-persian.urdusuperior zero-arinferior zero-arsuperior zero-persianinferior zero-persiansuperior period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq paseq-hb geresh-hb gershayim-hb maqaf-hb threedots-ar doubleverticalbarbelowSymbol-ar doubleverticalbarbelowSymbol-ar.comb asteriskArt-ar fullstop-ar comma-ar semicolon-ar question-ar number-ar asterisk-ar year-ar footnotemarker-ar pagenumber-ar dateseparator-ar verseComma-ar misraComma-ar sindhiampersand-ar endofayah-ar parenleft-ar parenright-ar anoteleia questiongreek punctuationspace space nbspace CR lineseparator .notdef ray-ar afghani-ar baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand ratio strictlyequivalentto vectorOrCrossProduct greater.alt less.alt greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo boxDoubleDownAndHorizontal.stypo boxDoubleDownAndLeft.stypo boxDoubleDownAndRight.stypo boxDoubleHorizontal.stypo boxDoubleUpAndHorizontal.stypo boxDoubleUpAndLeft.stypo boxDoubleUpAndRight.stypo boxDoubleVertical.stypo boxDoubleVerticalAndHorizontal.stypo boxDoubleVerticalAndLeft.stypo boxDoubleVerticalAndRight.stypo boxDownDoubleAndHorizontalSingle.stypo boxDownDoubleAndLeftSingle.stypo boxDownDoubleAndRightSingle.stypo boxDownHeavyAndHorizontalLight.stypo boxDownHeavyAndLeftLight.stypo boxDownHeavyAndLeftUpLight.stypo boxDownHeavyAndRightLight.stypo boxDownHeavyAndRightUpLight.stypo boxDownHeavyAndUpHorizontalLight.stypo boxDownLightAndHorizontalHeavy.stypo boxDownLightAndLeftHeavy.stypo boxDownLightAndLeftUpHeavy.stypo boxDownLightAndRightHeavy.stypo boxDownLightAndRightUpHeavy.stypo boxDownLightAndUpHorizontalHeavy.stypo boxDownSingleAndHorizontalDouble.stypo boxDownSingleAndLeftDouble.stypo boxDownSingleAndRightDouble.stypo boxHeavyDoubleDashHorizontal.stypo boxHeavyDoubleDashVertical.stypo boxHeavyDown.stypo boxHeavyDownAndHorizontal.stypo boxHeavyDownAndLeft.stypo boxHeavyDownAndRight.stypo boxHeavyHorizontal.stypo boxHeavyLeft.stypo boxHeavyLeftAndLightRight.stypo boxHeavyQuadrupleDashHorizontal.stypo boxHeavyQuadrupleDashVertical.stypo boxHeavyRight.stypo boxHeavyTripleDashHorizontal.stypo boxHeavyTripleDashVertical.stypo boxHeavyUp.stypo boxHeavyUpAndHorizontal.stypo boxHeavyUpAndLeft.stypo boxHeavyUpAndLightDown.stypo boxHeavyUpAndRight.stypo boxHeavyVertical.stypo boxHeavyVerticalAndHorizontal.stypo boxHeavyVerticalAndLeft.stypo boxHeavyVerticalAndRight.stypo boxLeftDownHeavyAndRightUpLight.stypo boxLeftHeavyAndRightDownLight.stypo boxLeftHeavyAndRightUpLight.stypo boxLeftHeavyAndRightVerticalLight.stypo boxLeftLightAndRightDownHeavy.stypo boxLeftLightAndRightUpHeavy.stypo boxLeftLightAndRightVerticalHeavy.stypo boxLeftUpHeavyAndRightDownLight.stypo boxLightArcDownAndLeft.stypo boxLightArcDownAndRight.stypo boxLightArcUpAndLeft.stypo boxLightArcUpAndRight.stypo boxLightDiagonalCross.stypo boxLightDiagonalUpperLeftToLowerRight.stypo boxLightDiagonalUpperRightToLowerLeft.stypo boxLightDoubleDashHorizontal.stypo boxLightDoubleDashVertical.stypo boxLightDown.stypo boxLightDownAndHorizontal.stypo boxLightDownAndLeft.stypo boxLightDownAndRight.stypo boxLightHorizontal.stypo boxLightLeft.stypo boxLightLeftAndHeavyRight.stypo boxLightQuadrupleDashHorizontal.stypo boxLightQuadrupleDashVertical.stypo boxLightRight.stypo boxLightTripleDashHorizontal.stypo boxLightTripleDashVertical.stypo boxLightUp.stypo boxLightUpAndHeavyDown.stypo boxLightUpAndHorizontal.stypo boxLightUpAndLeft.stypo boxLightUpAndRight.stypo boxLightVertical.stypo boxLightVerticalAndHorizontal.stypo boxLightVerticalAndLeft.stypo boxLightVerticalAndRight.stypo boxRightDownHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftDownLight.stypo boxRightHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftVerticalLight.stypo boxRightLightAndLeftDownHeavy.stypo boxRightLightAndLeftUpHeavy.stypo boxRightLightAndLeftVerticalHeavy.stypo boxRightUpHeavyAndLeftDownLight.stypo boxUpDoubleAndHorizontalSingle.stypo boxUpDoubleAndLeftSingle.stypo boxUpDoubleAndRightSingle.stypo boxUpHeavyAndDownHorizontalLight.stypo boxUpHeavyAndHorizontalLight.stypo boxUpHeavyAndLeftDownLight.stypo boxUpHeavyAndLeftLight.stypo boxUpHeavyAndRightDownLight.stypo boxUpHeavyAndRightLight.stypo boxUpLightAndDownHorizontalHeavy.stypo boxUpLightAndHorizontalHeavy.stypo boxUpLightAndLeftDownHeavy.stypo boxUpLightAndLeftHeavy.stypo boxUpLightAndRightDownHeavy.stypo boxUpLightAndRightHeavy.stypo boxUpSingleAndHorizontalDouble.stypo boxUpSingleAndLeftDouble.stypo boxUpSingleAndRightDouble.stypo boxVerticalDoubleAndHorizontalSingle.stypo boxVerticalDoubleAndLeftSingle.stypo boxVerticalDoubleAndRightSingle.stypo boxVerticalHeavyAndHorizontalLight.stypo boxVerticalHeavyAndLeftLight.stypo boxVerticalHeavyAndRightLight.stypo boxVerticalLightAndHorizontalHeavy.stypo boxVerticalLightAndLeftHeavy.stypo boxVerticalLightAndRightHeavy.stypo boxVerticalSingleAndHorizontalDouble.stypo boxVerticalSingleAndLeftDouble.stypo boxVerticalSingleAndRightDouble.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl replacementCharacter shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga equal_greater_greater.liga equal_less_less.liga greater_equal.liga greater_greater.liga greater_greater_equal.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_equal.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille sindhipostpositionmen-ar percent-ar cuberoot-ar fourthroot-ar perthousand-ar numbermark-ar samvat-ar numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK shindot-hb patah-hb qamats-hb holam-hb holamhaser-hb dagesh-hb sindot-hb qamatsqatan-hb tahcenter-ar tahbelow-ar dotabove-ar dotbelow-ar dotcenter-ar twodotsverticalabove-ar twodotsverticalbelow-ar twodotsverticalcenter-ar twodotshorizontalabove-ar twodotshorizontalabove-ar.v2 twodotshorizontalbelow-ar twodotshorizontalcenter-ar threedotsdownabove-ar threedotsdownbelow-ar threedotsdowncenter-ar threedotsupabove-ar threedotsupabove-ar.v2 threedotsupbelow-ar threedotsupcenter-ar fourdotsabove-ar fourdotsbelow-ar fourdotscenter-ar wasla-ar wavyhamzaabove-ar gafsarkashabove-ar wavyhamzabelow-ar alefabove-ar alefbelow-ar hamzaabove-ar hamzabelow-ar fathatan-ar dammatan-ar kasratan-ar fatha-ar damma-ar kasra-ar shadda-ar sukun-ar madda-ar noonghunnaabove-ar vabove-ar vinvertedabove-ar meemStopabove-ar noonabove-ar perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case uniFBC0 LIG _twodotsverticalabove-ar _fourdotscenter-ar seenThreedotsbelowthreedots-ar.init _four-persian.small01 _alefWavyhamzabelow-ar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _highhamzaAlef-ar.fina.rlig _alefThreeabove-ar.fina.rlig _alefTwoabove-ar.fina.rlig _alefWasla-ar.fina.rlig _alefMadda-ar.fina.rlig _alefHamzabelow-ar.fina.rlig _alefHamzaabove-ar.fina.rlig _alef-ar.fina.short.rlig _alef-ar.fina.rlig seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt fehDotMovedbelow-ar.alt dalTwodotsverticalbelowTahabove-ar.fina seenThreedotsbelowthreedots-ar.fina seenThreedotsbelowthreedots-ar.medi _fatha-ar _twodotshorizontal-ar _hamzasmall-ar _threedots-ar _dot-ar _tahabove _hehgoalcomma _alefabove ringArabic _ringArabic _dots.horz.below _vinvertedbelow-ar _vabove _vbelow-ar twodotstahcenter-ar _tahabovesmall twodotstahbelow-ar four-persiancenter-ar _dotVInvertedabove _stroke _twodotstah _invertedstroke _doublebar _bar _damma-ar four-persianbelow-ar _yehRohingya-ar.fina _yehRohingya-ar _onedotstah _dotVabove tehabove-ar.small _cuberoot_fourthroot-ar _fourthroot-ar _hamzawavy _alefFathatan-ar.fina.rlig zainVInvertedabove-ar.fina fehDotMovedbelow-ar.fina fehDotMovedbelow-ar.fina.alt checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo public.postscriptNames A-cy uni0410 Abreveacute uni1EAE Abrevedotbelow uni1EB6 Abrevegrave uni1EB0 Abrevehookabove uni1EB2 Abrevetilde uni1EB4 Acaron uni01CD Acircumflexacute uni1EA4 Acircumflexdotbelow uni1EAC Acircumflexgrave uni1EA6 Acircumflexhookabove uni1EA8 Acircumflextilde uni1EAA Adotbelow uni1EA0 Ahookabove uni1EA2 Alpha-latin uni2C6D Asmall uni1D00 Astroke uni023A Be-cy uni0411 Che-cy uni0427 Chedescender-cy uni04B6 Cstroke uni023B Dafrican uni0189 De-cy uni0414 De-cy.loclBGR uni0414.loclBGR Delta uni0394 Dje-cy uni0402 Dze-cy uni0405 Dzhe-cy uni040F E-cy uni0404 Ecircumflexacute uni1EBE Ecircumflexdotbelow uni1EC6 Ecircumflexgrave uni1EC0 Ecircumflexhookabove uni1EC2 Ecircumflextilde uni1EC4 Edotbelow uni1EB8 Ef-cy uni0424 Ef-cy.loclBGR uni0424.loclBGR Ehookabove uni1EBA El-cy uni041B El-cy.loclBGR uni041B.loclBGR Em-cy uni041C En-cy uni041D Endescender-cy uni04A2 Eopen uni0190 Er-cy uni0420 Ereversed uni018E Ereversed-cy uni042D Es-cy uni0421 Esh uni01A9 Etilde uni1EBC Ezh uni01B7 Fhook uni0191 Gammaafrican uni0194 Gcommaaccent uni0122 Ge-cy uni0413 Germandbls uni1E9E Ghestroke-cy uni0492 Gheupturn-cy uni0490 Gje-cy uni0403 Gsmall uni0262 Gstroke uni01E4 Ha-cy uni0425 Hadescender-cy uni04B2 Hardsign-cy uni042A Hcaron uni021E Hdotbelow uni1E24 I-cy uni0406 Ia-cy uni042F Idotbelow uni1ECA Ie-cy uni0415 Iegrave-cy uni0400 Ihookabove uni1EC8 Ii-cy uni0418 Iigrave-cy uni040D Iishort-cy uni0419 Imacron-cy uni04E2 Io-cy uni0401 Iotaafrican uni0196 Ismall uni026A Iu-cy uni042E Jacute uni00A40301 Je-cy uni0408 Ka-cy uni041A Kacute uni1E30 Kadescender-cy uni049A KaiSymbol uni03CF Kcommaaccent uni0136 Kdotbelow uni1E32 Kje-cy uni040C Klinebelow uni1E34 Lbar uni023D Lcommaaccent uni013B Ldotbelow uni1E36 Lje-cy uni0409 Llinebelow uni1E3A Lmiddletilde uni2C62 Lsmall uni029F Ncommaaccent uni0145 Nhookleft uni019D Nje-cy uni040A Nlinebelow uni1E48 O-cy uni041E Obarred-cy uni04E8 Ocircumflexacute uni1ED0 Ocircumflexdotbelow uni1ED8 Ocircumflexgrave uni1ED2 Ocircumflexhookabove uni1ED4 Ocircumflextilde uni1ED6 Odotbelow uni1ECC Ohm uni2126 Ohookabove uni1ECE Ohornacute uni1EDA Ohorndotbelow uni1EE2 Ohorngrave uni1EDC Ohornhookabove uni1EDE Ohorntilde uni1EE0 Omacronacute uni1E52 Omacrongrave uni1E50 Omega uni03A9 Oogonek uni01EA Oopen uni0186 Palochka-cy uni04C0 Pe-cy uni041F Rcommaaccent uni0156 Rdotbelow uni1E5A Schwa uni018F Schwa-cy uni04D8 Scommaaccent uni0218 Sdotbelow uni1E62 Sha-cy uni0428 Shcha-cy uni0429 Shha-cy uni04BA Softsign-cy uni042C Tcedilla uni0162 Tcommaaccent uni021A Tdiagonalstroke uni023E Te-cy uni0422 Tlinebelow uni1E6E Tse-cy uni0426 Tshe-cy uni040B U-cy uni0423 Udotbelow uni1EE4 Uhookabove uni1EE6 Uhornacute uni1EE8 Uhorndotbelow uni1EF0 Uhorngrave uni1EEA Uhornhookabove uni1EEC Uhorntilde uni1EEE Umacron-cy uni04EE Upsilonafrican uni01B1 Ushort-cy uni040E Ustraight-cy uni04AE Ustraightstroke-cy uni04B0 Ve-cy uni0412 Vhook uni01B2 Vturned uni0245 Ydotbelow uni1EF4 Yeru-cy uni042B Yhookabove uni1EF6 Yi-cy uni0407 Ymacron uni0232 Ytilde uni1EF8 Ze-cy uni0417 Zhe-cy uni0416 Zhedescender-cy uni0496 _alef-ar.fina.rlig _alefar.fina.rlig _alef-ar.fina.short.rlig _alefar.fina.short.rlig _alefFathatan-ar.fina.rlig _alefFathatanar.fina.rlig _alefHamzaabove-ar.fina.rlig _alefHamzaabovear.fina.rlig _alefHamzabelow-ar.fina.rlig _alefHamzabelowar.fina.rlig _alefMadda-ar.fina.rlig _alefMaddaar.fina.rlig _alefThreeabove-ar.fina.rlig _alefThreeabovear.fina.rlig _alefTwoabove-ar.fina.rlig _alefTwoabovear.fina.rlig _alefWasla-ar.fina.rlig _alefWaslaar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _alefWavyhamzaabovear.fina.rlig _alefWavyhamzabelow-ar.fina.rlig _alefWavyhamzabelowar.fina.rlig _cuberoot_fourthroot-ar _cuberoot_fourthrootar _damma-ar _dammaar _dot-ar _dotar _fatha-ar _fathaar _four-persian.small01 _fourpersian.small01 _fourdotscenter-ar _fourdotscenterar _fourthroot-ar _fourthrootar _hamzasmall-ar _hamzasmallar _highhamzaAlef-ar.fina.rlig _highhamzaAlefar.fina.rlig _threedots-ar _threedotsar _twodotshorizontal-ar _twodotshorizontalar _twodotsverticalabove-ar _twodotsverticalabovear _vbelow-ar _vbelowar _vinvertedbelow-ar _vinvertedbelowar _yehRohingya-ar _yehRohingyaar _yehRohingya-ar.fina _yehRohingyaar.fina a-cy uni0430 abreveacute uni1EAF abrevedotbelow uni1EB7 abrevegrave uni1EB1 abrevehookabove uni1EB3 abrevetilde uni1EB5 acaron uni01CE acircumflexacute uni1EA5 acircumflexdotbelow uni1EAD acircumflexgrave uni1EA7 acircumflexhookabove uni1EA9 acircumflextilde uni1EAB acknowledgeControl uni2406 acknowledgeControl.ss20 uni2406.ss20 acutetonecomb uni0341 adotbelow uni1EA1 ae-ar uni06D5 ae-ar.fina uni06D5.fina afghani-ar uni060B ahookabove uni1EA3 ain-ar uni0639 ain-ar.fina uniFECA ain-ar.init uniFECB ain-ar.medi uniFECC ainThreedots-ar uni06A0 ainThreedots-ar.fina uni06A0.fina ainThreedots-ar.init uni06A0.init ainThreedots-ar.medi uni06A0.medi ainThreedotsdownabove-ar uni075E ainThreedotsdownabove-ar.fina uni075E.fina ainThreedotsdownabove-ar.init uni075E.init ainThreedotsdownabove-ar.medi uni075E.medi ainTwodotshorizontalabove-ar uni075D ainTwodotshorizontalabove-ar.fina uni075D.fina ainTwodotshorizontalabove-ar.init uni075D.init ainTwodotshorizontalabove-ar.medi uni075D.medi ainTwodotsverticalabove-ar uni075F ainTwodotsverticalabove-ar.fina uni075F.fina ainTwodotsverticalabove-ar.init uni075F.init ainTwodotsverticalabove-ar.medi uni075F.medi alef-ar uni0627 alef-ar.fina uniFE8E alef-ar.fina.alt uni0627.fina.alt alef-ar.fina.rlig uni0627.fina.rlig alef-ar.fina.short uni0627.fina.short alef-ar.fina.short.alt uni0627.fina.short.alt alef-ar.fina.short.rlig uni0627.fina.short.rlig alef-ar.short uni0627.short alef-hb uni05D0 alefFathatan-ar uniFD3D alefFathatan-ar.fina uniFD3C alefFathatan-ar.fina.rlig uniFD3D.fina.rlig alefHamzaabove-ar uni0623 alefHamzaabove-ar.fina uniFE84 alefHamzaabove-ar.fina.alt uni0623.fina.alt alefHamzaabove-ar.fina.rlig uni0623.fina.rlig alefHamzabelow-ar uni0625 alefHamzabelow-ar.fina uniFE88 alefHamzabelow-ar.fina.alt uni0625.fina.alt alefHamzabelow-ar.fina.rlig uni0625.fina.rlig alefMadda-ar uni0622 alefMadda-ar.fina uniFE82 alefMadda-ar.fina.alt uni0622.fina.alt alefMadda-ar.fina.rlig uni0622.fina.rlig alefMaksura-ar uni0649 alefMaksura-ar.fina uniFEF0 alefMaksura-ar.fina.alt uni0649.fina.alt alefMaksura-ar.init uniFBE8 alefMaksura-ar.init.alt uni0649.init.alt alefMaksura-ar.medi uniFBE9 alefMaksuraAlefabove-ar uniFC5D alefMaksuraAlefabove-ar.fina uniFC90 alefMaksuraAlefabove-ar.fina.alt uniFC5D.fina.alt alefThreeabove-ar uni0774 alefThreeabove-ar.fina uni0774.fina alefThreeabove-ar.fina.alt uni0774.fina.alt alefThreeabove-ar.fina.rlig uni0774.fina.rlig alefTwoabove-ar uni0773 alefTwoabove-ar.fina uni0773.fina alefTwoabove-ar.fina.alt uni0773.fina.alt alefTwoabove-ar.fina.rlig uni0773.fina.rlig alefWasla-ar uni0671 alefWasla-ar.fina uniFB51 alefWasla-ar.fina.alt uni0671.fina.alt alefWasla-ar.fina.rlig uni0671.fina.rlig alefWavyhamzaabove-ar uni0672 alefWavyhamzaabove-ar.fina uni0672.fina alefWavyhamzaabove-ar.fina.alt uni0672.fina.alt alefWavyhamzaabove-ar.fina.rlig uni0672.fina.rlig alefWavyhamzabelow-ar uni0673 alefWavyhamzabelow-ar.fina uni0673.fina alefWavyhamzabelow-ar.fina.alt uni0673.fina.alt alefWavyhamzabelow-ar.fina.rlig uni0673.fina.rlig alefabove-ar uni0670 alefbelow-ar uni0656 alefdagesh-hb uniFB30 alefdagesh-hb.BRACKET.500 uniFB30.BRACKET.500 alefpatah-hb uniFB2E alefqamats-hb uniFB2F allah-ar uniFDF2 alpha-latin uni0251 apostrophemod uni02BC asterisk-ar uni066D asteriskArt-ar uni06DE ayin-hb uni05E2 backspaceControl uni2408 backspaceControl.ss20 uni2408.ss20 baht uni0E3F baht.BRACKET.600 uni0E3F.BRACKET.600 be-cy uni0431 be-cy.loclSRB uni0431.loclSRB beeh-ar uni067B beeh-ar.alt uni067B.alt beeh-ar.fina uniFB53 beeh-ar.fina.alt uni067B.fina.alt beeh-ar.init uniFB54 beeh-ar.init.alt uni067B.init.alt beeh-ar.medi uniFB55 beh-ar uni0628 beh-ar.alt uni0628.alt beh-ar.fina uniFE90 beh-ar.fina.alt uni0628.fina.alt beh-ar.init uniFE91 beh-ar.init.alt uni0628.init.alt beh-ar.medi uniFE92 behDotless-ar uni066E behDotless-ar.alt uni066E.alt behDotless-ar.fina uni066E.fina behDotless-ar.fina.alt uni066E.fina.alt behDotless-ar.init uni066E.init behDotless-ar.init.alt uni066E.init.alt behDotless-ar.medi uni066E.medi behMeemabove-ar uni08B6 behMeemabove-ar.alt uni08B6.alt behMeemabove-ar.fina uni08B6.fina behMeemabove-ar.fina.alt uni08B6.fina.alt behMeemabove-ar.init uni08B6.init behMeemabove-ar.init.alt uni08B6.init.alt behMeemabove-ar.medi uni08B6.medi behThreedotshorizontalbelow-ar uni0750 behThreedotshorizontalbelow-ar.alt uni0750.alt behThreedotshorizontalbelow-ar.fina uni0750.fina behThreedotshorizontalbelow-ar.fina.alt uni0750.fina.alt behThreedotshorizontalbelow-ar.init uni0750.init behThreedotshorizontalbelow-ar.init.alt uni0750.init.alt behThreedotshorizontalbelow-ar.medi uni0750.medi behThreedotsupabove-ar uni0751 behThreedotsupabove-ar.alt uni0751.alt behThreedotsupabove-ar.fina uni0751.fina behThreedotsupabove-ar.fina.alt uni0751.fina.alt behThreedotsupabove-ar.init uni0751.init behThreedotsupabove-ar.init.alt uni0751.init.alt behThreedotsupabove-ar.medi uni0751.medi behThreedotsupbelow-ar uni0752 behThreedotsupbelow-ar.alt uni0752.alt behThreedotsupbelow-ar.fina uni0752.fina behThreedotsupbelow-ar.fina.alt uni0752.fina.alt behThreedotsupbelow-ar.init uni0752.init behThreedotsupbelow-ar.init.alt uni0752.init.alt behThreedotsupbelow-ar.medi uni0752.medi behTwodotsbelowDotabove-ar uni0754 behTwodotsbelowDotabove-ar.alt uni0754.alt behTwodotsbelowDotabove-ar.fina uni0754.fina behTwodotsbelowDotabove-ar.fina.alt uni0754.fina.alt behTwodotsbelowDotabove-ar.init uni0754.init behTwodotsbelowDotabove-ar.init.alt uni0754.init.alt behTwodotsbelowDotabove-ar.medi uni0754.medi behVabove-ar uni0756 behVabove-ar.alt uni0756.alt behVabove-ar.fina uni0756.fina behVabove-ar.fina.alt uni0756.fina.alt behVabove-ar.init uni0756.init behVabove-ar.init.alt uni0756.init.alt behVabove-ar.medi uni0756.medi behVbelow-ar uni08A0 behVbelow-ar.alt uni08A0.alt behVbelow-ar.fina uni08A0.fina behVbelow-ar.fina.alt uni08A0.fina.alt behVbelow-ar.init uni08A0.init behVbelow-ar.init.alt uni08A0.init.alt behVbelow-ar.medi uni08A0.medi behVinvertedbelow-ar uni0755 behVinvertedbelow-ar.alt uni0755.alt behVinvertedbelow-ar.fina uni0755.fina behVinvertedbelow-ar.fina.alt uni0755.fina.alt behVinvertedbelow-ar.init uni0755.init behVinvertedbelow-ar.init.alt uni0755.init.alt behVinvertedbelow-ar.medi uni0755.medi beheh-ar uni0680 beheh-ar.alt uni0680.alt beheh-ar.fina uniFB5B beheh-ar.fina.alt uni0680.fina.alt beheh-ar.init uniFB5C beheh-ar.init.alt uni0680.init.alt beheh-ar.medi uniFB5D behhamzaabove-ar uni08A1 behhamzaabove-ar.alt uni08A1.alt behhamzaabove-ar.fina uni08A1.fina behhamzaabove-ar.fina.alt uni08A1.fina.alt behhamzaabove-ar.init uni08A1.init behhamzaabove-ar.medi uni08A1.medi bellControl uni2407 bellControl.ss20 uni2407.ss20 bet-hb uni05D1 betdagesh-hb uniFB31 bitcoin uni20BF blackCircle uni25CF blackDiamond uni25C6 blackHexagon uni2B22 blackHorizontalEllipse uni2B2C blackInWhiteDiamond uni25C8 blackLargeCircle uni2B24 blackLargeSquare uni2B1B blackMediumDiamond uni2B25 blackMediumDownTriangleCentred uni2BC6 blackMediumLeftTriangleCentred uni2BC7 blackMediumLozenge uni2B27 blackMediumRightTriangleCentred uni2BC8 blackMediumUpTriangleCentred uni2BC5 blackParallelogram uni25B0 blackPentagon uni2B1F blackSmallDiamond uni2B29 blackSmallLozenge uni2B2A blackSmallSquare uni25AA blackSmilingFace invsmileface blackSquare filledbox blackVerticalEllipse uni2B2E blackVerticalRect uni25AE blackVerysmallSquare uni2B1D blank uni2423 blank-braille uni2800 blankSymbol uni2422 bottomHalfBlackCircle uni2BCB bottomHalfBlackDiamond uni2B19 boxDoubleDownAndHorizontal uni2566 boxDoubleDownAndHorizontal.stypo uni2566.stypo boxDoubleDownAndLeft uni2557 boxDoubleDownAndLeft.stypo uni2557.stypo boxDoubleDownAndRight uni2554 boxDoubleDownAndRight.stypo uni2554.stypo boxDoubleHorizontal uni2550 boxDoubleHorizontal.stypo uni2550.stypo boxDoubleUpAndHorizontal uni2569 boxDoubleUpAndHorizontal.stypo uni2569.stypo boxDoubleUpAndLeft uni255D boxDoubleUpAndLeft.stypo uni255D.stypo boxDoubleUpAndRight uni255A boxDoubleUpAndRight.stypo uni255A.stypo boxDoubleVertical uni2551 boxDoubleVertical.stypo uni2551.stypo boxDoubleVerticalAndHorizontal uni256C boxDoubleVerticalAndHorizontal.stypo uni256C.stypo boxDoubleVerticalAndLeft uni2563 boxDoubleVerticalAndLeft.stypo uni2563.stypo boxDoubleVerticalAndRight uni2560 boxDoubleVerticalAndRight.stypo uni2560.stypo boxDownDoubleAndHorizontalSingle uni2565 boxDownDoubleAndHorizontalSingle.stypo uni2565.stypo boxDownDoubleAndLeftSingle uni2556 boxDownDoubleAndLeftSingle.stypo uni2556.stypo boxDownDoubleAndRightSingle uni2553 boxDownDoubleAndRightSingle.stypo uni2553.stypo boxDownHeavyAndHorizontalLight uni2530 boxDownHeavyAndHorizontalLight.stypo uni2530.stypo boxDownHeavyAndLeftLight uni2512 boxDownHeavyAndLeftLight.stypo uni2512.stypo boxDownHeavyAndLeftUpLight uni2527 boxDownHeavyAndLeftUpLight.stypo uni2527.stypo boxDownHeavyAndRightLight uni250E boxDownHeavyAndRightLight.stypo uni250E.stypo boxDownHeavyAndRightUpLight uni251F boxDownHeavyAndRightUpLight.stypo uni251F.stypo boxDownHeavyAndUpHorizontalLight uni2541 boxDownHeavyAndUpHorizontalLight.stypo uni2541.stypo boxDownLightAndHorizontalHeavy uni252F boxDownLightAndHorizontalHeavy.stypo uni252F.stypo boxDownLightAndLeftHeavy uni2511 boxDownLightAndLeftHeavy.stypo uni2511.stypo boxDownLightAndLeftUpHeavy uni2529 boxDownLightAndLeftUpHeavy.stypo uni2529.stypo boxDownLightAndRightHeavy uni250D boxDownLightAndRightHeavy.stypo uni250D.stypo boxDownLightAndRightUpHeavy uni2521 boxDownLightAndRightUpHeavy.stypo uni2521.stypo boxDownLightAndUpHorizontalHeavy uni2547 boxDownLightAndUpHorizontalHeavy.stypo uni2547.stypo boxDownSingleAndHorizontalDouble uni2564 boxDownSingleAndHorizontalDouble.stypo uni2564.stypo boxDownSingleAndLeftDouble uni2555 boxDownSingleAndLeftDouble.stypo uni2555.stypo boxDownSingleAndRightDouble uni2552 boxDownSingleAndRightDouble.stypo uni2552.stypo boxHeavyDoubleDashHorizontal uni254D boxHeavyDoubleDashHorizontal.stypo uni254D.stypo boxHeavyDoubleDashVertical uni254F boxHeavyDoubleDashVertical.stypo uni254F.stypo boxHeavyDown uni257B boxHeavyDown.stypo uni257B.stypo boxHeavyDownAndHorizontal uni2533 boxHeavyDownAndHorizontal.stypo uni2533.stypo boxHeavyDownAndLeft uni2513 boxHeavyDownAndLeft.stypo uni2513.stypo boxHeavyDownAndRight uni250F boxHeavyDownAndRight.stypo uni250F.stypo boxHeavyHorizontal uni2501 boxHeavyHorizontal.stypo uni2501.stypo boxHeavyLeft uni2578 boxHeavyLeft.stypo uni2578.stypo boxHeavyLeftAndLightRight uni257E boxHeavyLeftAndLightRight.stypo uni257E.stypo boxHeavyQuadrupleDashHorizontal uni2509 boxHeavyQuadrupleDashHorizontal.stypo uni2509.stypo boxHeavyQuadrupleDashVertical uni250B boxHeavyQuadrupleDashVertical.stypo uni250B.stypo boxHeavyRight uni257A boxHeavyRight.stypo uni257A.stypo boxHeavyTripleDashHorizontal uni2505 boxHeavyTripleDashHorizontal.stypo uni2505.stypo boxHeavyTripleDashVertical uni2507 boxHeavyTripleDashVertical.stypo uni2507.stypo boxHeavyUp uni2579 boxHeavyUp.stypo uni2579.stypo boxHeavyUpAndHorizontal uni253B boxHeavyUpAndHorizontal.stypo uni253B.stypo boxHeavyUpAndLeft uni251B boxHeavyUpAndLeft.stypo uni251B.stypo boxHeavyUpAndLightDown uni257F boxHeavyUpAndLightDown.stypo uni257F.stypo boxHeavyUpAndRight uni2517 boxHeavyUpAndRight.stypo uni2517.stypo boxHeavyVertical uni2503 boxHeavyVertical.stypo uni2503.stypo boxHeavyVerticalAndHorizontal uni254B boxHeavyVerticalAndHorizontal.stypo uni254B.stypo boxHeavyVerticalAndLeft uni252B boxHeavyVerticalAndLeft.stypo uni252B.stypo boxHeavyVerticalAndRight uni2523 boxHeavyVerticalAndRight.stypo uni2523.stypo boxLeftDownHeavyAndRightUpLight uni2545 boxLeftDownHeavyAndRightUpLight.stypo uni2545.stypo boxLeftHeavyAndRightDownLight uni252D boxLeftHeavyAndRightDownLight.stypo uni252D.stypo boxLeftHeavyAndRightUpLight uni2535 boxLeftHeavyAndRightUpLight.stypo uni2535.stypo boxLeftHeavyAndRightVerticalLight uni253D boxLeftHeavyAndRightVerticalLight.stypo uni253D.stypo boxLeftLightAndRightDownHeavy uni2532 boxLeftLightAndRightDownHeavy.stypo uni2532.stypo boxLeftLightAndRightUpHeavy uni253A boxLeftLightAndRightUpHeavy.stypo uni253A.stypo boxLeftLightAndRightVerticalHeavy uni254A boxLeftLightAndRightVerticalHeavy.stypo uni254A.stypo boxLeftUpHeavyAndRightDownLight uni2543 boxLeftUpHeavyAndRightDownLight.stypo uni2543.stypo boxLightArcDownAndLeft uni256E boxLightArcDownAndLeft.stypo uni256E.stypo boxLightArcDownAndRight uni256D boxLightArcDownAndRight.stypo uni256D.stypo boxLightArcUpAndLeft uni256F boxLightArcUpAndLeft.stypo uni256F.stypo boxLightArcUpAndRight uni2570 boxLightArcUpAndRight.stypo uni2570.stypo boxLightDiagonalCross uni2573 boxLightDiagonalCross.stypo uni2573.stypo boxLightDiagonalUpperLeftToLowerRight uni2572 boxLightDiagonalUpperLeftToLowerRight.stypo uni2572.stypo boxLightDiagonalUpperRightToLowerLeft uni2571 boxLightDiagonalUpperRightToLowerLeft.stypo uni2571.stypo boxLightDoubleDashHorizontal uni254C boxLightDoubleDashHorizontal.stypo uni254C.stypo boxLightDoubleDashVertical uni254E boxLightDoubleDashVertical.stypo uni254E.stypo boxLightDown uni2577 boxLightDown.stypo uni2577.stypo boxLightDownAndHorizontal uni252C boxLightDownAndHorizontal.stypo uni252C.stypo boxLightDownAndLeft uni2510 boxLightDownAndLeft.stypo uni2510.stypo boxLightDownAndRight uni250C boxLightDownAndRight.stypo uni250C.stypo boxLightHorizontal uni2500 boxLightHorizontal.stypo uni2500.stypo boxLightLeft uni2574 boxLightLeft.stypo uni2574.stypo boxLightLeftAndHeavyRight uni257C boxLightLeftAndHeavyRight.stypo uni257C.stypo boxLightQuadrupleDashHorizontal uni2508 boxLightQuadrupleDashHorizontal.stypo uni2508.stypo boxLightQuadrupleDashVertical uni250A boxLightQuadrupleDashVertical.stypo uni250A.stypo boxLightRight uni2576 boxLightRight.stypo uni2576.stypo boxLightTripleDashHorizontal uni2504 boxLightTripleDashHorizontal.stypo uni2504.stypo boxLightTripleDashVertical uni2506 boxLightTripleDashVertical.stypo uni2506.stypo boxLightUp uni2575 boxLightUp.stypo uni2575.stypo boxLightUpAndHeavyDown uni257D boxLightUpAndHeavyDown.stypo uni257D.stypo boxLightUpAndHorizontal uni2534 boxLightUpAndHorizontal.stypo uni2534.stypo boxLightUpAndLeft uni2518 boxLightUpAndLeft.stypo uni2518.stypo boxLightUpAndRight uni2514 boxLightUpAndRight.stypo uni2514.stypo boxLightVertical uni2502 boxLightVertical.stypo uni2502.stypo boxLightVerticalAndHorizontal uni253C boxLightVerticalAndHorizontal.stypo uni253C.stypo boxLightVerticalAndLeft uni2524 boxLightVerticalAndLeft.stypo uni2524.stypo boxLightVerticalAndRight uni251C boxLightVerticalAndRight.stypo uni251C.stypo boxRightDownHeavyAndLeftUpLight uni2546 boxRightDownHeavyAndLeftUpLight.stypo uni2546.stypo boxRightHeavyAndLeftDownLight uni252E boxRightHeavyAndLeftDownLight.stypo uni252E.stypo boxRightHeavyAndLeftUpLight uni2536 boxRightHeavyAndLeftUpLight.stypo uni2536.stypo boxRightHeavyAndLeftVerticalLight uni253E boxRightHeavyAndLeftVerticalLight.stypo uni253E.stypo boxRightLightAndLeftDownHeavy uni2531 boxRightLightAndLeftDownHeavy.stypo uni2531.stypo boxRightLightAndLeftUpHeavy uni2539 boxRightLightAndLeftUpHeavy.stypo uni2539.stypo boxRightLightAndLeftVerticalHeavy uni2549 boxRightLightAndLeftVerticalHeavy.stypo uni2549.stypo boxRightUpHeavyAndLeftDownLight uni2544 boxRightUpHeavyAndLeftDownLight.stypo uni2544.stypo boxUpDoubleAndHorizontalSingle uni2568 boxUpDoubleAndHorizontalSingle.stypo uni2568.stypo boxUpDoubleAndLeftSingle uni255C boxUpDoubleAndLeftSingle.stypo uni255C.stypo boxUpDoubleAndRightSingle uni2559 boxUpDoubleAndRightSingle.stypo uni2559.stypo boxUpHeavyAndDownHorizontalLight uni2540 boxUpHeavyAndDownHorizontalLight.stypo uni2540.stypo boxUpHeavyAndHorizontalLight uni2538 boxUpHeavyAndHorizontalLight.stypo uni2538.stypo boxUpHeavyAndLeftDownLight uni2526 boxUpHeavyAndLeftDownLight.stypo uni2526.stypo boxUpHeavyAndLeftLight uni251A boxUpHeavyAndLeftLight.stypo uni251A.stypo boxUpHeavyAndRightDownLight uni251E boxUpHeavyAndRightDownLight.stypo uni251E.stypo boxUpHeavyAndRightLight uni2516 boxUpHeavyAndRightLight.stypo uni2516.stypo boxUpLightAndDownHorizontalHeavy uni2548 boxUpLightAndDownHorizontalHeavy.stypo uni2548.stypo boxUpLightAndHorizontalHeavy uni2537 boxUpLightAndHorizontalHeavy.stypo uni2537.stypo boxUpLightAndLeftDownHeavy uni252A boxUpLightAndLeftDownHeavy.stypo uni252A.stypo boxUpLightAndLeftHeavy uni2519 boxUpLightAndLeftHeavy.stypo uni2519.stypo boxUpLightAndRightDownHeavy uni2522 boxUpLightAndRightDownHeavy.stypo uni2522.stypo boxUpLightAndRightHeavy uni2515 boxUpLightAndRightHeavy.stypo uni2515.stypo boxUpSingleAndHorizontalDouble uni2567 boxUpSingleAndHorizontalDouble.stypo uni2567.stypo boxUpSingleAndLeftDouble uni255B boxUpSingleAndLeftDouble.stypo uni255B.stypo boxUpSingleAndRightDouble uni2558 boxUpSingleAndRightDouble.stypo uni2558.stypo boxVerticalDoubleAndHorizontalSingle uni256B boxVerticalDoubleAndHorizontalSingle.stypo uni256B.stypo boxVerticalDoubleAndLeftSingle uni2562 boxVerticalDoubleAndLeftSingle.stypo uni2562.stypo boxVerticalDoubleAndRightSingle uni255F boxVerticalDoubleAndRightSingle.stypo uni255F.stypo boxVerticalHeavyAndHorizontalLight uni2542 boxVerticalHeavyAndHorizontalLight.stypo uni2542.stypo boxVerticalHeavyAndLeftLight uni2528 boxVerticalHeavyAndLeftLight.stypo uni2528.stypo boxVerticalHeavyAndRightLight uni2520 boxVerticalHeavyAndRightLight.stypo uni2520.stypo boxVerticalLightAndHorizontalHeavy uni253F boxVerticalLightAndHorizontalHeavy.stypo uni253F.stypo boxVerticalLightAndLeftHeavy uni2525 boxVerticalLightAndLeftHeavy.stypo uni2525.stypo boxVerticalLightAndRightHeavy uni251D boxVerticalLightAndRightHeavy.stypo uni251D.stypo boxVerticalSingleAndHorizontalDouble uni256A boxVerticalSingleAndHorizontalDouble.stypo uni256A.stypo boxVerticalSingleAndLeftDouble uni2561 boxVerticalSingleAndLeftDouble.stypo uni2561.stypo boxVerticalSingleAndRightDouble uni255E boxVerticalSingleAndRightDouble.stypo uni255E.stypo brevecomb uni0306 brevecomb-cy brevecombcy brevecomb-cy.case brevecombcy.case brevecomb.case uni0306.case bulletoperator uni2219 bullseye uni25CE cancelControl uni2418 cancelControl.ss20 uni2418.ss20 careof uni2105 caroncomb uni030C caroncomb.case uni030C.case carriageReturnControl uni240D carriageReturnControl.ss20 uni240D.ss20 cedi uni20B5 cedillacomb uni0327 che-cy uni0447 checkmark uni2713 chedescender-cy uni04B7 circumflexcomb uni0302 circumflexcomb.case uni0302.case clubBlackSuit club colonsign colonmonetary colontriangularmod uni02D0 comma-ar uni060C commaabovecomb uni0313 commaaboverightcomb uni0315 commaaccentcomb uni0326 commaturnedabovecomb uni0312 commaturnedmod uni02BB crosshatchFillSquare uni25A6 cuberoot-ar uni0606 dad-ar uni0636 dad-ar.alt uni0636.alt dad-ar.fina uniFEBE dad-ar.fina.alt uni0636.fina.alt dad-ar.init uniFEBF dad-ar.medi uniFEC0 dadDotbelow-ar uni06FB dadDotbelow-ar.alt uni06FB.alt dadDotbelow-ar.fina uni06FB.fina dadDotbelow-ar.fina.alt uni06FB.fina.alt dadDotbelow-ar.init uni06FB.init dadDotbelow-ar.medi uni06FB.medi dagesh-hb uni05BC dahal-ar uni068C dahal-ar.fina uniFB85 dal-ar uni062F dal-ar.fina uniFEAA dalDotbelow-ar uni068A dalDotbelow-ar.fina uni068A.fina dalDotbelowTah-ar uni068B dalDotbelowTah-ar.fina uni068B.fina dalFourdots-ar uni0690 dalFourdots-ar.fina uni0690.fina dalRing-ar uni0689 dalRing-ar.fina uni0689.fina dalThreedotsbelow-ar uni08AE dalThreedotsbelow-ar.fina uni08AE.fina dalThreedotsdown-ar uni068F dalThreedotsdown-ar.fina uni068F.fina dalTwodotsverticalbelowTahabove-ar dalTwodotsverticalbelowTahabovear dalTwodotsverticalbelowTahabove-ar.fina dalTwodotsverticalbelowTahabovear.fina dalVinvertedabove-ar uni06EE dalVinvertedabove-ar.fina uni06EE.fina dalVinvertedbelow-ar uni075A dalVinvertedbelow-ar.fina uni075A.fina dalet-hb uni05D3 daletdagesh-hb uniFB33 damma-ar uni064F dammatan-ar uni064C dashdownArrow uni21E3 dataLinkEscapeControl uni2410 dataLinkEscapeControl.ss20 uni2410.ss20 dateseparator-ar uni060D ddahal-ar uni068D ddahal-ar.fina uniFB83 ddal-ar uni0688 ddal-ar.fina uniFB89 de-cy uni0434 de-cy.loclBGR uni0434.loclBGR decimalseparator-ar uni066B deleteControl uni2421 deleteFormTwoControl uni2425 deviceControlFourControl uni2414 deviceControlOneControl uni2411 deviceControlThreeControl uni2413 deviceControlTwoControl uni2412 diagonalcrosshatchFillSquare uni25A9 diamondBlackSuit diamond dieresiscomb uni0308 dieresiscomb.case uni0308.case divisionslash uni2215 dje-cy uni0452 dotabove-ar dotabovear dotaccentcomb uni0307 dotaccentcomb.case uni0307.case dotbelow-ar dotbelowar dotcenter-ar dotcenterar dots1-braille uni2801 dots12-braille uni2803 dots123-braille uni2807 dots1234-braille uni280F dots12345-braille uni281F dots123456-braille uni283F dots1234567-braille uni287F dots12345678-braille uni28FF dots1234568-braille uni28BF dots123457-braille uni285F dots1234578-braille uni28DF dots123458-braille uni289F dots12346-braille uni282F dots123467-braille uni286F dots1234678-braille uni28EF dots123468-braille uni28AF dots12347-braille uni284F dots123478-braille uni28CF dots12348-braille uni288F dots1235-braille uni2817 dots12356-braille uni2837 dots123567-braille uni2877 dots1235678-braille uni28F7 dots123568-braille uni28B7 dots12357-braille uni2857 dots123578-braille uni28D7 dots12358-braille uni2897 dots1236-braille uni2827 dots12367-braille uni2867 dots123678-braille uni28E7 dots12368-braille uni28A7 dots1237-braille uni2847 dots12378-braille uni28C7 dots1238-braille uni2887 dots124-braille uni280B dots1245-braille uni281B dots12456-braille uni283B dots124567-braille uni287B dots1245678-braille uni28FB dots124568-braille uni28BB dots12457-braille uni285B dots124578-braille uni28DB dots12458-braille uni289B dots1246-braille uni282B dots12467-braille uni286B dots124678-braille uni28EB dots12468-braille uni28AB dots1247-braille uni284B dots12478-braille uni28CB dots1248-braille uni288B dots125-braille uni2813 dots1256-braille uni2833 dots12567-braille uni2873 dots125678-braille uni28F3 dots12568-braille uni28B3 dots1257-braille uni2853 dots12578-braille uni28D3 dots1258-braille uni2893 dots126-braille uni2823 dots1267-braille uni2863 dots12678-braille uni28E3 dots1268-braille uni28A3 dots127-braille uni2843 dots1278-braille uni28C3 dots128-braille uni2883 dots13-braille uni2805 dots134-braille uni280D dots1345-braille uni281D dots13456-braille uni283D dots134567-braille uni287D dots1345678-braille uni28FD dots134568-braille uni28BD dots13457-braille uni285D dots134578-braille uni28DD dots13458-braille uni289D dots1346-braille uni282D dots13467-braille uni286D dots134678-braille uni28ED dots13468-braille uni28AD dots1347-braille uni284D dots13478-braille uni28CD dots1348-braille uni288D dots135-braille uni2815 dots1356-braille uni2835 dots13567-braille uni2875 dots135678-braille uni28F5 dots13568-braille uni28B5 dots1357-braille uni2855 dots13578-braille uni28D5 dots1358-braille uni2895 dots136-braille uni2825 dots1367-braille uni2865 dots13678-braille uni28E5 dots1368-braille uni28A5 dots137-braille uni2845 dots1378-braille uni28C5 dots138-braille uni2885 dots14-braille uni2809 dots145-braille uni2819 dots1456-braille uni2839 dots14567-braille uni2879 dots145678-braille uni28F9 dots14568-braille uni28B9 dots1457-braille uni2859 dots14578-braille uni28D9 dots1458-braille uni2899 dots146-braille uni2829 dots1467-braille uni2869 dots14678-braille uni28E9 dots1468-braille uni28A9 dots147-braille uni2849 dots1478-braille uni28C9 dots148-braille uni2889 dots15-braille uni2811 dots156-braille uni2831 dots1567-braille uni2871 dots15678-braille uni28F1 dots1568-braille uni28B1 dots157-braille uni2851 dots1578-braille uni28D1 dots158-braille uni2891 dots16-braille uni2821 dots167-braille uni2861 dots1678-braille uni28E1 dots168-braille uni28A1 dots17-braille uni2841 dots178-braille uni28C1 dots18-braille uni2881 dots2-braille uni2802 dots23-braille uni2806 dots234-braille uni280E dots2345-braille uni281E dots23456-braille uni283E dots234567-braille uni287E dots2345678-braille uni28FE dots234568-braille uni28BE dots23457-braille uni285E dots234578-braille uni28DE dots23458-braille uni289E dots2346-braille uni282E dots23467-braille uni286E dots234678-braille uni28EE dots23468-braille uni28AE dots2347-braille uni284E dots23478-braille uni28CE dots2348-braille uni288E dots235-braille uni2816 dots2356-braille uni2836 dots23567-braille uni2876 dots235678-braille uni28F6 dots23568-braille uni28B6 dots2357-braille uni2856 dots23578-braille uni28D6 dots2358-braille uni2896 dots236-braille uni2826 dots2367-braille uni2866 dots23678-braille uni28E6 dots2368-braille uni28A6 dots237-braille uni2846 dots2378-braille uni28C6 dots238-braille uni2886 dots24-braille uni280A dots245-braille uni281A dots2456-braille uni283A dots24567-braille uni287A dots245678-braille uni28FA dots24568-braille uni28BA dots2457-braille uni285A dots24578-braille uni28DA dots2458-braille uni289A dots246-braille uni282A dots2467-braille uni286A dots24678-braille uni28EA dots2468-braille uni28AA dots247-braille uni284A dots2478-braille uni28CA dots248-braille uni288A dots25-braille uni2812 dots256-braille uni2832 dots2567-braille uni2872 dots25678-braille uni28F2 dots2568-braille uni28B2 dots257-braille uni2852 dots2578-braille uni28D2 dots258-braille uni2892 dots26-braille uni2822 dots267-braille uni2862 dots2678-braille uni28E2 dots268-braille uni28A2 dots27-braille uni2842 dots278-braille uni28C2 dots28-braille uni2882 dots3-braille uni2804 dots34-braille uni280C dots345-braille uni281C dots3456-braille uni283C dots34567-braille uni287C dots345678-braille uni28FC dots34568-braille uni28BC dots3457-braille uni285C dots34578-braille uni28DC dots3458-braille uni289C dots346-braille uni282C dots3467-braille uni286C dots34678-braille uni28EC dots3468-braille uni28AC dots347-braille uni284C dots3478-braille uni28CC dots348-braille uni288C dots35-braille uni2814 dots356-braille uni2834 dots3567-braille uni2874 dots35678-braille uni28F4 dots3568-braille uni28B4 dots357-braille uni2854 dots3578-braille uni28D4 dots358-braille uni2894 dots36-braille uni2824 dots367-braille uni2864 dots3678-braille uni28E4 dots368-braille uni28A4 dots37-braille uni2844 dots378-braille uni28C4 dots38-braille uni2884 dots4-braille uni2808 dots45-braille uni2818 dots456-braille uni2838 dots4567-braille uni2878 dots45678-braille uni28F8 dots4568-braille uni28B8 dots457-braille uni2858 dots4578-braille uni28D8 dots458-braille uni2898 dots46-braille uni2828 dots467-braille uni2868 dots4678-braille uni28E8 dots468-braille uni28A8 dots47-braille uni2848 dots478-braille uni28C8 dots48-braille uni2888 dots5-braille uni2810 dots56-braille uni2830 dots567-braille uni2870 dots5678-braille uni28F0 dots568-braille uni28B0 dots57-braille uni2850 dots578-braille uni28D0 dots58-braille uni2890 dots6-braille uni2820 dots67-braille uni2860 dots678-braille uni28E0 dots68-braille uni28A0 dots7-braille uni2840 dots78-braille uni28C0 dots8-braille uni2880 dottedCircle uni25CC dottedSquare uni2B1A doubleverticalbarbelowSymbol-ar uniFBBC doubleverticalbarbelowSymbol-ar.comb uniFBBC.comb downArrow arrowdown downBlackSmallTriangle uni25BE downBlackTriangle triagdn downTipLeftArrow uni21B2 downWhiteSmallTriangle uni25BF downWhiteTriangle uni25BD dtail uni0256 dul-ar uni068E dul-ar.fina uniFB87 dyeh-ar uni0684 dyeh-ar.fina uniFB73 dyeh-ar.init uniFB74 dyeh-ar.medi uniFB75 dze-cy uni0455 dzhe-cy uni045F e-ar uni06D0 e-ar.fina uniFBE5 e-ar.fina.alt uni06D0.fina.alt e-ar.init uniFBE6 e-ar.init.alt uni06D0.init.alt e-ar.medi uniFBE7 e-cy uni0454 ecircumflexacute uni1EBF ecircumflexdotbelow uni1EC7 ecircumflexgrave uni1EC1 ecircumflexhookabove uni1EC3 ecircumflextilde uni1EC5 edotbelow uni1EB9 ef-cy uni0444 ef-cy.loclBGR uni0424.loclBGR ehookabove uni1EBB eight-ar uni0668 eight-arinferior eightarinferior eight-arsuperior eightarsuperior eight-persian uni06F8 eight-persianinferior eightpersianinferior eight-persiansuperior eightpersiansuperior eightinferior uni2088 eightsuperior uni2078 el-cy uni043B el-cy.loclBGR uni043B.loclBGR em-cy uni043C en-cy uni043D endOfMediumControl uni2419 endOfMediumControl.ss20 uni2419.ss20 endOfTextControl uni2403 endOfTextControl.ss20 uni2403.ss20 endOfTransmissionBlockControl uni2417 endOfTransmissionBlockControl.ss20 uni2417.ss20 endOfTransmissionControl uni2404 endOfTransmissionControl.ss20 uni2404.ss20 endescender-cy uni04A3 endofayah-ar uni06DD enquiryControl uni2405 enquiryControl.ss20 uni2405.ss20 eopen uni025B er-cy uni0440 ereversed-cy uni044D es-cy uni0441 escapeControl uni241B escapeControl.ss20 uni241B.ss20 esh uni0283 etilde uni1EBD eturned uni01DD euro Euro eurocurrency uni20A0 exclamdouble exclamdbl ezh uni0292 fatha-ar uni064E fathatan-ar uni064B feh-ar uni0641 feh-ar.alt uni0641.alt feh-ar.fina uniFED2 feh-ar.fina.alt uni0641.fina.alt feh-ar.init uniFED3 feh-ar.init.alt uni0641.init.alt feh-ar.medi uniFED4 fehDotMovedbelow-ar fehDotMovedbelowar fehDotMovedbelow-ar.alt fehDotMovedbelowar.alt fehDotMovedbelow-ar.fina fehDotMovedbelowar.fina fehDotMovedbelow-ar.fina.alt fehDotMovedbelowar.fina.alt fehDotMovedbelow-ar.init fehDotMovedbelowar.init fehDotMovedbelow-ar.medi fehDotMovedbelowar.medi fehDotbelow-ar uni06A3 fehDotbelow-ar.alt uni06A3.alt fehDotbelow-ar.fina uni06A3.fina fehDotbelow-ar.fina.alt uni06A3.fina.alt fehDotbelow-ar.init uni06A3.init fehDotbelow-ar.medi uni06A3.medi fehDotbelowThreedotsabove-ar uni08A4 fehDotbelowThreedotsabove-ar.alt uni08A4.alt fehDotbelowThreedotsabove-ar.fina uni08A4.fina fehDotbelowThreedotsabove-ar.fina.alt uni08A4.fina.alt fehDotbelowThreedotsabove-ar.init uni08A4.init fehDotbelowThreedotsabove-ar.medi uni08A4.medi fehDotless-ar uni06A1 fehDotless-ar.alt uni06A1.alt fehDotless-ar.fina uni06A1.fina fehDotless-ar.fina.alt uni06A1.fina.alt fehDotless-ar.init uni06A1.init fehDotless-ar.init.alt uni06A1.init.alt fehDotless-ar.medi uni06A1.medi fehThreedotsbelow-ar uni06A5 fehThreedotsbelow-ar.alt uni06A5.alt fehThreedotsbelow-ar.fina uni06A5.fina fehThreedotsbelow-ar.fina.alt uni06A5.fina.alt fehThreedotsbelow-ar.init uni06A5.init fehThreedotsbelow-ar.medi uni06A5.medi fehThreedotsupbelow-ar uni0761 fehThreedotsupbelow-ar.alt uni0761.alt fehThreedotsupbelow-ar.fina uni0761.fina fehThreedotsupbelow-ar.fina.alt uni0761.fina.alt fehThreedotsupbelow-ar.init uni0761.init fehThreedotsupbelow-ar.medi uni0761.medi fehTwodotsbelow-ar uni0760 fehTwodotsbelow-ar.alt uni0760.alt fehTwodotsbelow-ar.fina uni0760.fina fehTwodotsbelow-ar.fina.alt uni0760.fina.alt fehTwodotsbelow-ar.init uni0760.init fehTwodotsbelow-ar.medi uni0760.medi fileSeparatorControl uni241C filledRect filledrect finalkaf-hb uni05DA finalkafdagesh-hb uniFB3A finalmem-hb uni05DD finalnun-hb uni05DF finalpe-hb uni05E3 finalpedagesh-hb uniFB43 finaltsadi-hb uni05E5 firsttonechinese uni02C9 fisheye uni25C9 five-ar uni0665 five-arinferior fivearinferior five-arsuperior fivearsuperior five-persian uni06F5 five-persianinferior fivepersianinferior five-persiansuperior fivepersiansuperior fiveinferior uni2085 fivesuperior uni2075 footnotemarker-ar uni0602 formFeedControl uni240C formFeedControl.ss20 uni240C.ss20 four-ar uni0664 four-arinferior fourarinferior four-arsuperior fourarsuperior four-persian uni06F4 four-persian.small01 uni06F4.small01 four-persian.urdu uni06F4.urdu four-persian.urduinferior uni06F4.urduinferior four-persian.urdusuperior uni06F4.urdusuperior four-persianbelow-ar fourpersianbelowar four-persiancenter-ar fourpersiancenterar four-persianinferior fourpersianinferior four-persiansuperior fourpersiansuperior fourdotsabove-ar fourdotsabovear fourdotsbelow-ar fourdotsbelowar fourdotscenter-ar fourdotscenterar fourinferior uni2084 foursuperior uni2074 fourthroot-ar uni0607 fullBlock block fullBlock.stypo block.stypo fullstop-ar uni06D4 gaf-ar uni06AF gaf-ar.fina uniFB93 gaf-ar.init uniFB94 gaf-ar.medi uniFB95 gafInvertedstroke-ar uni08B0 gafInvertedstroke-ar.fina uni08B0.fina gafInvertedstroke-ar.init uni08B0.init gafInvertedstroke-ar.medi uni08B0.medi gafRing-ar uni06B0 gafRing-ar.fina uni06B0.fina gafRing-ar.init uni06B0.init gafRing-ar.medi uni06B0.medi gafThreedots-ar uni06B4 gafThreedots-ar.fina uni06B4.fina gafThreedots-ar.init uni06B4.init gafThreedots-ar.medi uni06B4.medi gafTwodotsbelow-ar uni06B2 gafTwodotsbelow-ar.fina uni06B2.fina gafTwodotsbelow-ar.init uni06B2.init gafTwodotsbelow-ar.medi uni06B2.medi gafsarkashabove-ar gafsarkashabovear gamma-latin uni0263 gcommaaccent uni0123 ge-cy uni0433 ge-cy.loclBGR uni0433.loclBGR geresh-hb uni05F3 gershayim-hb uni05F4 ghain-ar uni063A ghain-ar.fina uniFECE ghain-ar.init uniFECF ghain-ar.medi uniFED0 ghainDotbelow-ar uni06FC ghainDotbelow-ar.fina uni06FC.fina ghainDotbelow-ar.init uni06FC.init ghainDotbelow-ar.medi uni06FC.medi ghestroke-cy uni0493 gheupturn-cy uni0491 gimel-hb uni05D2 gimeldagesh-hb uniFB32 gje-cy uni0453 glottalstop uni0294 glottalstopmod uni02C0 glottalstopreversed uni0295 gravetonecomb uni0340 groupSeparatorControl uni241D gstroke uni01E5 guarani uni20B2 gueh-ar uni06B3 gueh-ar.fina uniFB97 gueh-ar.init uniFB98 gueh-ar.medi uniFB99 guillemetleft guillemotleft guillemetright guillemotright ha-cy uni0445 hadescender-cy uni04B3 hah-ar uni062D hah-ar.fina uniFEA2 hah-ar.init uniFEA3 hah-ar.medi uniFEA4 hahFourbelow-ar uni077C hahFourbelow-ar.fina uni077C.fina hahFourbelow-ar.init uni077C.init hahFourbelow-ar.medi uni077C.medi hahHamzaabove-ar uni0681 hahHamzaabove-ar.fina uni0681.fina hahHamzaabove-ar.init uni0681.init hahHamzaabove-ar.medi uni0681.medi hahTahTwodotshorizontalabove-ar uni076F hahTahTwodotshorizontalabove-ar.fina uni076F.fina hahTahTwodotshorizontalabove-ar.init uni076F.init hahTahTwodotshorizontalabove-ar.medi uni076F.medi hahTahabove-ar uni0772 hahTahabove-ar.fina uni0772.fina hahTahabove-ar.init uni0772.init hahTahabove-ar.medi uni0772.medi hahTahbelow-ar uni076E hahTahbelow-ar.fina uni076E.fina hahTahbelow-ar.init uni076E.init hahTahbelow-ar.medi uni076E.medi hahThreedotsabove-ar uni0685 hahThreedotsabove-ar.fina uni0685.fina hahThreedotsabove-ar.init uni0685.init hahThreedotsabove-ar.medi uni0685.medi hahThreedotsupbelow-ar uni0758 hahThreedotsupbelow-ar.fina uni0758.fina hahThreedotsupbelow-ar.init uni0758.init hahThreedotsupbelow-ar.medi uni0758.medi hahTwodotshorizontalabove-ar uni0757 hahTwodotshorizontalabove-ar.fina uni0757.fina hahTwodotshorizontalabove-ar.init uni0757.init hahTwodotshorizontalabove-ar.medi uni0757.medi hahTwodotsverticalabove-ar uni0682 hahTwodotsverticalabove-ar.fina uni0682.fina hahTwodotsverticalabove-ar.init uni0682.init hahTwodotsverticalabove-ar.medi uni0682.medi hamza-ar uni0621 hamzaabove-ar uni0654 hamzabelow-ar uni0655 hardsign-cy uni044A hardsign-cy.loclBGR uni044A.loclBGR hcaron uni021F hdotbelow uni1E25 he-hb uni05D4 heartBlackSuit heart heavyleftpointinganglebracketornament uni2770 heavyleftpointinganglequotationmarkornament uni276E heavyrightpointinganglebracketornament uni2771 heavyrightpointinganglequotationmarkornament uni276F hedagesh-hb uniFB34 heh-ar uni0647 heh-ar.fina uniFEEA heh-ar.init uniFEEB heh-ar.medi uniFEEC hehAlefabove-ar.init uniFCD9 hehAlefabove-ar.init.fina hehAlefabovear.init.fina hehDoachashmee-ar uni06BE hehDoachashmee-ar.fina uniFBAB hehDoachashmee-ar.init uniFBAC hehDoachashmee-ar.medi uniFBAD hehHamzaabove-ar uni06C0 hehHamzaabove-ar.fina uniFBA5 hehVinvertedabove-ar uni06FF hehVinvertedabove-ar.fina uni06FF.fina hehVinvertedabove-ar.init uni06FF.init hehVinvertedabove-ar.medi uni06FF.medi hehgoal-ar uni06C1 hehgoal-ar.fina uniFBA7 hehgoal-ar.init uniFBA8 hehgoal-ar.init.alt uni06C1.init.alt hehgoal-ar.medi uniFBA9 hehgoalHamzaabove-ar uni06C2 hehgoalHamzaabove-ar.fina uni06C2.fina hehgoalHamzaabove-ar.init uni06C2.init hehgoalHamzaabove-ar.init.alt uni06C2.init.alt hehgoalHamzaabove-ar.medi uni06C2.medi het-hb uni05D7 highhamza-ar uni0674 highhamzaAlef-ar uni0675 highhamzaAlef-ar.fina uni0675.fina highhamzaAlef-ar.fina.rlig uni0675.fina.rlig highhamzaWaw-ar uni0676 highhamzaWaw-ar.fina uni0676.fina highhamzaYeh-ar uni0678 highhamzaYeh-ar.fina uni0678.fina highhamzaYeh-ar.fina.alt uni0678.fina.alt highhamzaYeh-ar.init uni0678.init highhamzaYeh-ar.init.alt uni0678.init.alt highhamzaYeh-ar.medi uni0678.medi holam-hb uni05B9 holamhaser-hb uni05BA horizontalBlackHexagon uni2B23 horizontalFillSquare uni25A4 horizontalTabulationControl uni2409 horizontalTabulationControl.ss20 uni2409.ss20 horizontalbar uni2015 horizontallineextension uni23AF horncomb uni031B horncomb.case uni031B.case hryvnia uni20B4 hungarumlautcomb uni030B hungarumlautcomb.case uni030B.case hyphentwo uni2010 i-cy uni0456 ia-cy uni044F idotbelow uni1ECB idotless dotlessi ie-cy uni0435 iegrave-cy uni0450 ihookabove uni1EC9 ii-cy uni0438 ii-cy.loclBGR uni0438.loclBGR iigrave-cy uni045D iigrave-cy.loclBGR uni045D.loclBGR iishort-cy uni0439 iishort-cy.loclBGR uni0439.loclBGR imacron-cy uni04E3 increment uni2206 inverseBullet invbullet inverseWhiteCircle invcircle io-cy uni0451 iota-latin uni0269 iu-cy uni044E iu-cy.loclBGR uni044E.loclBGR jacute uni006A0301 jcaron uni01F0 jdotless uni0237 je-cy uni0458 jeem-ar uni062C jeem-ar.fina uniFE9E jeem-ar.init uniFE9F jeem-ar.medi uniFEA0 jeemTwodotsabove-ar uni08A2 jeemTwodotsabove-ar.fina uni08A2.fina jeemTwodotsabove-ar.init uni08A2.init jeemTwodotsabove-ar.medi uni08A2.medi jeh-ar uni0698 jeh-ar.fina uniFB8B ka-cy uni043A ka-cy.loclBGR uni043A.loclBGR kadescender-cy uni049B kaf-ar uni0643 kaf-ar.fina uniFEDA kaf-ar.init uniFEDB kaf-ar.medi uniFEDC kaf-hb uni05DB kafDotabove-ar uni06AC kafDotabove-ar.fina uni06AC.fina kafDotabove-ar.init uni06AC.init kafDotabove-ar.medi uni06AC.medi kafRing-ar uni06AB kafRing-ar.fina uni06AB.fina kafRing-ar.init uni06AB.init kafRing-ar.medi uni06AB.medi kafThreedotsbelow-ar uni06AE kafThreedotsbelow-ar.fina uni06AE.fina kafThreedotsbelow-ar.init uni06AE.init kafThreedotsbelow-ar.medi uni06AE.medi kafTwodotshorizontalabove-ar uni077F kafTwodotshorizontalabove-ar.fina uni077F.fina kafTwodotshorizontalabove-ar.init uni077F.init kafTwodotshorizontalabove-ar.medi uni077F.medi kafdagesh-hb uniFB3B kafswash-ar uni06AA kafswash-ar.alt uni06AA.alt kafswash-ar.fina uni06AA.fina kafswash-ar.fina.alt uni06AA.fina.alt kafswash-ar.init uni06AA.init kafswash-ar.init.alt uni06AA.init.alt kafswash-ar.medi uni06AA.medi kafswash-ar.medi.alt uni06AA.medi.alt kaiSymbol uni03D7 kashida-ar uni0640 kasra-ar uni0650 kasratan-ar uni064D kcommaaccent uni0137 kdotbelow uni1E33 keheh-ar uni06A9 keheh-ar.fina uniFB8F keheh-ar.init uniFB90 keheh-ar.medi uniFB91 kehehDotabove-ar uni0762 kehehDotabove-ar.fina uni0762.fina kehehDotabove-ar.init uni0762.init kehehDotabove-ar.medi uni0762.medi kehehThreedotsabove-ar uni0763 kehehThreedotsabove-ar.fina uni0763.fina kehehThreedotsabove-ar.init uni0763.init kehehThreedotsabove-ar.medi uni0763.medi kehehThreedotsbelow-ar uni063C kehehThreedotsbelow-ar.fina uni063C.fina kehehThreedotsbelow-ar.init uni063C.init kehehThreedotsbelow-ar.medi uni063C.medi kehehThreedotsupbelow-ar uni0764 kehehThreedotsupbelow-ar.fina uni0764.fina kehehThreedotsupbelow-ar.init uni0764.init kehehThreedotsupbelow-ar.medi uni0764.medi kehehTwodotshorizontalabove-ar uni063B kehehTwodotshorizontalabove-ar.fina uni063B.fina kehehTwodotshorizontalabove-ar.init uni063B.init kehehTwodotshorizontalabove-ar.medi uni063B.medi khah-ar uni062E khah-ar.fina uniFEA6 khah-ar.init uniFEA7 khah-ar.medi uniFEA8 kip uni20AD kirghizoe-ar uni06C5 kirghizoe-ar.fina uniFBE1 kirghizyu-ar uni06C9 kirghizyu-ar.fina uniFBE3 kje-cy uni045C klinebelow uni1E35 lam-ar uni0644 lam-ar.fina uniFEDE lam-ar.init uniFEDF lam-ar.init.rlig uni0644.init.rlig lam-ar.medi uniFEE0 lam-ar.medi.rlig uni0644.medi.rlig lamBar-ar uni076A lamBar-ar.fina uni076A.fina lamBar-ar.init uni076A.init lamBar-ar.init.rlig uni076A.init.rlig lamBar-ar.medi uni076A.medi lamBar-ar.medi.rlig uni076A.medi.rlig lamDotabove-ar uni06B6 lamDotabove-ar.fina uni06B6.fina lamDotabove-ar.init uni06B6.init lamDotabove-ar.init.rlig uni06B6.init.rlig lamDotabove-ar.medi uni06B6.medi lamDotabove-ar.medi.rlig uni06B6.medi.rlig lamDoublebar-ar uni08A6 lamDoublebar-ar.fina uni08A6.fina lamDoublebar-ar.init uni08A6.init lamDoublebar-ar.init.rlig uni08A6.init.rlig lamDoublebar-ar.medi uni08A6.medi lamDoublebar-ar.medi.rlig uni08A6.medi.rlig lamThreedotsabove-ar uni06B7 lamThreedotsabove-ar.fina uni06B7.fina lamThreedotsabove-ar.init uni06B7.init lamThreedotsabove-ar.init.rlig uni06B7.init.rlig lamThreedotsabove-ar.medi uni06B7.medi lamThreedotsabove-ar.medi.rlig uni06B7.medi.rlig lamThreedotsbelow-ar uni06B8 lamThreedotsbelow-ar.fina uni06B8.fina lamThreedotsbelow-ar.init uni06B8.init lamThreedotsbelow-ar.init.rlig uni06B8.init.rlig lamThreedotsbelow-ar.medi uni06B8.medi lamThreedotsbelow-ar.medi.rlig uni06B8.medi.rlig lamVabove-ar uni06B5 lamVabove-ar.fina uni06B5.fina lamVabove-ar.init uni06B5.init lamVabove-ar.init.rlig uni06B5.init.rlig lamVabove-ar.medi uni06B5.medi lamVabove-ar.medi.rlig uni06B5.medi.rlig lam_alef-ar uniFEFB lam_alef-ar.fina uniFEFC lam_alef-ar.fina.short uniFEFB.fina.short lam_alef-ar.short uniFEFB.short lam_alefHamzaabove-ar uniFEF7 lam_alefHamzaabove-ar.fina uniFEF8 lam_alefHamzabelow-ar uniFEF9 lam_alefHamzabelow-ar.fina uniFEFA lam_alefMadda-ar uniFEF5 lam_alefMadda-ar.fina uniFEF6 lam_alefWasla-ar lam_alefWaslaar lam_alefWasla-ar.fina lam_alefWaslaar.fina lam_lam_heh-ar lam_lam_hehar lambdastroke uni019B lamed-hb uni05DC lameddagesh-hb uniFB3C largeCircle uni25EF lari uni20BE lbar uni019A lbelt uni026C lcommaaccent uni013C ldotbelow uni1E37 leftArrow arrowleft leftBlackPointer triaglf leftBlackSmallTriangle uni25C2 leftBlackTriangle uni25C0 leftBlock lfblock leftBlock.stypo lfblock.stypo leftFiveEighthsBlock uni258B leftFiveEighthsBlock.stypo uni258B.stypo leftHalfBlackCircle uni25D6 leftHalfBlackDiamond uni2B16 leftHalfBlackSquare uni25E7 leftHalfBlackWhiteCircle uni25D0 leftOneEighthBlock uni258F leftOneEighthBlock.stypo uni258F.stypo leftOneQuarterBlock uni258E leftOneQuarterBlock.stypo uni258E.stypo leftRightArrow arrowboth leftSevenEighthsBlock uni2589 leftSevenEighthsBlock.stypo uni2589.stypo leftThreeEighthsBlock uni258D leftThreeEighthsBlock.stypo uni258D.stypo leftThreeQuartersBlock uni258A leftThreeQuartersBlock.stypo uni258A.stypo leftWhitePointer uni25C5 leftWhiteSmallTriangle uni25C3 leftWhiteTriangle uni25C1 lineFeedControl uni240A lineFeedControl.ss20 uni240A.ss20 lineseparator uni2028 liraTurkish uni20BA literSign uni2113 lje-cy uni0459 llinebelow uni1E3B lmiddletilde uni026B logicalnotReversed revlogicalnot lowerFiveEighthsBlock uni2585 lowerFiveEighthsBlock.stypo uni2585.stypo lowerHalfArc uni25E1 lowerHalfBlackWhiteCircle uni25D2 lowerHalfBlock dnblock lowerHalfBlock.stypo dnblock.stypo lowerHalfInverseWhiteCircle uni25DB lowerHalfWhiteSquare uni2B12 lowerLeftArc uni25DF lowerLeftBlackTriangle uni25E3 lowerLeftBlock uni2596 lowerLeftBlock.stypo uni2596.stypo lowerLeftHalfWhiteSquare uni2B14 lowerLeftQuadrantWhiteCircle uni25F5 lowerLeftTriangle uni25FA lowerOneEighthBlock uni2581 lowerOneEighthBlock.stypo uni2581.stypo lowerOneQuarterBlock uni2582 lowerOneQuarterBlock.stypo uni2582.stypo lowerRightArc uni25DE lowerRightBlackTriangle uni25E2 lowerRightBlock uni2597 lowerRightBlock.stypo uni2597.stypo lowerRightDiagonalHalfBlackSquare uni25EA lowerRightQuadrantWhiteCircle uni25F6 lowerRightTriangle uni25FF lowerSevenEighthsBlock uni2587 lowerSevenEighthsBlock.stypo uni2587.stypo lowerThreeEighthsBlock uni2583 lowerThreeEighthsBlock.stypo uni2583.stypo lowerThreeQuartersBlock uni2586 lowerThreeQuartersBlock.stypo uni2586.stypo lowernumeral-greek uni0375 lowlinecomb uni0332 macronbelowcomb uni0331 macroncomb uni0304 macroncomb.case uni0304.case madda-ar uni0653 manat uni20BC maqaf-hb uni05BE mars male mediumBlackSmallSquare uni25FE mediumBlackSquare uni25FC mediumWhiteSmallSquare uni25FD mediumWhiteSquare uni25FB mediumleftpointinganglebracketornament uni276C mediumrightpointinganglebracketornament uni276D meem-ar uni0645 meem-ar.fina uniFEE2 meem-ar.init uniFEE3 meem-ar.medi uniFEE4 meemDotabove-ar uni0765 meemDotabove-ar.fina uni0765.fina meemDotabove-ar.init uni0765.init meemDotabove-ar.medi uni0765.medi meemDotbelow-ar uni0766 meemDotbelow-ar.fina uni0766.fina meemDotbelow-ar.init uni0766.init meemDotbelow-ar.medi uni0766.medi meemStopabove-ar uni06E2 meemThreedotsabove-ar uni08A7 meemThreedotsabove-ar.fina uni08A7.fina meemThreedotsabove-ar.init uni08A7.init meemThreedotsabove-ar.medi uni08A7.medi mem-hb uni05DE memdagesh-hb uniFB3E micro uni00B5 misraComma-ar uni060F mu uni03BC naira uni20A6 nbspace uni00A0 ncommaaccent uni0146 negativeAcknowledgeControl uni2415 negativeAcknowledgeControl.ss20 uni2415.ss20 newlineControl uni2424 ng-ar uni06AD ng-ar.fina uniFBD4 ng-ar.init uniFBD5 ng-ar.medi uniFBD6 ngoeh-ar uni06B1 ngoeh-ar.fina uniFB9B ngoeh-ar.init uniFB9C ngoeh-ar.medi uniFB9D nhookleft uni0272 nine-ar uni0669 nine-arinferior ninearinferior nine-arsuperior ninearsuperior nine-persian uni06F9 nine-persianinferior ninepersianinferior nine-persiansuperior ninepersiansuperior nineinferior uni2089 ninesuperior uni2079 nje-cy uni045A nlinebelow uni1E49 nmod uni207F nonbreakinghyphen uni2011 noon-ar uni0646 noon-ar.fina uniFEE6 noon-ar.init uniFEE7 noon-ar.init.alt uni0646.init.alt noon-ar.medi uniFEE8 noonAfrican-ar uni08BD noonAfrican-ar.fina uni08BD.fina noonAfrican-ar.init uni08BD.init noonAfrican-ar.init.alt uni08BD.init.alt noonAfrican-ar.medi uni08BD.medi noonDotbelow-ar uni06B9 noonDotbelow-ar.fina uni06B9.fina noonDotbelow-ar.init uni06B9.init noonDotbelow-ar.init.alt uni06B9.init.alt noonDotbelow-ar.medi uni06B9.medi noonRing-ar uni06BC noonRing-ar.fina uni06BC.fina noonRing-ar.init uni06BC.init noonRing-ar.init.alt uni06BC.init.alt noonRing-ar.medi uni06BC.medi noonTahabove-ar uni0768 noonTahabove-ar.fina uni0768.fina noonTahabove-ar.init uni0768.init noonTahabove-ar.init.alt uni0768.init.alt noonTahabove-ar.medi uni0768.medi noonThreedotsabove-ar uni06BD noonThreedotsabove-ar.fina uni06BD.fina noonThreedotsabove-ar.init uni06BD.init noonThreedotsabove-ar.init.alt uni06BD.init.alt noonThreedotsabove-ar.medi uni06BD.medi noonTwodotsbelow-ar uni0767 noonTwodotsbelow-ar.fina uni0767.fina noonTwodotsbelow-ar.init uni0767.init noonTwodotsbelow-ar.init.alt uni0767.init.alt noonTwodotsbelow-ar.medi uni0767.medi noonVabove-ar uni0769 noonVabove-ar.fina uni0769.fina noonVabove-ar.init uni0769.init noonVabove-ar.init.alt uni0769.init.alt noonVabove-ar.medi uni0769.medi noonabove-ar uni06E8 noonghunna-ar uni06BA noonghunna-ar.fina uniFB9F noonghunna-ar.init uni06BA.init noonghunna-ar.init.alt uni06BA.init.alt noonghunna-ar.medi uni06BA.medi noonghunnaabove-ar uni0658 note-musical musicalnote notedbl-musical musicalnotedbl notidentical uni2262 nullControl uni2400 number-ar uni0600 numbermark-ar uni0605 numeral-greek uni0374 numero uni2116 nun-hb uni05E0 nundagesh-hb uniFB40 nyeh-ar uni0683 nyeh-ar.fina uniFB77 nyeh-ar.init uniFB78 nyeh-ar.medi uniFB79 o-cy uni043E obarred-cy uni04E9 ocircumflexacute uni1ED1 ocircumflexdotbelow uni1ED9 ocircumflexgrave uni1ED3 ocircumflexhookabove uni1ED5 ocircumflextilde uni1ED7 odotbelow uni1ECD oe-ar uni06C6 oe-ar.fina uniFBDA ogonekcomb uni0328 ohookabove uni1ECF ohornacute uni1EDB ohorndotbelow uni1EE3 ohorngrave uni1EDD ohornhookabove uni1EDF ohorntilde uni1EE1 omacronacute uni1E53 omacrongrave uni1E51 one-ar uni0661 one-arinferior onearinferior one-arsuperior onearsuperior one-persian uni06F1 one-persianinferior onepersianinferior one-persiansuperior onepersiansuperior oneinferior uni2081 onesuperior uni00B9 oogonek uni01EB oopen uni0254 overline uni203E pagenumber-ar uni0603 palochka-cy uni04CF parenleft-ar uniFD3E parenright-ar uniFD3F paseq-hb uni05C0 patah-hb uni05B7 pe-cy uni043F pe-cy.loclBGR uni043F.loclBGR pe-hb uni05E4 pedagesh-hb uniFB44 pedagesh-hb.BRACKET.600 uniFB44.BRACKET.600 peh-ar uni067E peh-ar.alt uni067E.alt peh-ar.fina uniFB57 peh-ar.fina.alt uni067E.fina.alt peh-ar.init uniFB58 peh-ar.init.alt uni067E.init.alt peh-ar.medi uniFB59 pehMeemabove-ar uni08B7 pehMeemabove-ar.alt uni08B7.alt pehMeemabove-ar.fina uni08B7.fina pehMeemabove-ar.fina.alt uni08B7.fina.alt pehMeemabove-ar.init uni08B7.init pehMeemabove-ar.init.alt uni08B7.init.alt pehMeemabove-ar.medi uni08B7.medi peheh-ar uni06A6 peheh-ar.alt uni06A6.alt peheh-ar.fina uniFB6F peheh-ar.fina.alt uni06A6.fina.alt peheh-ar.init uniFB70 peheh-ar.init.alt uni06A6.init.alt peheh-ar.medi uniFB71 percent-ar uni066A perispomenicomb uni0342 perthousand-ar uni0609 peso uni20B1 published uni2117 punctuationspace uni2008 qaf-ar uni0642 qaf-ar.fina uniFED6 qaf-ar.init uniFED7 qaf-ar.init.alt uni0642.init.alt qaf-ar.medi uniFED8 qafAfrican-ar uni08BC qafAfrican-ar.fina uni08BC.fina qafAfrican-ar.init uni08BC.init qafAfrican-ar.init.alt uni08BC.init.alt qafAfrican-ar.medi uni08BC.medi qafDotabove-ar uni06A7 qafDotabove-ar.fina uni06A7.fina qafDotabove-ar.init uni06A7.init qafDotabove-ar.init.alt uni06A7.init.alt qafDotabove-ar.medi uni06A7.medi qafDotbelow-ar uni08A5 qafDotbelow-ar.fina uni08A5.fina qafDotbelow-ar.init uni08A5.init qafDotbelow-ar.medi uni08A5.medi qafDotless-ar uni066F qafDotless-ar.fina uni066F.fina qafDotless-ar.init uni066F.init qafDotless-ar.init.alt uni066F.init.alt qafDotless-ar.medi uni066F.medi qafThreedotsabove-ar uni06A8 qafThreedotsabove-ar.fina uni06A8.fina qafThreedotsabove-ar.init uni06A8.init qafThreedotsabove-ar.medi uni06A8.medi qamats-hb uni05B8 qamatsqatan-hb uni05C7 qof-hb uni05E7 qofdagesh-hb uniFB47 question-ar uni061F questiongreek uni037E ratio uni2236 ray-ar uni0608 rcommaaccent uni0157 rdotbelow uni1E5B recordSeparatorControl uni241E reh-ar uni0631 reh-ar.fina uniFEAE rehAlefabove-ar uniFC5C rehAlefabove-ar.fina uniFC5C.fina rehDotbelow-ar uni0694 rehDotbelow-ar.fina uni0694.fina rehDotbelowdotabove-ar uni0696 rehDotbelowdotabove-ar.fina uni0696.fina rehFourdots-ar uni0699 rehFourdots-ar.fina uni0699.fina rehHamzaabove-ar uni076C rehHamzaabove-ar.fina uni076C.fina rehLoop-ar uni08AA rehLoop-ar.fina uni08AA.fina rehRing-ar uni0693 rehRing-ar.fina uni0693.fina rehStroke-ar uni075B rehStroke-ar.fina uni075B.fina rehTwodots-ar uni0697 rehTwodots-ar.fina uni0697.fina rehTwodotshorizontalaboveTahabove-ar uni0771 rehTwodotshorizontalaboveTahabove-ar.fina uni0771.fina rehTwodotsverticalabove-ar uni076B rehTwodotsverticalabove-ar.fina uni076B.fina rehVbelow-ar uni0695 rehVbelow-ar.fina uni0695.fina rehVinvertedabove-ar uni06EF rehVinvertedabove-ar.fina uni06EF.fina rehv-ar uni0692 rehv-ar.fina uni0692.fina replacementCharacter uniFFFD resh-hb uni05E8 reshdagesh-hb uniFB48 returnsymbol uni23CE reversedRotatedFloralHeartBullet uni2619 rightArrow arrowright rightBlackPointer triagrt rightBlackSmallTriangle uni25B8 rightBlackTriangle uni25B6 rightBlock rtblock rightBlock.stypo rtblock.stypo rightHalfBlackCircle uni25D7 rightHalfBlackDiamond uni2B17 rightHalfBlackSquare uni25E8 rightHalfBlackWhiteCircle uni25D1 rightOneEighthBlock uni2595 rightOneEighthBlock.stypo uni2595.stypo rightWhitePointer uni25BB rightWhiteSmallTriangle uni25B9 rightWhiteTriangle uni25B7 ringbelowcomb uni0325 ringcomb uni030A ringcomb.case uni030A.case rnoon-ar uni06BB rnoon-ar.fina uniFBA1 rnoon-ar.init uniFBA2 rnoon-ar.init.alt uni06BB.init.alt rnoon-ar.medi uniFBA3 rotatedFloralHeartBullet uni2767 rreh-ar uni0691 rreh-ar.fina uniFB8D ruble uni20BD rupee uni20A8 rupeeIndian uni20B9 sad-ar uni0635 sad-ar.alt uni0635.alt sad-ar.fina uniFEBA sad-ar.fina.alt uni0635.fina.alt sad-ar.init uniFEBB sad-ar.medi uniFEBC sadThreedots-ar uni069E sadThreedots-ar.alt uni069E.alt sadThreedots-ar.fina uni069E.fina sadThreedots-ar.fina.alt uni069E.fina.alt sadThreedots-ar.init uni069E.init sadThreedots-ar.medi uni069E.medi sadThreedotsbelow-ar uni08AF sadThreedotsbelow-ar.alt uni08AF.alt sadThreedotsbelow-ar.fina uni08AF.fina sadThreedotsbelow-ar.fina.alt uni08AF.fina.alt sadThreedotsbelow-ar.init uni08AF.init sadThreedotsbelow-ar.medi uni08AF.medi sadTwodotsbelow-ar uni069D sadTwodotsbelow-ar.alt uni069D.alt sadTwodotsbelow-ar.fina uni069D.fina sadTwodotsbelow-ar.fina.alt uni069D.fina.alt sadTwodotsbelow-ar.init uni069D.init sadTwodotsbelow-ar.medi uni069D.medi samekh-hb uni05E1 samekhdagesh-hb uniFB41 samvat-ar uni0604 schwa uni0259 schwa-cy uni04D9 scommaaccent uni0219 sdotbelow uni1E63 seen-ar uni0633 seen-ar.alt uni0633.alt seen-ar.fina uniFEB2 seen-ar.fina.alt uni0633.fina.alt seen-ar.init uniFEB3 seen-ar.medi uniFEB4 seenDotbelowDotabove-ar uni069A seenDotbelowDotabove-ar.alt uni069A.alt seenDotbelowDotabove-ar.fina uni069A.fina seenDotbelowDotabove-ar.fina.alt uni069A.fina.alt seenDotbelowDotabove-ar.init uni069A.init seenDotbelowDotabove-ar.medi uni069A.medi seenFourabove-ar uni077D seenFourabove-ar.alt uni077D.alt seenFourabove-ar.fina uni077D.fina seenFourabove-ar.fina.alt uni077D.fina.alt seenFourabove-ar.init uni077D.init seenFourabove-ar.medi uni077D.medi seenFourdotsabove-ar uni075C seenFourdotsabove-ar.alt uni075C.alt seenFourdotsabove-ar.fina uni075C.fina seenFourdotsabove-ar.fina.alt uni075C.fina.alt seenFourdotsabove-ar.init uni075C.init seenFourdotsabove-ar.medi uni075C.medi seenTahTwodotshorizontalabove-ar uni0770 seenTahTwodotshorizontalabove-ar.alt uni0770.alt seenTahTwodotshorizontalabove-ar.fina uni0770.fina seenTahTwodotshorizontalabove-ar.fina.alt uni0770.fina.alt seenTahTwodotshorizontalabove-ar.init uni0770.init seenTahTwodotshorizontalabove-ar.medi uni0770.medi seenThreedotsbelow-ar uni069B seenThreedotsbelow-ar.alt uni069B.alt seenThreedotsbelow-ar.fina uni069B.fina seenThreedotsbelow-ar.fina.alt uni069B.fina.alt seenThreedotsbelow-ar.init uni069B.init seenThreedotsbelow-ar.medi uni069B.medi seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedotsar seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedotsar.alt seenThreedotsbelowthreedots-ar.fina seenThreedotsbelowthreedotsar.fina seenThreedotsbelowthreedots-ar.fina.alt seenThreedotsbelowthreedotsar.fina.alt seenThreedotsbelowthreedots-ar.init seenThreedotsbelowthreedotsar.init seenThreedotsbelowthreedots-ar.medi seenThreedotsbelowthreedotsar.medi seenTwodotshorizontalabove-ar uni076D seenTwodotshorizontalabove-ar.fina uni076D.fina seenTwodotshorizontalabove-ar.init uni076D.init seenTwodotshorizontalabove-ar.medi uni076D.medi seenTwodotsverticalabove-ar.alt seenTwodotsverticalabovear.alt seenTwodotsverticalabove-ar.fina.alt seenTwodotsverticalabovear.fina.alt seenVinvertedabove-ar uni077E seenVinvertedabove-ar.alt uni077E.alt seenVinvertedabove-ar.fina uni077E.fina seenVinvertedabove-ar.fina.alt uni077E.fina.alt seenVinvertedabove-ar.init uni077E.init seenVinvertedabove-ar.medi uni077E.medi semicolon-ar uni061B seven-ar uni0667 seven-arinferior sevenarinferior seven-arsuperior sevenarsuperior seven-persian uni06F7 seven-persian.urdu uni06F7.urdu seven-persian.urduinferior uni06F7.urduinferior seven-persian.urdusuperior uni06F7.urdusuperior seven-persianinferior sevenpersianinferior seven-persiansuperior sevenpersiansuperior seveninferior uni2087 sevensuperior uni2077 sha-cy uni0448 sha-cy.loclBGR uni0448.loclBGR shadda-ar uni0651 shadedark dkshade shadedark.stypo dkshade.stypo shadelight ltshade shadelight.stypo ltshade.stypo shademedium shade shademedium.stypo shade.stypo shcha-cy uni0449 shcha-cy.loclBGR uni0449.loclBGR sheen-ar uni0634 sheen-ar.alt uni0634.alt sheen-ar.fina uniFEB6 sheen-ar.fina.alt uni0634.fina.alt sheen-ar.init uniFEB7 sheen-ar.medi uniFEB8 sheenDotbelow-ar uni06FA sheenDotbelow-ar.alt uni06FA.alt sheenDotbelow-ar.fina uni06FA.fina sheenDotbelow-ar.fina.alt uni06FA.fina.alt sheenDotbelow-ar.init uni06FA.init sheenDotbelow-ar.medi uni06FA.medi sheqel uni20AA shha-cy uni04BB shiftInControl uni240F shiftInControl.ss20 uni240F.ss20 shiftOutControl uni240E shiftOutControl.ss20 uni240E.ss20 shin-hb uni05E9 shindagesh-hb uniFB49 shindageshshindot-hb uniFB2C shindageshsindot-hb uniFB2D shindot-hb uni05C1 shinshindot-hb uniFB2A shinsindot-hb uniFB2B sigmafinal uni03C2 sindhiampersand-ar uni06FD sindhipostpositionmen-ar uni06FE sindot-hb uni05C2 six-ar uni0666 six-arinferior sixarinferior six-arsuperior sixarsuperior six-persian uni06F6 six-persianinferior sixpersianinferior six-persiansuperior sixpersiansuperior sixinferior uni2086 sixsuperior uni2076 softhyphen uni00AD softsign-cy uni044C softsign-cy.loclBGR uni044C.loclBGR spaceControl uni2420 spadeBlackSuit spade startOfHeadingControl uni2401 startOfHeadingControl.ss20 uni2401.ss20 startOfTextControl uni2402 startOfTextControl.ss20 uni2402.ss20 strictlyequivalentto uni2263 substituteControl uni241A substituteControl.ss20 uni241A.ss20 substituteFormTwoControl uni2426 sukun-ar uni0652 sunWithRays sun synchronousIdleControl uni2416 synchronousIdleControl.ss20 uni2416.ss20 tah-ar uni0637 tah-ar.fina uniFEC2 tah-ar.init uniFEC3 tah-ar.medi uniFEC4 tahThreedots-ar uni069F tahThreedots-ar.fina uni069F.fina tahThreedots-ar.init uni069F.init tahThreedots-ar.medi uni069F.medi tahTwodotsabove-ar uni08A3 tahTwodotsabove-ar.fina uni08A3.fina tahTwodotsabove-ar.init uni08A3.init tahTwodotsabove-ar.medi uni08A3.medi tahbelow-ar tahbelowar tahcenter-ar tahcenterar tav-hb uni05EA tavdagesh-hb uniFB4A tcedilla uni0163 tcheh-ar uni0686 tcheh-ar.fina uniFB7B tcheh-ar.init uniFB7C tcheh-ar.medi uniFB7D tchehDotabove-ar uni06BF tchehDotabove-ar.fina uni06BF.fina tchehDotabove-ar.init uni06BF.init tchehDotabove-ar.medi uni06BF.medi tcheheh-ar uni0687 tcheheh-ar.fina uniFB7F tcheheh-ar.init uniFB80 tcheheh-ar.medi uniFB81 tcommaaccent uni021B te-cy uni0442 te-cy.loclBGR uni0442.loclBGR teh-ar uni062A teh-ar.alt uni062A.alt teh-ar.fina uniFE96 teh-ar.fina.alt uni062A.fina.alt teh-ar.init uniFE97 teh-ar.init.alt uni062A.init.alt teh-ar.medi uniFE98 tehMarbuta-ar uni0629 tehMarbuta-ar.fina uniFE94 tehMarbutagoal-ar uni06C3 tehMarbutagoal-ar.fina uni06C3.fina tehRing-ar uni067C tehRing-ar.alt uni067C.alt tehRing-ar.fina uni067C.fina tehRing-ar.fina.alt uni067C.fina.alt tehRing-ar.init uni067C.init tehRing-ar.init.alt uni067C.init.alt tehRing-ar.medi uni067C.medi tehTehabove-ar uni08B8 tehTehabove-ar.alt uni08B8.alt tehTehabove-ar.fina uni08B8.fina tehTehabove-ar.fina.alt uni08B8.fina.alt tehTehabove-ar.init uni08B8.init tehTehabove-ar.init.alt uni08B8.init.alt tehTehabove-ar.medi uni08B8.medi tehThreedotsdown-ar uni067D tehThreedotsdown-ar.alt uni067D.alt tehThreedotsdown-ar.fina uni067D.fina tehThreedotsdown-ar.fina.alt uni067D.fina.alt tehThreedotsdown-ar.init uni067D.init tehThreedotsdown-ar.init.alt uni067D.init.alt tehThreedotsdown-ar.medi uni067D.medi tehThreedotsupbelow-ar uni0753 tehThreedotsupbelow-ar.alt uni0753.alt tehThreedotsupbelow-ar.fina uni0753.fina tehThreedotsupbelow-ar.fina.alt uni0753.fina.alt tehThreedotsupbelow-ar.init uni0753.init tehThreedotsupbelow-ar.init.alt uni0753.init.alt tehThreedotsupbelow-ar.medi uni0753.medi tehabove-ar.small tehabovear.small teheh-ar uni067F teheh-ar.alt uni067F.alt teheh-ar.fina uniFB63 teheh-ar.fina.alt uni067F.fina.alt teheh-ar.init uniFB64 teheh-ar.init.alt uni067F.init.alt teheh-ar.medi uniFB65 tenge uni20B8 tesh uni02A7 tet-hb uni05D8 tetdagesh-hb uniFB38 thal-ar uni0630 thal-ar.fina uniFEAC thalAlefabove-ar uniFC5B thalAlefabove-ar.fina uniFC5B.fina theh-ar uni062B theh-ar.alt uni062B.alt theh-ar.fina uniFE9A theh-ar.fina.alt uni062B.fina.alt theh-ar.init uniFE9B theh-ar.init.alt uni062B.init.alt theh-ar.medi uniFE9C thetamod uni1DBF thousandseparator-ar uni066C three-ar uni0663 three-arinferior threearinferior three-arsuperior threearsuperior three-persian uni06F3 three-persian.small01 uni06F3.small01 three-persianinferior threepersianinferior three-persiansuperior threepersiansuperior threedots-ar uni061E threedotsdownabove-ar threedotsdownabovear threedotsdownbelow-ar threedotsdownbelowar threedotsdowncenter-ar threedotsdowncenterar threedotsupabove-ar threedotsupabovear threedotsupabove-ar.v2 threedotsupabovear.v2 threedotsupbelow-ar threedotsupbelowar threedotsupcenter-ar threedotsupcenterar threeinferior uni2083 threesuperior uni00B3 topHalfBlackCircle uni2BCA topHalfBlackDiamond uni2B18 topHalfWhiteSquare uni2B13 topRightHalfWhiteSquare uni2B15 tsadi-hb uni05E6 tsadidagesh-hb uniFB46 tse-cy uni0446 tse-cy.loclBGR uni0446.loclBGR tshe-cy uni045B tteh-ar uni0679 tteh-ar.alt uni0679.alt tteh-ar.fina uniFB67 tteh-ar.fina.alt uni0679.fina.alt tteh-ar.init uniFB68 tteh-ar.init.alt uni0679.init.alt tteh-ar.medi uniFB69 tteheh-ar uni067A tteheh-ar.alt uni067A.alt tteheh-ar.fina uniFB5F tteheh-ar.fina.alt uni067A.fina.alt tteheh-ar.init uniFB60 tteheh-ar.init.alt uni067A.init.alt tteheh-ar.medi uniFB61 tugrik uni20AE two-ar uni0662 two-arinferior twoarinferior two-arsuperior twoarsuperior two-persian uni06F2 two-persian.small01 uni06F2.small01 two-persianinferior twopersianinferior two-persiansuperior twopersiansuperior twodotshorizontalabove-ar twodotshorizontalabovear twodotshorizontalabove-ar.v2 twodotshorizontalabovear.v2 twodotshorizontalbelow-ar twodotshorizontalbelowar twodotshorizontalcenter-ar twodotshorizontalcenterar twodotstahbelow-ar twodotstahbelowar twodotstahcenter-ar twodotstahcenterar twodotsverticalabove-ar twodotsverticalabovear twodotsverticalbelow-ar twodotsverticalbelowar twodotsverticalcenter-ar twodotsverticalcenterar twoinferior uni2082 twosuperior uni00B2 u-ar uni06C7 u-ar.fina uniFBD8 u-cy uni0443 uHamzaabove-ar uni0677 uHamzaabove-ar.fina uni0677.fina udotbelow uni1EE5 uhookabove uni1EE7 uhornacute uni1EE9 uhorndotbelow uni1EF1 uhorngrave uni1EEB uhornhookabove uni1EED uhorntilde uni1EEF umacron-cy uni04EF unitSeparatorControl uni241F upArrow arrowup upBlackSmallTriangle uni25B4 upBlackTriangle triagup upDashArrow uni21E1 upDownArrow arrowupdn upDownbaseArrow arrowupdnbse upLeftHalfBlackTriangle uni25ED upRightHalfBlackTriangle uni25EE upWhiteSmallTriangle uni25B5 upWhiteTriangle uni25B3 upWhiteTriangleWithDot uni25EC upperHalfArc uni25E0 upperHalfBlackWhiteCircle uni25D3 upperHalfBlock upblock upperHalfBlock.stypo upblock.stypo upperHalfInverseWhiteCircle uni25DA upperLeftAndLowerLeftAndLowerRightBlock uni2599 upperLeftAndLowerLeftAndLowerRightBlock.stypo uni2599.stypo upperLeftAndLowerRightBlock uni259A upperLeftAndLowerRightBlock.stypo uni259A.stypo upperLeftAndUpperRightAndLowerLeftBlock uni259B upperLeftAndUpperRightAndLowerLeftBlock.stypo uni259B.stypo upperLeftAndUpperRightAndLowerRightBlock uni259C upperLeftAndUpperRightAndLowerRightBlock.stypo uni259C.stypo upperLeftArc uni25DC upperLeftBlackTriangle uni25E4 upperLeftBlock uni2598 upperLeftBlock.stypo uni2598.stypo upperLeftDiagonalHalfBlackSquare uni25E9 upperLeftQuadrantWhiteCircle uni25F4 upperLeftTriangle uni25F8 upperLeftWhiteCircle uni25D5 upperOneEighthBlock uni2594 upperOneEighthBlock.stypo uni2594.stypo upperRightAndLowerLeftAndLowerRightBlock uni259F upperRightAndLowerLeftAndLowerRightBlock.stypo uni259F.stypo upperRightAndLowerLeftBlock uni259E upperRightAndLowerLeftBlock.stypo uni259E.stypo upperRightArc uni25DD upperRightBlackCircle uni25D4 upperRightBlackTriangle uni25E5 upperRightBlock uni259D upperRightBlock.stypo uni259D.stypo upperRightQuadrantWhiteCircle uni25F7 upperRightTriangle uni25F9 upperlefttolowerrightFillSquare uni25A7 upperrighttolowerleftFillSquare uni25A8 upsilon-latin uni028A ushort-cy uni045E ustraight-cy uni04AF ustraightstroke-cy uni04B1 vabove-ar uni065A vav-hb uni05D5 vavdagesh-hb uniFB35 vavholam-hb uniFB4B ve-ar uni06CB ve-ar.fina uniFBDF ve-cy uni0432 ve-cy.loclBGR uni0432.loclBGR vectorOrCrossProduct uni2A2F veh-ar uni06A4 veh-ar.alt uni06A4.alt veh-ar.fina uniFB6B veh-ar.fina.alt uni06A4.fina.alt veh-ar.init uniFB6C veh-ar.init.alt uni06A4.init.alt veh-ar.medi uniFB6D venus female verseComma-ar uni060E verticalBisectingLineWhiteSquare uni25EB verticalFillCircle uni25CD verticalFillSquare uni25A5 verticalTabulationControl uni240B verticalTabulationControl.ss20 uni240B.ss20 vhook uni028B vinvertedabove-ar uni065B vturned uni028C wasla-ar waslaar wavyhamzaabove-ar wavyhamzaabovear wavyhamzabelow-ar uni065F waw-ar uni0648 waw-ar.fina uniFEEE wawDotabove-ar uni06CF wawDotabove-ar.fina uni06CF.fina wawDotcenter-ar uni08AB wawDotcenter-ar.fina uni08AB.fina wawHamzaabove-ar uni0624 wawHamzaabove-ar.fina uniFE86 wawStraight-ar uni08B1 wawThreeAbove-ar uni0779 wawThreeAbove-ar.fina uni0779.fina wawTwoabove-ar uni0778 wawTwoabove-ar.fina uni0778.fina wawTwodots-ar uni06CA wawTwodots-ar.fina uni06CA.fina wawring-ar uni06C4 wawring-ar.fina uni06C4.fina whiteBullet openbullet whiteCircle circle whiteDiamond uni25C7 whiteHexagon uni2B21 whiteHorizontalEllipse uni2B2D whiteInBlackSquare uni25A3 whiteLargeSquare uni2B1C whiteLowerLeftQuadrantSquare uni25F1 whiteLowerRightQuadrantSquare uni25F2 whiteMediumDiamond uni2B26 whiteMediumLozenge uni2B28 whiteParallelogram uni25B1 whitePentagon uni2B20 whiteRect uni25AD whiteRoundedCornersSquare uni25A2 whiteSmallLozenge uni2B2B whiteSmallSquare uni25AB whiteSmilingFace smileface whiteSquare uni25A1 whiteUpperLeftQuadrantSquare uni25F0 whiteUpperRightQuadrantSquare uni25F3 whiteVerticalEllipse uni2B2F whiteVerticalRect uni25AF whiteVerysmallSquare uni2B1E wmod uni02B7 won uni20A9 ydotbelow uni1EF5 year-ar uni0601 yeh-ar uni064A yeh-ar.fina uniFEF2 yeh-ar.fina.alt uni064A.fina.alt yeh-ar.init uniFEF3 yeh-ar.init.alt uni064A.init.alt yeh-ar.medi uniFEF4 yeh-farsi uni06CC yeh-farsi.fina uniFBFD yeh-farsi.fina.alt uni06CC.fina.alt yeh-farsi.init uniFBFE yeh-farsi.init.alt uni06CC.init.alt yeh-farsi.medi uniFBFF yehFourbelow-farsi uni0777 yehFourbelow-farsi.fina uni0777.fina yehFourbelow-farsi.fina.alt uni0777.fina.alt yehFourbelow-farsi.init uni0777.init yehFourbelow-farsi.init.alt uni0777.init.alt yehFourbelow-farsi.medi uni0777.medi yehHamzaabove-ar uni0626 yehHamzaabove-ar.fina uniFE8A yehHamzaabove-ar.fina.alt uni0626.fina.alt yehHamzaabove-ar.init uniFE8B yehHamzaabove-ar.init.alt uni0626.init.alt yehHamzaabove-ar.medi uniFE8C yehKashmiri-ar uni0620 yehKashmiri-ar.fina uni0620.fina yehKashmiri-ar.fina.alt uni0620.fina.alt yehKashmiri-ar.init uni0620.init yehKashmiri-ar.init.alt uni0620.init.alt yehKashmiri-ar.medi uni0620.medi yehRohingya-ar uni08AC yehRohingya-ar.fina uni08AC.fina yehRohingya-ar.isol uni08AC.isol yehTail-ar uni06CD yehTail-ar.fina uni06CD.fina yehTail-ar.fina.alt uni06CD.fina.alt yehThreeabove-farsi uni0776 yehThreeabove-farsi.fina uni0776.fina yehThreeabove-farsi.fina.alt uni0776.fina.alt yehThreeabove-farsi.init uni0776.init yehThreeabove-farsi.init.alt uni0776.init.alt yehThreeabove-farsi.medi uni0776.medi yehThreedotsabove-farsi uni063F yehThreedotsabove-farsi.fina uni063F.fina yehThreedotsabove-farsi.fina.alt uni063F.fina.alt yehThreedotsabove-farsi.init uni063F.init yehThreedotsabove-farsi.init.alt uni063F.init.alt yehThreedotsabove-farsi.medi uni063F.medi yehThreedotsbelow-ar uni06D1 yehThreedotsbelow-ar.fina uni06D1.fina yehThreedotsbelow-ar.fina.alt uni06D1.fina.alt yehThreedotsbelow-ar.init uni06D1.init yehThreedotsbelow-ar.init.alt uni06D1.init.alt yehThreedotsbelow-ar.medi uni06D1.medi yehTwoabove-farsi uni0775 yehTwoabove-farsi.fina uni0775.fina yehTwoabove-farsi.fina.alt uni0775.fina.alt yehTwoabove-farsi.init uni0775.init yehTwoabove-farsi.init.alt uni0775.init.alt yehTwoabove-farsi.medi uni0775.medi yehTwodotsabove-farsi uni063E yehTwodotsabove-farsi.fina uni063E.fina yehTwodotsabove-farsi.fina.alt uni063E.fina.alt yehTwodotsabove-farsi.init uni063E.init yehTwodotsabove-farsi.init.alt uni063E.init.alt yehTwodotsabove-farsi.medi uni063E.medi yehTwodotsbelowDotabove-ar uni08A9 yehTwodotsbelowDotabove-ar.fina uni08A9.fina yehTwodotsbelowDotabove-ar.init uni08A9.init yehTwodotsbelowDotabove-ar.init.alt uni08A9.init.alt yehTwodotsbelowDotabove-ar.medi uni08A9.medi yehTwodotsbelowHamzaabove-ar uni08A8 yehTwodotsbelowHamzaabove-ar.fina uni08A8.fina yehTwodotsbelowHamzaabove-ar.init uni08A8.init yehTwodotsbelowHamzaabove-ar.init.alt uni08A8.init.alt yehTwodotsbelowHamzaabove-ar.medi uni08A8.medi yehTwodotsbelowNoonabove-ar uni08BA yehTwodotsbelowNoonabove-ar.fina uni08BA.fina yehTwodotsbelowNoonabove-ar.fina.alt uni08BA.fina.alt yehTwodotsbelowNoonabove-ar.init uni08BA.init yehTwodotsbelowNoonabove-ar.init.alt uni08BA.init.alt yehTwodotsbelowNoonabove-ar.medi uni08BA.medi yehVabove-ar uni06CE yehVabove-ar.fina uni06CE.fina yehVabove-ar.fina.alt uni06CE.fina.alt yehVabove-ar.init uni06CE.init yehVabove-ar.init.alt uni06CE.init.alt yehVabove-ar.medi uni06CE.medi yehVinverted-farsi uni063D yehVinverted-farsi.fina uni063D.fina yehVinverted-farsi.fina.alt uni063D.fina.alt yehVinverted-farsi.init uni063D.init yehVinverted-farsi.init.alt uni063D.init.alt yehVinverted-farsi.medi uni063D.medi yehbarree-ar uni06D2 yehbarree-ar.fina uniFBAF yehbarreeHamzaabove-ar uni06D3 yehbarreeHamzaabove-ar.fina uniFBB1 yehbarreeThreeabove-ar uni077B yehbarreeThreeabove-ar.fina uni077B.fina yehbarreeThreeabove-ar.init uni077B.init yehbarreeThreeabove-ar.init.alt uni077B.init.alt yehbarreeThreeabove-ar.medi uni077B.medi yehbarreeTwoabove-ar uni077A yehbarreeTwoabove-ar.fina uni077A.fina yehbarreeTwoabove-ar.init uni077A.init yehbarreeTwoabove-ar.init.alt uni077A.init.alt yehbarreeTwoabove-ar.medi uni077A.medi yeru-cy uni044B yhookabove uni1EF7 yi-cy uni0457 ymacron uni0233 ymod uni02B8 yod-hb uni05D9 yoddagesh-hb uniFB39 ytilde uni1EF9 yu-ar uni06C8 yu-ar.fina uniFBDC zah-ar uni0638 zah-ar.fina uniFEC6 zah-ar.init uniFEC7 zah-ar.medi uniFEC8 zain-ar uni0632 zain-ar.fina uniFEB0 zainVInvertedabove-ar zainVInvertedabovear zainVInvertedabove-ar.fina zainVInvertedabovear.fina zayin-hb uni05D6 zayindagesh-hb uniFB36 ze-cy uni0437 ze-cy.loclBGR uni0437.loclBGR zero-ar uni0660 zero-arinferior zeroarinferior zero-arsuperior zeroarsuperior zero-persian uni06F0 zero-persianinferior zeropersianinferior zero-persiansuperior zeropersiansuperior zeroinferior uni2080 zerosuperior uni2070 zhe-cy uni0436 zhe-cy.loclBGR uni0436.loclBGR zhedescender-cy uni0497 zmod uni1DBB checkerBoardDeleteApple2 uni2427 checkerBoardDeleteTrs80 uni2428 checkerBoardDeleteAmstradCpc uni2429 checkerBoardDeleteAmstradCpc.stypo uni2429.stypo checkerBoardFill u1FB95 checkerBoardFill.stypo u1FB95.stypo checkerBoardFillInverse u1FB96 checkerBoardFillInverse.stypo u1FB96.stypo blockQuadrant-UC u1FBE4 blockQuadrant-UC.stypo u1FBE4.stypo blockQuadrant-LC u1FBE5 blockQuadrant-LC.stypo u1FBE5.stypo blockQuadrant-ML u1FBE6 blockQuadrant-ML.stypo u1FBE6.stypo blockQuadrant-MR u1FBE7 blockQuadrant-MR.stypo u1FBE7.stypo blockTriangle-1 u1FB6D blockTriangle-1.stypo u1FB6D.stypo blockTriangle-2 u1FB6C blockTriangle-2.stypo u1FB6C.stypo blockTriangle-3 u1FB6E blockTriangle-3.stypo u1FB6E.stypo blockTriangle-4 u1FB6F blockTriangle-4.stypo u1FB6F.stypo blockTriangle-14 u1FB9A blockTriangle-14.stypo u1FB9A.stypo blockTriangle-23 u1FB9B blockTriangle-23.stypo u1FB9B.stypo blockTriangle-123 u1FB6B blockTriangle-123.stypo u1FB6B.stypo blockTriangle-124 u1FB6A blockTriangle-124.stypo u1FB6A.stypo blockTriangle-134 u1FB68 blockTriangle-134.stypo u1FB68.stypo blockTriangle-234 u1FB69 blockTriangle-234.stypo u1FB69.stypo blockCircle-1 u1FBEF blockCircle-1.stypo u1FBEF.stypo blockCircle-2 u1FBEC blockCircle-2.stypo u1FBEC.stypo blockCircle-3 u1FBED blockCircle-3.stypo u1FBED.stypo blockCircle-4 u1FBEE blockCircle-4.stypo u1FBEE.stypo blockCircle-UC u1FBE8 blockCircle-UC.stypo u1FBE8.stypo blockCircle-LC u1FBEA blockCircle-LC.stypo u1FBEA.stypo blockCircle-ML u1FBEB blockCircle-ML.stypo u1FBEB.stypo blockCircle-MR u1FBE9 blockCircle-MR.stypo u1FBE9.stypo blockSextant-1 u1FB00 blockSextant-1.stypo u1FB00.stypo blockSextant-2 u1FB01 blockSextant-2.stypo u1FB01.stypo blockSextant-12 u1FB02 blockSextant-12.stypo u1FB02.stypo blockSextant-3 u1FB03 blockSextant-3.stypo u1FB03.stypo blockSextant-13 u1FB04 blockSextant-13.stypo u1FB04.stypo blockSextant-23 u1FB05 blockSextant-23.stypo u1FB05.stypo blockSextant-123 u1FB06 blockSextant-123.stypo u1FB06.stypo blockSextant-4 u1FB07 blockSextant-4.stypo u1FB07.stypo blockSextant-14 u1FB08 blockSextant-14.stypo u1FB08.stypo blockSextant-24 u1FB09 blockSextant-24.stypo u1FB09.stypo blockSextant-124 u1FB0A blockSextant-124.stypo u1FB0A.stypo blockSextant-34 u1FB0B blockSextant-34.stypo u1FB0B.stypo blockSextant-134 u1FB0C blockSextant-134.stypo u1FB0C.stypo blockSextant-234 u1FB0D blockSextant-234.stypo u1FB0D.stypo blockSextant-1234 u1FB0E blockSextant-1234.stypo u1FB0E.stypo blockSextant-5 u1FB0F blockSextant-5.stypo u1FB0F.stypo blockSextant-15 u1FB10 blockSextant-15.stypo u1FB10.stypo blockSextant-25 u1FB11 blockSextant-25.stypo u1FB11.stypo blockSextant-125 u1FB12 blockSextant-125.stypo u1FB12.stypo blockSextant-35 u1FB13 blockSextant-35.stypo u1FB13.stypo blockSextant-235 u1FB14 blockSextant-235.stypo u1FB14.stypo blockSextant-1235 u1FB15 blockSextant-1235.stypo u1FB15.stypo blockSextant-45 u1FB16 blockSextant-45.stypo u1FB16.stypo blockSextant-145 u1FB17 blockSextant-145.stypo u1FB17.stypo blockSextant-245 u1FB18 blockSextant-245.stypo u1FB18.stypo blockSextant-1245 u1FB19 blockSextant-1245.stypo u1FB19.stypo blockSextant-345 u1FB1A blockSextant-345.stypo u1FB1A.stypo blockSextant-1345 u1FB1B blockSextant-1345.stypo u1FB1B.stypo blockSextant-2345 u1FB1C blockSextant-2345.stypo u1FB1C.stypo blockSextant-12345 u1FB1D blockSextant-12345.stypo u1FB1D.stypo blockSextant-6 u1FB1E blockSextant-6.stypo u1FB1E.stypo blockSextant-16 u1FB1F blockSextant-16.stypo u1FB1F.stypo blockSextant-26 u1FB20 blockSextant-26.stypo u1FB20.stypo blockSextant-126 u1FB21 blockSextant-126.stypo u1FB21.stypo blockSextant-36 u1FB22 blockSextant-36.stypo u1FB22.stypo blockSextant-136 u1FB23 blockSextant-136.stypo u1FB23.stypo blockSextant-236 u1FB24 blockSextant-236.stypo u1FB24.stypo blockSextant-1236 u1FB25 blockSextant-1236.stypo u1FB25.stypo blockSextant-46 u1FB26 blockSextant-46.stypo u1FB26.stypo blockSextant-146 u1FB27 blockSextant-146.stypo u1FB27.stypo blockSextant-1246 u1FB28 blockSextant-1246.stypo u1FB28.stypo blockSextant-346 u1FB29 blockSextant-346.stypo u1FB29.stypo blockSextant-1346 u1FB2A blockSextant-1346.stypo u1FB2A.stypo blockSextant-2346 u1FB2B blockSextant-2346.stypo u1FB2B.stypo blockSextant-12346 u1FB2C blockSextant-12346.stypo u1FB2C.stypo blockSextant-56 u1FB2D blockSextant-56.stypo u1FB2D.stypo blockSextant-156 u1FB2E blockSextant-156.stypo u1FB2E.stypo blockSextant-256 u1FB2F blockSextant-256.stypo u1FB2F.stypo blockSextant-1256 u1FB30 blockSextant-1256.stypo u1FB30.stypo blockSextant-356 u1FB31 blockSextant-356.stypo u1FB31.stypo blockSextant-1356 u1FB32 blockSextant-1356.stypo u1FB32.stypo blockSextant-2356 u1FB33 blockSextant-2356.stypo u1FB33.stypo blockSextant-12356 u1FB34 blockSextant-12356.stypo u1FB34.stypo blockSextant-456 u1FB35 blockSextant-456.stypo u1FB35.stypo blockSextant-1456 u1FB36 blockSextant-1456.stypo u1FB36.stypo blockSextant-2456 u1FB37 blockSextant-2456.stypo u1FB37.stypo blockSextant-12456 u1FB38 blockSextant-12456.stypo u1FB38.stypo blockSextant-3456 u1FB39 blockSextant-3456.stypo u1FB39.stypo blockSextant-13456 u1FB3A blockSextant-13456.stypo u1FB3A.stypo blockSextant-23456 u1FB3B blockSextant-23456.stypo u1FB3B.stypo blockDiagonal-1FB3C u1FB3C blockDiagonal-1FB3C.stypo u1FB3C.stypo blockDiagonal-1FB3D u1FB3D blockDiagonal-1FB3D.stypo u1FB3D.stypo blockDiagonal-1FB3E u1FB3E blockDiagonal-1FB3E.stypo u1FB3E.stypo blockDiagonal-1FB3F u1FB3F blockDiagonal-1FB3F.stypo u1FB3F.stypo blockDiagonal-1FB40 u1FB40 blockDiagonal-1FB40.stypo u1FB40.stypo blockDiagonal-1FB41 u1FB41 blockDiagonal-1FB41.stypo u1FB41.stypo blockDiagonal-1FB42 u1FB42 blockDiagonal-1FB42.stypo u1FB42.stypo blockDiagonal-1FB43 u1FB43 blockDiagonal-1FB43.stypo u1FB43.stypo blockDiagonal-1FB44 u1FB44 blockDiagonal-1FB44.stypo u1FB44.stypo blockDiagonal-1FB45 u1FB45 blockDiagonal-1FB45.stypo u1FB45.stypo blockDiagonal-1FB46 u1FB46 blockDiagonal-1FB46.stypo u1FB46.stypo blockDiagonal-1FB47 u1FB47 blockDiagonal-1FB47.stypo u1FB47.stypo blockDiagonal-1FB48 u1FB48 blockDiagonal-1FB48.stypo u1FB48.stypo blockDiagonal-1FB49 u1FB49 blockDiagonal-1FB49.stypo u1FB49.stypo blockDiagonal-1FB4A u1FB4A blockDiagonal-1FB4A.stypo u1FB4A.stypo blockDiagonal-1FB4B u1FB4B blockDiagonal-1FB4B.stypo u1FB4B.stypo blockDiagonal-1FB4C u1FB4C blockDiagonal-1FB4C.stypo u1FB4C.stypo blockDiagonal-1FB4D u1FB4D blockDiagonal-1FB4D.stypo u1FB4D.stypo blockDiagonal-1FB4E u1FB4E blockDiagonal-1FB4E.stypo u1FB4E.stypo blockDiagonal-1FB4F u1FB4F blockDiagonal-1FB4F.stypo u1FB4F.stypo blockDiagonal-1FB50 u1FB50 blockDiagonal-1FB50.stypo u1FB50.stypo blockDiagonal-1FB51 u1FB51 blockDiagonal-1FB51.stypo u1FB51.stypo blockDiagonal-1FB52 u1FB52 blockDiagonal-1FB52.stypo u1FB52.stypo blockDiagonal-1FB53 u1FB53 blockDiagonal-1FB53.stypo u1FB53.stypo blockDiagonal-1FB54 u1FB54 blockDiagonal-1FB54.stypo u1FB54.stypo blockDiagonal-1FB55 u1FB55 blockDiagonal-1FB55.stypo u1FB55.stypo blockDiagonal-1FB56 u1FB56 blockDiagonal-1FB56.stypo u1FB56.stypo blockDiagonal-1FB57 u1FB57 blockDiagonal-1FB57.stypo u1FB57.stypo blockDiagonal-1FB58 u1FB58 blockDiagonal-1FB58.stypo u1FB58.stypo blockDiagonal-1FB59 u1FB59 blockDiagonal-1FB59.stypo u1FB59.stypo blockDiagonal-1FB5A u1FB5A blockDiagonal-1FB5A.stypo u1FB5A.stypo blockDiagonal-1FB5B u1FB5B blockDiagonal-1FB5B.stypo u1FB5B.stypo blockDiagonal-1FB5C u1FB5C blockDiagonal-1FB5C.stypo u1FB5C.stypo blockDiagonal-1FB5D u1FB5D blockDiagonal-1FB5D.stypo u1FB5D.stypo blockDiagonal-1FB5E u1FB5E blockDiagonal-1FB5E.stypo u1FB5E.stypo blockDiagonal-1FB5F u1FB5F blockDiagonal-1FB5F.stypo u1FB5F.stypo blockDiagonal-1FB60 u1FB60 blockDiagonal-1FB60.stypo u1FB60.stypo blockDiagonal-1FB61 u1FB61 blockDiagonal-1FB61.stypo u1FB61.stypo blockDiagonal-1FB62 u1FB62 blockDiagonal-1FB62.stypo u1FB62.stypo blockDiagonal-1FB63 u1FB63 blockDiagonal-1FB63.stypo u1FB63.stypo blockDiagonal-1FB64 u1FB64 blockDiagonal-1FB64.stypo u1FB64.stypo blockDiagonal-1FB65 u1FB65 blockDiagonal-1FB65.stypo u1FB65.stypo blockDiagonal-1FB66 u1FB66 blockDiagonal-1FB66.stypo u1FB66.stypo blockDiagonal-1FB67 u1FB67 blockDiagonal-1FB67.stypo u1FB67.stypo blockOctant-1 u1CEA8 blockOctant-1.stypo u1CEA8.stypo blockOctant-2 u1CEAB blockOctant-2.stypo u1CEAB.stypo blockOctant-12 u1FB82 blockOctant-12.stypo u1FB82.stypo blockOctant-3 u1CD00 blockOctant-3.stypo u1CD00.stypo blockOctant-23 u1CD01 blockOctant-23.stypo u1CD01.stypo blockOctant-123 u1CD02 blockOctant-123.stypo u1CD02.stypo blockOctant-4 u1CD03 blockOctant-4.stypo u1CD03.stypo blockOctant-14 u1CD04 blockOctant-14.stypo u1CD04.stypo blockOctant-124 u1CD05 blockOctant-124.stypo u1CD05.stypo blockOctant-34 u1CD06 blockOctant-34.stypo u1CD06.stypo blockOctant-134 u1CD07 blockOctant-134.stypo u1CD07.stypo blockOctant-234 u1CD08 blockOctant-234.stypo u1CD08.stypo blockOctant-5 u1CD09 blockOctant-5.stypo u1CD09.stypo blockOctant-15 u1CD0A blockOctant-15.stypo u1CD0A.stypo blockOctant-25 u1CD0B blockOctant-25.stypo u1CD0B.stypo blockOctant-125 u1CD0C blockOctant-125.stypo u1CD0C.stypo blockOctant-135 u1CD0D blockOctant-135.stypo u1CD0D.stypo blockOctant-235 u1CD0E blockOctant-235.stypo u1CD0E.stypo blockOctant-1235 u1CD0F blockOctant-1235.stypo u1CD0F.stypo blockOctant-45 u1CD10 blockOctant-45.stypo u1CD10.stypo blockOctant-145 u1CD11 blockOctant-145.stypo u1CD11.stypo blockOctant-245 u1CD12 blockOctant-245.stypo u1CD12.stypo blockOctant-1245 u1CD13 blockOctant-1245.stypo u1CD13.stypo blockOctant-345 u1CD14 blockOctant-345.stypo u1CD14.stypo blockOctant-1345 u1CD15 blockOctant-1345.stypo u1CD15.stypo blockOctant-2345 u1CD16 blockOctant-2345.stypo u1CD16.stypo blockOctant-12345 u1CD17 blockOctant-12345.stypo u1CD17.stypo blockOctant-6 u1CD18 blockOctant-6.stypo u1CD18.stypo blockOctant-16 u1CD19 blockOctant-16.stypo u1CD19.stypo blockOctant-26 u1CD1A blockOctant-26.stypo u1CD1A.stypo blockOctant-126 u1CD1B blockOctant-126.stypo u1CD1B.stypo blockOctant-36 u1CD1C blockOctant-36.stypo u1CD1C.stypo blockOctant-136 u1CD1D blockOctant-136.stypo u1CD1D.stypo blockOctant-236 u1CD1E blockOctant-236.stypo u1CD1E.stypo blockOctant-1236 u1CD1F blockOctant-1236.stypo u1CD1F.stypo blockOctant-146 u1CD20 blockOctant-146.stypo u1CD20.stypo blockOctant-246 u1CD21 blockOctant-246.stypo u1CD21.stypo blockOctant-1246 u1CD22 blockOctant-1246.stypo u1CD22.stypo blockOctant-346 u1CD23 blockOctant-346.stypo u1CD23.stypo blockOctant-1346 u1CD24 blockOctant-1346.stypo u1CD24.stypo blockOctant-2346 u1CD25 blockOctant-2346.stypo u1CD25.stypo blockOctant-12346 u1CD26 blockOctant-12346.stypo u1CD26.stypo blockOctant-56 u1CD27 blockOctant-56.stypo u1CD27.stypo blockOctant-156 u1CD28 blockOctant-156.stypo u1CD28.stypo blockOctant-256 u1CD29 blockOctant-256.stypo u1CD29.stypo blockOctant-1256 u1CD2A blockOctant-1256.stypo u1CD2A.stypo blockOctant-356 u1CD2B blockOctant-356.stypo u1CD2B.stypo blockOctant-1356 u1CD2C blockOctant-1356.stypo u1CD2C.stypo blockOctant-2356 u1CD2D blockOctant-2356.stypo u1CD2D.stypo blockOctant-12356 u1CD2E blockOctant-12356.stypo u1CD2E.stypo blockOctant-456 u1CD2F blockOctant-456.stypo u1CD2F.stypo blockOctant-1456 u1CD30 blockOctant-1456.stypo u1CD30.stypo blockOctant-2456 u1CD31 blockOctant-2456.stypo u1CD31.stypo blockOctant-12456 u1CD32 blockOctant-12456.stypo u1CD32.stypo blockOctant-3456 u1CD33 blockOctant-3456.stypo u1CD33.stypo blockOctant-13456 u1CD34 blockOctant-13456.stypo u1CD34.stypo blockOctant-23456 u1CD35 blockOctant-23456.stypo u1CD35.stypo blockOctant-123456 u1FB85 blockOctant-123456.stypo u1FB85.stypo blockOctant-7 u1CEA3 blockOctant-7.stypo u1CEA3.stypo blockOctant-17 u1CD36 blockOctant-17.stypo u1CD36.stypo blockOctant-27 u1CD37 blockOctant-27.stypo u1CD37.stypo blockOctant-127 u1CD38 blockOctant-127.stypo u1CD38.stypo blockOctant-37 u1CD39 blockOctant-37.stypo u1CD39.stypo blockOctant-137 u1CD3A blockOctant-137.stypo u1CD3A.stypo blockOctant-237 u1CD3B blockOctant-237.stypo u1CD3B.stypo blockOctant-1237 u1CD3C blockOctant-1237.stypo u1CD3C.stypo blockOctant-47 u1CD3D blockOctant-47.stypo u1CD3D.stypo blockOctant-147 u1CD3E blockOctant-147.stypo u1CD3E.stypo blockOctant-247 u1CD3F blockOctant-247.stypo u1CD3F.stypo blockOctant-1247 u1CD40 blockOctant-1247.stypo u1CD40.stypo blockOctant-347 u1CD41 blockOctant-347.stypo u1CD41.stypo blockOctant-1347 u1CD42 blockOctant-1347.stypo u1CD42.stypo blockOctant-2347 u1CD43 blockOctant-2347.stypo u1CD43.stypo blockOctant-12347 u1CD44 blockOctant-12347.stypo u1CD44.stypo blockOctant-157 u1CD45 blockOctant-157.stypo u1CD45.stypo blockOctant-257 u1CD46 blockOctant-257.stypo u1CD46.stypo blockOctant-1257 u1CD47 blockOctant-1257.stypo u1CD47.stypo blockOctant-357 u1CD48 blockOctant-357.stypo u1CD48.stypo blockOctant-2357 u1CD49 blockOctant-2357.stypo u1CD49.stypo blockOctant-12357 u1CD4A blockOctant-12357.stypo u1CD4A.stypo blockOctant-457 u1CD4B blockOctant-457.stypo u1CD4B.stypo blockOctant-1457 u1CD4C blockOctant-1457.stypo u1CD4C.stypo blockOctant-12457 u1CD4D blockOctant-12457.stypo u1CD4D.stypo blockOctant-3457 u1CD4E blockOctant-3457.stypo u1CD4E.stypo blockOctant-13457 u1CD4F blockOctant-13457.stypo u1CD4F.stypo blockOctant-23457 u1CD50 blockOctant-23457.stypo u1CD50.stypo blockOctant-67 u1CD51 blockOctant-67.stypo u1CD51.stypo blockOctant-167 u1CD52 blockOctant-167.stypo u1CD52.stypo blockOctant-267 u1CD53 blockOctant-267.stypo u1CD53.stypo blockOctant-1267 u1CD54 blockOctant-1267.stypo u1CD54.stypo blockOctant-367 u1CD55 blockOctant-367.stypo u1CD55.stypo blockOctant-1367 u1CD56 blockOctant-1367.stypo u1CD56.stypo blockOctant-2367 u1CD57 blockOctant-2367.stypo u1CD57.stypo blockOctant-12367 u1CD58 blockOctant-12367.stypo u1CD58.stypo blockOctant-467 u1CD59 blockOctant-467.stypo u1CD59.stypo blockOctant-1467 u1CD5A blockOctant-1467.stypo u1CD5A.stypo blockOctant-2467 u1CD5B blockOctant-2467.stypo u1CD5B.stypo blockOctant-12467 u1CD5C blockOctant-12467.stypo u1CD5C.stypo blockOctant-3467 u1CD5D blockOctant-3467.stypo u1CD5D.stypo blockOctant-13467 u1CD5E blockOctant-13467.stypo u1CD5E.stypo blockOctant-23467 u1CD5F blockOctant-23467.stypo u1CD5F.stypo blockOctant-123467 u1CD60 blockOctant-123467.stypo u1CD60.stypo blockOctant-567 u1CD61 blockOctant-567.stypo u1CD61.stypo blockOctant-1567 u1CD62 blockOctant-1567.stypo u1CD62.stypo blockOctant-2567 u1CD63 blockOctant-2567.stypo u1CD63.stypo blockOctant-12567 u1CD64 blockOctant-12567.stypo u1CD64.stypo blockOctant-3567 u1CD65 blockOctant-3567.stypo u1CD65.stypo blockOctant-13567 u1CD66 blockOctant-13567.stypo u1CD66.stypo blockOctant-23567 u1CD67 blockOctant-23567.stypo u1CD67.stypo blockOctant-123567 u1CD68 blockOctant-123567.stypo u1CD68.stypo blockOctant-4567 u1CD69 blockOctant-4567.stypo u1CD69.stypo blockOctant-14567 u1CD6A blockOctant-14567.stypo u1CD6A.stypo blockOctant-24567 u1CD6B blockOctant-24567.stypo u1CD6B.stypo blockOctant-124567 u1CD6C blockOctant-124567.stypo u1CD6C.stypo blockOctant-34567 u1CD6D blockOctant-34567.stypo u1CD6D.stypo blockOctant-134567 u1CD6E blockOctant-134567.stypo u1CD6E.stypo blockOctant-234567 u1CD6F blockOctant-234567.stypo u1CD6F.stypo blockOctant-1234567 u1CD70 blockOctant-1234567.stypo u1CD70.stypo blockOctant-8 u1CEA0 blockOctant-8.stypo u1CEA0.stypo blockOctant-18 u1CD71 blockOctant-18.stypo u1CD71.stypo blockOctant-28 u1CD72 blockOctant-28.stypo u1CD72.stypo blockOctant-128 u1CD73 blockOctant-128.stypo u1CD73.stypo blockOctant-38 u1CD74 blockOctant-38.stypo u1CD74.stypo blockOctant-138 u1CD75 blockOctant-138.stypo u1CD75.stypo blockOctant-238 u1CD76 blockOctant-238.stypo u1CD76.stypo blockOctant-1238 u1CD77 blockOctant-1238.stypo u1CD77.stypo blockOctant-48 u1CD78 blockOctant-48.stypo u1CD78.stypo blockOctant-148 u1CD79 blockOctant-148.stypo u1CD79.stypo blockOctant-248 u1CD7A blockOctant-248.stypo u1CD7A.stypo blockOctant-1248 u1CD7B blockOctant-1248.stypo u1CD7B.stypo blockOctant-348 u1CD7C blockOctant-348.stypo u1CD7C.stypo blockOctant-1348 u1CD7D blockOctant-1348.stypo u1CD7D.stypo blockOctant-2348 u1CD7E blockOctant-2348.stypo u1CD7E.stypo blockOctant-12348 u1CD7F blockOctant-12348.stypo u1CD7F.stypo blockOctant-58 u1CD80 blockOctant-58.stypo u1CD80.stypo blockOctant-158 u1CD81 blockOctant-158.stypo u1CD81.stypo blockOctant-258 u1CD82 blockOctant-258.stypo u1CD82.stypo blockOctant-1258 u1CD83 blockOctant-1258.stypo u1CD83.stypo blockOctant-358 u1CD84 blockOctant-358.stypo u1CD84.stypo blockOctant-1358 u1CD85 blockOctant-1358.stypo u1CD85.stypo blockOctant-2358 u1CD86 blockOctant-2358.stypo u1CD86.stypo blockOctant-12358 u1CD87 blockOctant-12358.stypo u1CD87.stypo blockOctant-458 u1CD88 blockOctant-458.stypo u1CD88.stypo blockOctant-1458 u1CD89 blockOctant-1458.stypo u1CD89.stypo blockOctant-2458 u1CD8A blockOctant-2458.stypo u1CD8A.stypo blockOctant-12458 u1CD8B blockOctant-12458.stypo u1CD8B.stypo blockOctant-3458 u1CD8C blockOctant-3458.stypo u1CD8C.stypo blockOctant-13458 u1CD8D blockOctant-13458.stypo u1CD8D.stypo blockOctant-23458 u1CD8E blockOctant-23458.stypo u1CD8E.stypo blockOctant-123458 u1CD8F blockOctant-123458.stypo u1CD8F.stypo blockOctant-168 u1CD90 blockOctant-168.stypo u1CD90.stypo blockOctant-268 u1CD91 blockOctant-268.stypo u1CD91.stypo blockOctant-1268 u1CD92 blockOctant-1268.stypo u1CD92.stypo blockOctant-368 u1CD93 blockOctant-368.stypo u1CD93.stypo blockOctant-2368 u1CD94 blockOctant-2368.stypo u1CD94.stypo blockOctant-12368 u1CD95 blockOctant-12368.stypo u1CD95.stypo blockOctant-468 u1CD96 blockOctant-468.stypo u1CD96.stypo blockOctant-1468 u1CD97 blockOctant-1468.stypo u1CD97.stypo blockOctant-12468 u1CD98 blockOctant-12468.stypo u1CD98.stypo blockOctant-3468 u1CD99 blockOctant-3468.stypo u1CD99.stypo blockOctant-13468 u1CD9A blockOctant-13468.stypo u1CD9A.stypo blockOctant-23468 u1CD9B blockOctant-23468.stypo u1CD9B.stypo blockOctant-568 u1CD9C blockOctant-568.stypo u1CD9C.stypo blockOctant-1568 u1CD9D blockOctant-1568.stypo u1CD9D.stypo blockOctant-2568 u1CD9E blockOctant-2568.stypo u1CD9E.stypo blockOctant-12568 u1CD9F blockOctant-12568.stypo u1CD9F.stypo blockOctant-3568 u1CDA0 blockOctant-3568.stypo u1CDA0.stypo blockOctant-13568 u1CDA1 blockOctant-13568.stypo u1CDA1.stypo blockOctant-23568 u1CDA2 blockOctant-23568.stypo u1CDA2.stypo blockOctant-123568 u1CDA3 blockOctant-123568.stypo u1CDA3.stypo blockOctant-4568 u1CDA4 blockOctant-4568.stypo u1CDA4.stypo blockOctant-14568 u1CDA5 blockOctant-14568.stypo u1CDA5.stypo blockOctant-24568 u1CDA6 blockOctant-24568.stypo u1CDA6.stypo blockOctant-124568 u1CDA7 blockOctant-124568.stypo u1CDA7.stypo blockOctant-34568 u1CDA8 blockOctant-34568.stypo u1CDA8.stypo blockOctant-134568 u1CDA9 blockOctant-134568.stypo u1CDA9.stypo blockOctant-234568 u1CDAA blockOctant-234568.stypo u1CDAA.stypo blockOctant-1234568 u1CDAB blockOctant-1234568.stypo u1CDAB.stypo blockOctant-178 u1CDAC blockOctant-178.stypo u1CDAC.stypo blockOctant-278 u1CDAD blockOctant-278.stypo u1CDAD.stypo blockOctant-1278 u1CDAE blockOctant-1278.stypo u1CDAE.stypo blockOctant-378 u1CDAF blockOctant-378.stypo u1CDAF.stypo blockOctant-1378 u1CDB0 blockOctant-1378.stypo u1CDB0.stypo blockOctant-2378 u1CDB1 blockOctant-2378.stypo u1CDB1.stypo blockOctant-12378 u1CDB2 blockOctant-12378.stypo u1CDB2.stypo blockOctant-478 u1CDB3 blockOctant-478.stypo u1CDB3.stypo blockOctant-1478 u1CDB4 blockOctant-1478.stypo u1CDB4.stypo blockOctant-2478 u1CDB5 blockOctant-2478.stypo u1CDB5.stypo blockOctant-12478 u1CDB6 blockOctant-12478.stypo u1CDB6.stypo blockOctant-3478 u1CDB7 blockOctant-3478.stypo u1CDB7.stypo blockOctant-13478 u1CDB8 blockOctant-13478.stypo u1CDB8.stypo blockOctant-23478 u1CDB9 blockOctant-23478.stypo u1CDB9.stypo blockOctant-123478 u1CDBA blockOctant-123478.stypo u1CDBA.stypo blockOctant-578 u1CDBB blockOctant-578.stypo u1CDBB.stypo blockOctant-1578 u1CDBC blockOctant-1578.stypo u1CDBC.stypo blockOctant-2578 u1CDBD blockOctant-2578.stypo u1CDBD.stypo blockOctant-12578 u1CDBE blockOctant-12578.stypo u1CDBE.stypo blockOctant-3578 u1CDBF blockOctant-3578.stypo u1CDBF.stypo blockOctant-13578 u1CDC0 blockOctant-13578.stypo u1CDC0.stypo blockOctant-23578 u1CDC1 blockOctant-23578.stypo u1CDC1.stypo blockOctant-123578 u1CDC2 blockOctant-123578.stypo u1CDC2.stypo blockOctant-4578 u1CDC3 blockOctant-4578.stypo u1CDC3.stypo blockOctant-14578 u1CDC4 blockOctant-14578.stypo u1CDC4.stypo blockOctant-24578 u1CDC5 blockOctant-24578.stypo u1CDC5.stypo blockOctant-124578 u1CDC6 blockOctant-124578.stypo u1CDC6.stypo blockOctant-34578 u1CDC7 blockOctant-34578.stypo u1CDC7.stypo blockOctant-134578 u1CDC8 blockOctant-134578.stypo u1CDC8.stypo blockOctant-234578 u1CDC9 blockOctant-234578.stypo u1CDC9.stypo blockOctant-1234578 u1CDCA blockOctant-1234578.stypo u1CDCA.stypo blockOctant-678 u1CDCB blockOctant-678.stypo u1CDCB.stypo blockOctant-1678 u1CDCC blockOctant-1678.stypo u1CDCC.stypo blockOctant-2678 u1CDCD blockOctant-2678.stypo u1CDCD.stypo blockOctant-12678 u1CDCE blockOctant-12678.stypo u1CDCE.stypo blockOctant-3678 u1CDCF blockOctant-3678.stypo u1CDCF.stypo blockOctant-13678 u1CDD0 blockOctant-13678.stypo u1CDD0.stypo blockOctant-23678 u1CDD1 blockOctant-23678.stypo u1CDD1.stypo blockOctant-123678 u1CDD2 blockOctant-123678.stypo u1CDD2.stypo blockOctant-4678 u1CDD3 blockOctant-4678.stypo u1CDD3.stypo blockOctant-14678 u1CDD4 blockOctant-14678.stypo u1CDD4.stypo blockOctant-24678 u1CDD5 blockOctant-24678.stypo u1CDD5.stypo blockOctant-124678 u1CDD6 blockOctant-124678.stypo u1CDD6.stypo blockOctant-34678 u1CDD7 blockOctant-34678.stypo u1CDD7.stypo blockOctant-134678 u1CDD8 blockOctant-134678.stypo u1CDD8.stypo blockOctant-234678 u1CDD9 blockOctant-234678.stypo u1CDD9.stypo blockOctant-1234678 u1CDDA blockOctant-1234678.stypo u1CDDA.stypo blockOctant-15678 u1CDDB blockOctant-15678.stypo u1CDDB.stypo blockOctant-25678 u1CDDC blockOctant-25678.stypo u1CDDC.stypo blockOctant-125678 u1CDDD blockOctant-125678.stypo u1CDDD.stypo blockOctant-35678 u1CDDE blockOctant-35678.stypo u1CDDE.stypo blockOctant-235678 u1CDDF blockOctant-235678.stypo u1CDDF.stypo blockOctant-1235678 u1CDE0 blockOctant-1235678.stypo u1CDE0.stypo blockOctant-45678 u1CDE1 blockOctant-45678.stypo u1CDE1.stypo blockOctant-145678 u1CDE2 blockOctant-145678.stypo u1CDE2.stypo blockOctant-1245678 u1CDE3 blockOctant-1245678.stypo u1CDE3.stypo blockOctant-1345678 u1CDE4 blockOctant-1345678.stypo u1CDE4.stypo blockOctant-2345678 u1CDE5 blockOctant-2345678.stypo u1CDE5.stypo blockSedecimant-1 u1CE90 blockSedecimant-1.stypo u1CE90.stypo blockSedecimant-2 u1CE91 blockSedecimant-2.stypo u1CE91.stypo blockSedecimant-3 u1CE92 blockSedecimant-3.stypo u1CE92.stypo blockSedecimant-4 u1CE93 blockSedecimant-4.stypo u1CE93.stypo blockSedecimant-5 u1CE94 blockSedecimant-5.stypo u1CE94.stypo blockSedecimant-6 u1CE95 blockSedecimant-6.stypo u1CE95.stypo blockSedecimant-7 u1CE96 blockSedecimant-7.stypo u1CE96.stypo blockSedecimant-8 u1CE97 blockSedecimant-8.stypo u1CE97.stypo blockSedecimant-9 u1CE98 blockSedecimant-9.stypo u1CE98.stypo blockSedecimant-A u1CE99 blockSedecimant-A.stypo u1CE99.stypo blockSedecimant-B u1CE9A blockSedecimant-B.stypo u1CE9A.stypo blockSedecimant-C u1CE9B blockSedecimant-C.stypo u1CE9B.stypo blockSedecimant-D u1CE9C blockSedecimant-D.stypo u1CE9C.stypo blockSedecimant-E u1CE9D blockSedecimant-E.stypo u1CE9D.stypo blockSedecimant-F u1CE9E blockSedecimant-F.stypo u1CE9E.stypo blockSedecimant-G u1CE9F blockSedecimant-G.stypo u1CE9F.stypo blockSedecimant-EFG u1CEA1 blockSedecimant-EFG.stypo u1CEA1.stypo blockSedecimant-DEF u1CEA2 blockSedecimant-DEF.stypo u1CEA2.stypo blockSedecimant-9D u1CEA4 blockSedecimant-9D.stypo u1CEA4.stypo blockSedecimant-59D u1CEA5 blockSedecimant-59D.stypo u1CEA5.stypo blockSedecimant-159 u1CEA6 blockSedecimant-159.stypo u1CEA6.stypo blockSedecimant-15 u1CEA7 blockSedecimant-15.stypo u1CEA7.stypo blockSedecimant-123 u1CEA9 blockSedecimant-123.stypo u1CEA9.stypo blockSedecimant-234 u1CEAA blockSedecimant-234.stypo u1CEAA.stypo blockSedecimant-48 u1CEAC blockSedecimant-48.stypo u1CEAC.stypo blockSedecimant-48C u1CEAD blockSedecimant-48C.stypo u1CEAD.stypo blockSedecimant-8CG u1CEAE blockSedecimant-8CG.stypo u1CEAE.stypo blockSedecimant-CG u1CEAF blockSedecimant-CG.stypo u1CEAF.stypo verticalOneEighthBlock-2 u1FB70 verticalOneEighthBlock-2.stypo u1FB70.stypo verticalOneEighthBlock-3 u1FB71 verticalOneEighthBlock-3.stypo u1FB71.stypo verticalOneEighthBlock-4 u1FB72 verticalOneEighthBlock-4.stypo u1FB72.stypo verticalOneEighthBlock-5 u1FB73 verticalOneEighthBlock-5.stypo u1FB73.stypo verticalOneEighthBlock-6 u1FB74 verticalOneEighthBlock-6.stypo u1FB74.stypo verticalOneEighthBlock-7 u1FB75 verticalOneEighthBlock-7.stypo u1FB75.stypo horizontalOneEightBlock-2 u1FB76 horizontalOneEightBlock-2.stypo u1FB76.stypo horizontalOneEightBlock-3 u1FB77 horizontalOneEightBlock-3.stypo u1FB77.stypo horizontalOneEightBlock-4 u1FB78 horizontalOneEightBlock-4.stypo u1FB78.stypo horizontalOneEightBlock-5 u1FB79 horizontalOneEightBlock-5.stypo u1FB79.stypo horizontalOneEightBlock-6 u1FB7A horizontalOneEightBlock-6.stypo u1FB7A.stypo horizontalOneEightBlock-7 u1FB7B horizontalOneEightBlock-7.stypo u1FB7B.stypo leftAndLowerOneEightBlock u1FB7C leftAndLowerOneEightBlock.stypo u1FB7C.stypo leftAndUpperOneEightBlock u1FB7D leftAndUpperOneEightBlock.stypo u1FB7D.stypo rightAndUpperOneEightBlock u1FB7E rightAndUpperOneEightBlock.stypo u1FB7E.stypo rightAndLowerOneEightBlock u1FB7F rightAndLowerOneEightBlock.stypo u1FB7F.stypo upperAndLowerOneEightBlock u1FB80 upperAndLowerOneEightBlock.stypo u1FB80.stypo upperThreeEighthsBlock u1FB83 upperThreeEighthsBlock.stypo u1FB83.stypo upperFiveEighthsBlock u1FB84 upperFiveEighthsBlock.stypo u1FB84.stypo upperSevenEighthsBlock u1FB86 upperSevenEighthsBlock.stypo u1FB86.stypo rightOneQuarterBlock u1FB87 rightOneQuarterBlock.stypo u1FB87.stypo rightThreeEighthsBlock u1FB88 rightThreeEighthsBlock.stypo u1FB88.stypo rightFiveEighthsBlock u1FB89 rightFiveEighthsBlock.stypo u1FB89.stypo rightThreeQuartersBlock u1FB8A rightThreeQuartersBlock.stypo u1FB8A.stypo rightSevenEighthsBlock u1FB8B rightSevenEighthsBlock.stypo u1FB8B.stypo leftTwoThirdsBlock u1FBCE leftTwoThirdsBlock.stypo u1FBCE.stypo leftOneThirdBlock u1FBCF leftOneThirdBlock.stypo u1FBCF.stypo heavyHorizontalFill u1FB97 heavyHorizontalFill.stypo u1FB97.stypo blockSeparatedQuadrant-1 u1CC21 blockSeparatedQuadrant-1.stypo u1CC21.stypo blockSeparatedQuadrant-2 u1CC22 blockSeparatedQuadrant-2.stypo u1CC22.stypo blockSeparatedQuadrant-12 u1CC23 blockSeparatedQuadrant-12.stypo u1CC23.stypo blockSeparatedQuadrant-3 u1CC24 blockSeparatedQuadrant-3.stypo u1CC24.stypo blockSeparatedQuadrant-13 u1CC25 blockSeparatedQuadrant-13.stypo u1CC25.stypo blockSeparatedQuadrant-23 u1CC26 blockSeparatedQuadrant-23.stypo u1CC26.stypo blockSeparatedQuadrant-123 u1CC27 blockSeparatedQuadrant-123.stypo u1CC27.stypo blockSeparatedQuadrant-4 u1CC28 blockSeparatedQuadrant-4.stypo u1CC28.stypo blockSeparatedQuadrant-14 u1CC29 blockSeparatedQuadrant-14.stypo u1CC29.stypo blockSeparatedQuadrant-24 u1CC2A blockSeparatedQuadrant-24.stypo u1CC2A.stypo blockSeparatedQuadrant-124 u1CC2B blockSeparatedQuadrant-124.stypo u1CC2B.stypo blockSeparatedQuadrant-34 u1CC2C blockSeparatedQuadrant-34.stypo u1CC2C.stypo blockSeparatedQuadrant-134 u1CC2D blockSeparatedQuadrant-134.stypo u1CC2D.stypo blockSeparatedQuadrant-234 u1CC2E blockSeparatedQuadrant-234.stypo u1CC2E.stypo blockSeparatedQuadrant-1234 u1CC2F blockSeparatedQuadrant-1234.stypo u1CC2F.stypo blockSeparatedSextant-1 u1CE51 blockSeparatedSextant-1.stypo u1CE51.stypo blockSeparatedSextant-2 u1CE52 blockSeparatedSextant-2.stypo u1CE52.stypo blockSeparatedSextant-12 u1CE53 blockSeparatedSextant-12.stypo u1CE53.stypo blockSeparatedSextant-3 u1CE54 blockSeparatedSextant-3.stypo u1CE54.stypo blockSeparatedSextant-13 u1CE55 blockSeparatedSextant-13.stypo u1CE55.stypo blockSeparatedSextant-23 u1CE56 blockSeparatedSextant-23.stypo u1CE56.stypo blockSeparatedSextant-123 u1CE57 blockSeparatedSextant-123.stypo u1CE57.stypo blockSeparatedSextant-4 u1CE58 blockSeparatedSextant-4.stypo u1CE58.stypo blockSeparatedSextant-14 u1CE59 blockSeparatedSextant-14.stypo u1CE59.stypo blockSeparatedSextant-24 u1CE5A blockSeparatedSextant-24.stypo u1CE5A.stypo blockSeparatedSextant-124 u1CE5B blockSeparatedSextant-124.stypo u1CE5B.stypo blockSeparatedSextant-34 u1CE5C blockSeparatedSextant-34.stypo u1CE5C.stypo blockSeparatedSextant-134 u1CE5D blockSeparatedSextant-134.stypo u1CE5D.stypo blockSeparatedSextant-234 u1CE5E blockSeparatedSextant-234.stypo u1CE5E.stypo blockSeparatedSextant-1234 u1CE5F blockSeparatedSextant-1234.stypo u1CE5F.stypo blockSeparatedSextant-5 u1CE60 blockSeparatedSextant-5.stypo u1CE60.stypo blockSeparatedSextant-15 u1CE61 blockSeparatedSextant-15.stypo u1CE61.stypo blockSeparatedSextant-25 u1CE62 blockSeparatedSextant-25.stypo u1CE62.stypo blockSeparatedSextant-125 u1CE63 blockSeparatedSextant-125.stypo u1CE63.stypo blockSeparatedSextant-35 u1CE64 blockSeparatedSextant-35.stypo u1CE64.stypo blockSeparatedSextant-135 u1CE65 blockSeparatedSextant-135.stypo u1CE65.stypo blockSeparatedSextant-235 u1CE66 blockSeparatedSextant-235.stypo u1CE66.stypo blockSeparatedSextant-1235 u1CE67 blockSeparatedSextant-1235.stypo u1CE67.stypo blockSeparatedSextant-45 u1CE68 blockSeparatedSextant-45.stypo u1CE68.stypo blockSeparatedSextant-145 u1CE69 blockSeparatedSextant-145.stypo u1CE69.stypo blockSeparatedSextant-245 u1CE6A blockSeparatedSextant-245.stypo u1CE6A.stypo blockSeparatedSextant-1245 u1CE6B blockSeparatedSextant-1245.stypo u1CE6B.stypo blockSeparatedSextant-345 u1CE6C blockSeparatedSextant-345.stypo u1CE6C.stypo blockSeparatedSextant-1345 u1CE6D blockSeparatedSextant-1345.stypo u1CE6D.stypo blockSeparatedSextant-2345 u1CE6E blockSeparatedSextant-2345.stypo u1CE6E.stypo blockSeparatedSextant-12345 u1CE6F blockSeparatedSextant-12345.stypo u1CE6F.stypo blockSeparatedSextant-6 u1CE70 blockSeparatedSextant-6.stypo u1CE70.stypo blockSeparatedSextant-16 u1CE71 blockSeparatedSextant-16.stypo u1CE71.stypo blockSeparatedSextant-26 u1CE72 blockSeparatedSextant-26.stypo u1CE72.stypo blockSeparatedSextant-126 u1CE73 blockSeparatedSextant-126.stypo u1CE73.stypo blockSeparatedSextant-36 u1CE74 blockSeparatedSextant-36.stypo u1CE74.stypo blockSeparatedSextant-136 u1CE75 blockSeparatedSextant-136.stypo u1CE75.stypo blockSeparatedSextant-236 u1CE76 blockSeparatedSextant-236.stypo u1CE76.stypo blockSeparatedSextant-1236 u1CE77 blockSeparatedSextant-1236.stypo u1CE77.stypo blockSeparatedSextant-46 u1CE78 blockSeparatedSextant-46.stypo u1CE78.stypo blockSeparatedSextant-146 u1CE79 blockSeparatedSextant-146.stypo u1CE79.stypo blockSeparatedSextant-246 u1CE7A blockSeparatedSextant-246.stypo u1CE7A.stypo blockSeparatedSextant-1246 u1CE7B blockSeparatedSextant-1246.stypo u1CE7B.stypo blockSeparatedSextant-346 u1CE7C blockSeparatedSextant-346.stypo u1CE7C.stypo blockSeparatedSextant-1346 u1CE7D blockSeparatedSextant-1346.stypo u1CE7D.stypo blockSeparatedSextant-2346 u1CE7E blockSeparatedSextant-2346.stypo u1CE7E.stypo blockSeparatedSextant-12346 u1CE7F blockSeparatedSextant-12346.stypo u1CE7F.stypo blockSeparatedSextant-56 u1CE80 blockSeparatedSextant-56.stypo u1CE80.stypo blockSeparatedSextant-156 u1CE81 blockSeparatedSextant-156.stypo u1CE81.stypo blockSeparatedSextant-256 u1CE82 blockSeparatedSextant-256.stypo u1CE82.stypo blockSeparatedSextant-1256 u1CE83 blockSeparatedSextant-1256.stypo u1CE83.stypo blockSeparatedSextant-356 u1CE84 blockSeparatedSextant-356.stypo u1CE84.stypo blockSeparatedSextant-1356 u1CE85 blockSeparatedSextant-1356.stypo u1CE85.stypo blockSeparatedSextant-2356 u1CE86 blockSeparatedSextant-2356.stypo u1CE86.stypo blockSeparatedSextant-12356 u1CE87 blockSeparatedSextant-12356.stypo u1CE87.stypo blockSeparatedSextant-456 u1CE88 blockSeparatedSextant-456.stypo u1CE88.stypo blockSeparatedSextant-1456 u1CE89 blockSeparatedSextant-1456.stypo u1CE89.stypo blockSeparatedSextant-2456 u1CE8A blockSeparatedSextant-2456.stypo u1CE8A.stypo blockSeparatedSextant-12456 u1CE8B blockSeparatedSextant-12456.stypo u1CE8B.stypo blockSeparatedSextant-3456 u1CE8C blockSeparatedSextant-3456.stypo u1CE8C.stypo blockSeparatedSextant-13456 u1CE8D blockSeparatedSextant-13456.stypo u1CE8D.stypo blockSeparatedSextant-23456 u1CE8E blockSeparatedSextant-23456.stypo u1CE8E.stypo blockSeparatedSextant-123456 u1CE8F blockSeparatedSextant-123456.stypo u1CE8F.stypo segmentedDigit0 u1FBF0 segmentedDigit1 u1FBF1 segmentedDigit2 u1FBF2 segmentedDigit3 u1FBF3 segmentedDigit4 u1FBF4 segmentedDigit5 u1FBF5 segmentedDigit6 u1FBF6 segmentedDigit7 u1FBF7 segmentedDigit8 u1FBF8 segmentedDigit9 u1FBF9 largeType-1CE1A u1CE1A largeType-1CE1A.stypo u1CE1A.stypo largeType-1CE1B u1CE1B largeType-1CE1B.stypo u1CE1B.stypo largeType-1CE1C u1CE1C largeType-1CE1C.stypo u1CE1C.stypo largeType-1CE1D u1CE1D largeType-1CE1D.stypo u1CE1D.stypo largeType-1CE1E u1CE1E largeType-1CE1E.stypo u1CE1E.stypo largeType-1CE1F u1CE1F largeType-1CE1F.stypo u1CE1F.stypo largeType-1CE20 u1CE20 largeType-1CE20.stypo u1CE20.stypo largeType-1CE21 u1CE21 largeType-1CE21.stypo u1CE21.stypo largeType-1CE22 u1CE22 largeType-1CE22.stypo u1CE22.stypo largeType-1CE23 u1CE23 largeType-1CE23.stypo u1CE23.stypo largeType-1CE24 u1CE24 largeType-1CE24.stypo u1CE24.stypo largeType-1CE25 u1CE25 largeType-1CE25.stypo u1CE25.stypo largeType-1CE26 u1CE26 largeType-1CE26.stypo u1CE26.stypo largeType-1CE27 u1CE27 largeType-1CE27.stypo u1CE27.stypo largeType-1CE28 u1CE28 largeType-1CE28.stypo u1CE28.stypo largeType-1CE29 u1CE29 largeType-1CE29.stypo u1CE29.stypo largeType-1CE2A u1CE2A largeType-1CE2A.stypo u1CE2A.stypo largeType-1CE2B u1CE2B largeType-1CE2B.stypo u1CE2B.stypo largeType-1CE2C u1CE2C largeType-1CE2C.stypo u1CE2C.stypo largeType-1CE2D u1CE2D largeType-1CE2D.stypo u1CE2D.stypo largeType-1CE2E u1CE2E largeType-1CE2E.stypo u1CE2E.stypo largeType-1CE2F u1CE2F largeType-1CE2F.stypo u1CE2F.stypo largeType-1CE30 u1CE30 largeType-1CE30.stypo u1CE30.stypo largeType-1CE31 u1CE31 largeType-1CE31.stypo u1CE31.stypo largeType-1CE32 u1CE32 largeType-1CE32.stypo u1CE32.stypo largeType-1CE33 u1CE33 largeType-1CE33.stypo u1CE33.stypo largeType-1CE34 u1CE34 largeType-1CE34.stypo u1CE34.stypo largeType-1CE35 u1CE35 largeType-1CE35.stypo u1CE35.stypo largeType-1CE36 u1CE36 largeType-1CE36.stypo u1CE36.stypo largeType-1CE37 u1CE37 largeType-1CE37.stypo u1CE37.stypo largeType-1CE38 u1CE38 largeType-1CE38.stypo u1CE38.stypo largeType-1CE39 u1CE39 largeType-1CE39.stypo u1CE39.stypo largeType-1CE3A u1CE3A largeType-1CE3A.stypo u1CE3A.stypo largeType-1CE3B u1CE3B largeType-1CE3B.stypo u1CE3B.stypo largeType-1CE3C u1CE3C largeType-1CE3C.stypo u1CE3C.stypo largeType-1CE3D u1CE3D largeType-1CE3D.stypo u1CE3D.stypo largeType-1CE3E u1CE3E largeType-1CE3E.stypo u1CE3E.stypo largeType-1CE3F u1CE3F largeType-1CE3F.stypo u1CE3F.stypo largeType-1CE40 u1CE40 largeType-1CE40.stypo u1CE40.stypo largeType-1CE41 u1CE41 largeType-1CE41.stypo u1CE41.stypo largeType-1CE42 u1CE42 largeType-1CE42.stypo u1CE42.stypo largeType-1CE43 u1CE43 largeType-1CE43.stypo u1CE43.stypo largeType-1CE44 u1CE44 largeType-1CE44.stypo u1CE44.stypo largeType-1CE45 u1CE45 largeType-1CE45.stypo u1CE45.stypo largeType-1CE46 u1CE46 largeType-1CE46.stypo u1CE46.stypo largeType-1CE47 u1CE47 largeType-1CE47.stypo u1CE47.stypo largeType-1CE48 u1CE48 largeType-1CE48.stypo u1CE48.stypo largeType-1CE49 u1CE49 largeType-1CE49.stypo u1CE49.stypo largeType-1CE4A u1CE4A largeType-1CE4A.stypo u1CE4A.stypo largeType-1CE4B u1CE4B largeType-1CE4B.stypo u1CE4B.stypo largeType-1CE4C u1CE4C largeType-1CE4C.stypo u1CE4C.stypo largeType-1CE4D u1CE4D largeType-1CE4D.stypo u1CE4D.stypo largeType-1CE4E u1CE4E largeType-1CE4E.stypo u1CE4E.stypo largeType-1CE4F u1CE4F largeType-1CE4F.stypo u1CE4F.stypo largeType-1CE50 u1CE50 largeType-1CE50.stypo u1CE50.stypo public.skipExportGlyphs A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half four.half one.half three.half two.half ================================================ FILE: sources/CascadiaCode-Bold.ufo/metainfo.plist ================================================ creator com.github.fonttools.ufoLib formatVersion 3 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/features.fea ================================================ # automatic @Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ]; # Prefix: Languagesystems # automatic languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn PLK; languagesystem latn CAT; languagesystem latn NLD; languagesystem cyrl dflt; languagesystem cyrl BGR; languagesystem cyrl SRB; feature aalt { # automatic feature calt; feature salt; feature locl; feature subs; feature sinf; feature sups; feature numr; feature dnom; feature frac; feature ordn; feature case; feature zero; feature ss20; } aalt; feature calt { sub [B C D E F G H I J K M N O P Q R S T U V W X Y Z seven f Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy Ef-cy.loclBGR] [b h k shha-cy zhe-cy.loclBGR ka-cy.loclBGR]' by [b.alt h.alt k.alt shha-cy.alt zhe-cy.loclBGR.alt ka-cy.loclBGR.alt]; } calt; feature ss01 { sub f by f.salt; sub l by l.salt; sub lacute by lacute.salt; sub lbar by lbar.salt; sub lbelt by lbelt.salt; sub lcaron by lcaron.salt; sub lcommaaccent by lcommaaccent.salt; sub ldot by ldot.salt; sub ldotbelow by ldotbelow.salt; sub llinebelow by llinebelow.salt; sub lmiddletilde by lmiddletilde.salt; sub lslash by lslash.salt; sub r by r.salt; sub racute by racute.salt; sub rcaron by rcaron.salt; sub rcommaaccent by rcommaaccent.salt; sub rdotbelow by rdotbelow.salt; sub s by s.salt; sub sacute by sacute.salt; sub scaron by scaron.salt; sub scedilla by scedilla.salt; sub scircumflex by scircumflex.salt; sub scommaaccent by scommaaccent.salt; sub sdotbelow by sdotbelow.salt; } ss01; feature ccmp { # automatic lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb]; sub [i j]' @CombiningTopAccents by [idotless jdotless]; sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; } ccmp; feature locl { # automatic lookup locl_latn_0 { script latn; language ROM; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language PLK; sub Cacute by Cacute.loclPLK; sub Nacute by Nacute.loclPLK; sub Oacute by Oacute.loclPLK; sub Sacute by Sacute.loclPLK; sub Zacute by Zacute.loclPLK; sub cacute by cacute.loclPLK; sub nacute by nacute.loclPLK; sub oacute by oacute.loclPLK; sub sacute by sacute.loclPLK; sub zacute by zacute.loclPLK; sub acutecomb by acutecomb.loclPLK; } locl_latn_1; lookup locl_latn_2 { script latn; language CAT; sub l' periodcentered' l by ldot; sub L' periodcentered' L by Ldot; } locl_latn_2; lookup locl_latn_3 { script latn; language NLD; sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_3; lookup locl_cyrl_0 { script cyrl; language BGR; sub De-cy by De-cy.loclBGR; sub El-cy by El-cy.loclBGR; sub Ef-cy by Ef-cy.loclBGR; sub de-cy by de-cy.loclBGR; sub zhe-cy by zhe-cy.loclBGR; sub ze-cy by ze-cy.loclBGR; sub ka-cy by ka-cy.loclBGR; sub iu-cy by iu-cy.loclBGR; } locl_cyrl_0; lookup locl_cyrl_1 { script cyrl; language SRB; sub be-cy by be-cy.loclSRB; sub ge-cy by ge-cy.loclSRB; sub pe-cy by pe-cy.loclSRB; sub te-cy by te-cy.loclSRB; } locl_cyrl_1; } locl; feature subs { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } subs; feature sinf { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } sinf; feature sups { # automatic sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; } sups; feature numr { # automatic sub zero by zero.numr; sub one by one.numr; sub two by two.numr; sub three by three.numr; sub four by four.numr; sub five by five.numr; sub six by six.numr; sub seven by seven.numr; sub eight by eight.numr; sub nine by nine.numr; } numr; feature dnom { # automatic sub zero by zero.dnom; sub one by one.dnom; sub two by two.dnom; sub three by three.dnom; sub four by four.dnom; sub five by five.dnom; sub six by six.dnom; sub seven by seven.dnom; sub eight by eight.dnom; sub nine by nine.dnom; } dnom; feature frac { # automatic lookup FRAC { sub slash by fraction; } FRAC; lookup UP { sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; } UP; lookup DOWN { sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; } DOWN; } frac; feature ordn { # automatic sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; } ordn; feature case { # automatic sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub horncomb by horncomb.case; sub tonos by tonos.case; sub brevecomb-cy by brevecomb-cy.case; } case; feature liga { # automatic # disabled #lookupflag IgnoreMarks; #sub bar bar bar greater by bar_bar_bar_greater.liga; #sub less bar bar bar by less_bar_bar_bar.liga; #sub less exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga; #sub asciitilde asciitilde greater by asciitilde_asciitilde_greater.liga; #sub asterisk asterisk asterisk by asterisk_asterisk_asterisk.liga; #sub bar bar bar by bar_bar_bar.liga; #sub bar bar greater by bar_bar_greater.liga; #sub colon colon colon by colon_colon_colon.liga; #sub colon colon equal by colon_colon_equal.liga; #sub colon slash slash by colon_slash_slash.liga; #sub equal equal equal by equal_equal_equal.liga; #sub equal greater greater by equal_greater_greater.liga; #sub equal less less by equal_less_less.liga; #sub exclam equal equal by exclam_equal_equal.liga; #sub exclam exclam period by exclam_exclam_period.liga; #sub greater greater equal by greater_greater_equal.liga; #sub greater greater greater by greater_greater_greater.liga; #sub hyphen hyphen hyphen by hyphen_hyphen_hyphen.liga; #sub less asciitilde asciitilde by less_asciitilde_asciitilde.liga; #sub less asciitilde greater by less_asciitilde_greater.liga; #sub less asterisk greater by less_asterisk_greater.liga; #sub less bar bar by less_bar_bar.liga; #sub less bar greater by less_bar_greater.liga; #sub less dollar greater by less_dollar_greater.liga; #sub less less equal by less_less_equal.liga; #sub less less less by less_less_less.liga; #sub less plus greater by less_plus_greater.liga; #sub less slash greater by less_slash_greater.liga; #sub numbersign underscore parenleft by numbersign_underscore_parenleft.liga; #sub period period equal by period_period_equal.liga; #sub period period less by period_period_less.liga; #sub period period period by period_period_period.liga; #sub plus plus plus by plus_plus_plus.liga; #sub question question equal by question_question_equal.liga; #sub slash slash slash by slash_slash_slash.liga; #sub w w w by w_w_w.liga; #sub ampersand ampersand by ampersand_ampersand.liga; #sub asciicircum equal by asciicircum_equal.liga; #sub asciitilde asciitilde by asciitilde_asciitilde.liga; #sub asciitilde at by asciitilde_at.liga; #sub asciitilde equal by asciitilde_equal.liga; #sub asciitilde greater by asciitilde_greater.liga; #sub asciitilde hyphen by asciitilde_hyphen.liga; #sub asterisk asterisk by asterisk_asterisk.liga; #sub asterisk greater by asterisk_greater.liga; #sub asterisk parenright by asterisk_parenright.liga; #sub asterisk slash by asterisk_slash.liga; #sub backslash backslash by backslash_backslash.liga; #sub backslash slash by backslash_slash.liga; #sub bar bar by bar_bar.liga; #sub bar braceright by bar_braceright.liga; #sub bar bracketright by bar_bracketright.liga; #sub bar greater by bar_greater.liga; #sub braceleft bar by braceleft_bar.liga; #sub braceright numbersign by braceright_numbersign.liga; #sub bracketleft bar by bracketleft_bar.liga; #sub bracketright numbersign by bracketright_numbersign.liga; #sub colon colon by colon_colon.liga; #sub colon equal by colon_equal.liga; #sub dollar greater by dollar_greater.liga; #sub equal equal by equal_equal.liga; #sub exclam colon by exclam_colon.liga; #sub exclam equal by exclam_equal.liga; #sub exclam exclam by exclam_exclam.liga; #sub exclam period by exclam_period.liga; #sub greater equal by greater_equal.liga; #sub greater greater by greater_greater.liga; #sub hyphen asciitilde by hyphen_asciitilde.liga; #sub hyphen hyphen by hyphen_hyphen.liga; #sub less asciitilde by less_asciitilde.liga; #sub less asterisk by less_asterisk.liga; #sub less bar by less_bar.liga; #sub less dollar by less_dollar.liga; #sub less equal by less_equal.liga; #sub less greater by less_greater.liga; #sub less less by less_less.liga; #sub less plus by less_plus.liga; #sub less slash by less_slash.liga; #sub numbersign braceleft by numbersign_braceleft.liga; #sub numbersign bracketleft by numbersign_bracketleft.liga; #sub numbersign colon by numbersign_colon.liga; #sub numbersign equal by numbersign_equal.liga; #sub numbersign exclam by numbersign_exclam.liga; #sub numbersign parenleft by numbersign_parenleft.liga; #sub numbersign question by numbersign_question.liga; #sub numbersign underscore by numbersign_underscore.liga; #sub parenleft asterisk by parenleft_asterisk.liga; #sub percent percent by percent_percent.liga; #sub period equal by period_equal.liga; #sub period hyphen by period_hyphen.liga; #sub period period by period_period.liga; #sub period question by period_question.liga; #sub plus greater by plus_greater.liga; #sub plus plus by plus_plus.liga; #sub question colon by question_colon.liga; #sub question equal by question_equal.liga; #sub question period by question_period.liga; #sub question question by question_question.liga; #sub semicolon semicolon by semicolon_semicolon.liga; #sub slash asterisk by slash_asterisk.liga; #sub slash backslash by slash_backslash.liga; #sub slash greater by slash_greater.liga; #sub slash slash by slash_slash.liga; #sub underscore underscore by underscore_underscore.liga; #sub f i by fi; #sub f l by fl; } liga; feature zero { # automatic sub zero by zero.zero; } zero; feature ss20 { # automatic sub acknowledgeControl by acknowledgeControl.ss20; sub backspaceControl by backspaceControl.ss20; sub bellControl by bellControl.ss20; sub cancelControl by cancelControl.ss20; sub carriageReturnControl by carriageReturnControl.ss20; sub dataLinkEscapeControl by dataLinkEscapeControl.ss20; sub endOfMediumControl by endOfMediumControl.ss20; sub endOfTextControl by endOfTextControl.ss20; sub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20; sub endOfTransmissionControl by endOfTransmissionControl.ss20; sub enquiryControl by enquiryControl.ss20; sub escapeControl by escapeControl.ss20; sub formFeedControl by formFeedControl.ss20; sub horizontalTabulationControl by horizontalTabulationControl.ss20; sub lineFeedControl by lineFeedControl.ss20; sub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20; sub shiftInControl by shiftInControl.ss20; sub shiftOutControl by shiftOutControl.ss20; sub startOfHeadingControl by startOfHeadingControl.ss20; sub startOfTextControl by startOfTextControl.ss20; sub substituteControl by substituteControl.ss20; sub synchronousIdleControl by synchronousIdleControl.ss20; sub verticalTabulationControl by verticalTabulationControl.ss20; } ss20; ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/fontinfo.plist ================================================ ascender 1568 capHeight 1420 copyright © 2021 Microsoft Corporation. All Rights Reserved. descender -480 familyName Cascadia Code guidelines angle 0 name [locked] x 1100 y 1080 angle 0 name [locked] x 886 y -20 angle 0 name [locked] x 1052 y 1500 angle 0 name [locked] x 1276 y 1440 angle 0 name [locked] x 440 y -460 angle 90 name [locked] x 2160 y 332 angle 90 name [locked] x 2120 y 342 angle 90 name [locked] x 2004 y 52 angle 90 name [locked] x 3360 y 466 angle 90 name [locked] x 3320 y 306 angle 90 name [locked] x 3208 y 146 angle 0 x 867 y 1808 angle 80 x 852 y 1162 angle 80 x 2982 y 366 angle 0 x 1114 y 552 angle 0 x 888 y 819 angle 0 x 1071 y 353 angle 80 x 2419 y 366 angle 80 x 3291 y 366 angle 80 name [locked] x 751 y 1390 angle 80 x 299 y 122 angle 80 x 103 y 791 angle 80 x 1038 y 787 angle 80 x 552 y 24 angle 80 x 1077 y 1637 italicAngle -10 openTypeHeadCreated 2019/04/07 17:18:29 openTypeNameDesigner Aaron Bell openTypeNameDesignerURL http://sajatypeworks.com openTypeNameLicense Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited. The following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE). 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. 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. openTypeNameLicenseURL https://scripts.sil.org/OFL openTypeNameManufacturer Saja Typeworks openTypeNameManufacturerURL http://sajatypeworks.com openTypeOS2Panose 2 11 6 9 2 0 0 2 0 4 openTypeOS2Selection 7 openTypeOS2Type openTypeOS2VendorID SAJA postscriptBlueValues -20 0 1060 1080 1420 1440 1500 1520 postscriptIsFixedPitch postscriptOtherBlues -480 -460 postscriptStemSnapH 200 210 212 220 postscriptStemSnapV 190 180 postscriptUnderlinePosition -100 postscriptUnderlineThickness 100 styleName Bold Italic trademark Cascadia Code is a trademark of the Microsoft group of companies. unitsPerEm 2048 versionMajor 4 versionMinor 300 xHeight 1060 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_breveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_brevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_lphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_ringacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/A_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/B_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/B_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/B_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_hedescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Che-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/C_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_african.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_croat.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_e-cy.glif ================================================ uni0414 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_elta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_ze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/D_zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_f-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_l-cy.glif ================================================ uni041B public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_m-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_n-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ndescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name En-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ng.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_r-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_reversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_reversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_s-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_sh.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_ta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_tatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_th.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/E_zh.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/F_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/F_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/F_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_amma.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_ammaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_ermandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_hestroke-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_heupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/G_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_adescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name X ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_ardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/H_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_J__acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name acutecomb.case alignment -1 index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_egrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_igrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_ota.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_otatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/I_u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/J_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/J_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/J_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_a-cy.glif ================================================ public.markColor 0.65,0.48,0.2,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_adescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Ka-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_aiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_appa.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/K_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_I_G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_ambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_dot.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_middletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/L_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/M_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/M_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/M_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_hookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/N_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_barred-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hm.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_macrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_mega.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_megatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_micron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_microntonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_slashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/O_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_alochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/P_si.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Q_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Q_.half.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O.half ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/R_ho.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_chwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_chwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_hcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_hha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_igma.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/S_oftsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_au.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_diagonalstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_heta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_se-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/T_she-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilonafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_short-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_straight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name Y ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/U_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/V_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/V_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/V_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/V_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/V_turned.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/W_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/W_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/W_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/W_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/W_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/X_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/X_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/X_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_eru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Y_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/_notdef.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/a.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/aacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abreveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/abrevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name A.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/acutetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/adieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/adotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ae.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/aeacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/agrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ahookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/alpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/alpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/alphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/amacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/anoteleia.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/aogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/apostrophemod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/approxequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/aring.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/aringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciicircum.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciicircum_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_at.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_parenright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/asterisk_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/at.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/atilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/b.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/b.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/backslash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/backspaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/baht.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_braceright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_bracketright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/be-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bellC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/beta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bitcoin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackC_ircle.glif ================================================ H18533 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackD_iamond.glif ================================================ uni25C6 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackH_exagon.glif ================================================ uni2B22 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ uni2B2C ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ uni25C8 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackL_argeC_ircle.glif ================================================ uni2B24 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackL_argeS_quare.glif ================================================ uni2B1B ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ uni2B25 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ uni2BC6 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ uni2BC7 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ uni2B27 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ uni2BC8 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ uni2BC5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackP_arallelogram.glif ================================================ uni25B0 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackP_entagon.glif ================================================ uni2B1F ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallD_iamond.glif ================================================ uni2B29 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ uni2B2A ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_mallS_quare.glif ================================================ H18543 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackS_quare.glif ================================================ filledbox ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ uni2B2E ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erticalR_ect.glif ================================================ uni25AE ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ uni2B1D ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blank-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blank.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blankS_ymbol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12347.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12348.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12357.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12358.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12367.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12368.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1237.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12378.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1238.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1247.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1248.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1257.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1258.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1267.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1268.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-127.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1278.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-128.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1347.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1348.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1358.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1367.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-137.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1378.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-138.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-147.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-148.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-157.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-158.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-167.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-168.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-17.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-178.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-18.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2347.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2348.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2357.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2358.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2367.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2368.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-237.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2378.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-238.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-247.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-248.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-257.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-258.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-267.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-268.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-27.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-278.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-28.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-347.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-348.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-35678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-357.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-358.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-367.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-368.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-37.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-378.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-38.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-457.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-458.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-467.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-468.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-47.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-478.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-567.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-568.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-578.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-58.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-67.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-678.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-159.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-59D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-G.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ uni2BCB ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ uni2B19 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/braceleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb-cy.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/brevecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/brokenbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bulletoperator.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/bullseye.glif ================================================ uni25CE com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name largeCircle alignment -1 index 1 name whiteBullet ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/c.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cancelC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name N.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/careof.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/caroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/caroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name R.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ccaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ccedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ccircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cedi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cedillacomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/cent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/che-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/che-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/checkmark.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/chedescender-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/chedescender-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/chi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflexcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/circumflexcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/clubB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colon_slash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colonsign.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/colontriangularmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/comma.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/commaabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/commaaboverightcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/commaaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/commaturnedabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/commaturnedmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/contents.plist ================================================ .notdef _notdef.glif A A_.glif A-cy A_-cy.glif A.half A_.half.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehookabove A_brevehookabove.glif Abrevetilde A_brevetilde.glif Acaron A_caron.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhookabove A_circumflexhookabove.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahookabove A_hookabove.glif Alpha A_lpha.glif Alpha-latin A_lpha-latin.glif Alphatonos A_lphatonos.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Asmall A_small.glif Astroke A_stroke.glif Atilde A_tilde.glif B B_.glif B.half B_.half.glif Be-cy B_e-cy.glif Beta B_eta.glif C C_.glif C.half C_.half.glif CR C_R_.glif Cacute C_acute.glif Cacute.loclPLK C_acute.loclP_L_K_.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif Che-cy C_he-cy.glif Chedescender-cy C_hedescender-cy.glif Chi C_hi.glif Cstroke C_stroke.glif D D_.glif D.half D_.half.glif Dafrican D_african.glif Dcaron D_caron.glif Dcroat D_croat.glif De-cy D_e-cy.glif De-cy.loclBGR D_e-cy.loclB_G_R_.glif Delta D_elta.glif Dje-cy D_je-cy.glif Dze-cy D_ze-cy.glif Dzhe-cy D_zhe-cy.glif E E_.glif E-cy E_-cy.glif E.half E_.half.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhookabove E_circumflexhookabove.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Ef-cy E_f-cy.glif Ef-cy.loclBGR E_f-cy.loclB_G_R_.glif Egrave E_grave.glif Ehookabove E_hookabove.glif El-cy E_l-cy.glif El-cy.loclBGR E_l-cy.loclB_G_R_.glif Em-cy E_m-cy.glif Emacron E_macron.glif En-cy E_n-cy.glif Endescender-cy E_ndescender-cy.glif Eng E_ng.glif Eogonek E_ogonek.glif Eopen E_open.glif Epsilon E_psilon.glif Epsilontonos E_psilontonos.glif Er-cy E_r-cy.glif Ereversed E_reversed.glif Ereversed-cy E_reversed-cy.glif Es-cy E_s-cy.glif Esh E_sh.glif Eta E_ta.glif Etatonos E_tatonos.glif Eth E_th.glif Etilde E_tilde.glif Ezh E_zh.glif F F_.glif F.half F_.half.glif Fhook F_hook.glif G G_.glif G.half G_.half.glif Gamma G_amma.glif Gammaafrican G_ammaafrican.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Ge-cy G_e-cy.glif Germandbls G_ermandbls.glif Ghestroke-cy G_hestroke-cy.glif Gheupturn-cy G_heupturn-cy.glif Gje-cy G_je-cy.glif Gsmall G_small.glif Gstroke G_stroke.glif H H_.glif H.half H_.half.glif Ha-cy H_a-cy.glif Hadescender-cy H_adescender-cy.glif Hardsign-cy H_ardsign-cy.glif Hbar H_bar.glif Hcaron H_caron.glif Hcircumflex H_circumflex.glif Hdotbelow H_dotbelow.glif I I_.glif I-cy I_-cy.glif I.half I_.half.glif IJ I_J_.glif IJ_acute I_J__acute.glif Ia-cy I_a-cy.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Ie-cy I_e-cy.glif Iegrave-cy I_egrave-cy.glif Igrave I_grave.glif Ihookabove I_hookabove.glif Ii-cy I_i-cy.glif Iigrave-cy I_igrave-cy.glif Iishort-cy I_ishort-cy.glif Imacron I_macron.glif Imacron-cy I_macron-cy.glif Io-cy I_o-cy.glif Iogonek I_ogonek.glif Iota I_ota.glif Iotaafrican I_otaafrican.glif Iotadieresis I_otadieresis.glif Iotatonos I_otatonos.glif Ismall I_small.glif Itilde I_tilde.glif Iu-cy I_u-cy.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif Je-cy J_e-cy.glif K K_.glif K.half K_.half.glif Ka-cy K_a-cy.glif Kacute K_acute.glif Kadescender-cy K_adescender-cy.glif KaiSymbol K_aiS_ymbol.glif Kappa K_appa.glif Kcommaaccent K_commaaccent.glif Kdotbelow K_dotbelow.glif Kje-cy K_je-cy.glif Klinebelow K_linebelow.glif L L_.glif L.half L_.half.glif LIG L_I_G_.glif Lacute L_acute.glif Lambda L_ambda.glif Lbar L_bar.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Ldotbelow L_dotbelow.glif Lje-cy L_je-cy.glif Llinebelow L_linebelow.glif Lmiddletilde L_middletilde.glif Lslash L_slash.glif Lsmall L_small.glif M M_.glif M.half M_.half.glif Mu M_u.glif N N_.glif N.half N_.half.glif Nacute N_acute.glif Nacute.loclPLK N_acute.loclP_L_K_.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Nhookleft N_hookleft.glif Nje-cy N_je-cy.glif Nlinebelow N_linebelow.glif Ntilde N_tilde.glif Nu N_u.glif O O_.glif O-cy O_-cy.glif O.half O_.half.glif OE O_E_.glif Oacute O_acute.glif Oacute.loclPLK O_acute.loclP_L_K_.glif Obarred-cy O_barred-cy.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhookabove O_circumflexhookabove.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohm O_hm.glif Ohookabove O_hookabove.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhookabove O_hornhookabove.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omacronacute O_macronacute.glif Omacrongrave O_macrongrave.glif Omega O_mega.glif Omegatonos O_megatonos.glif Omicron O_micron.glif Omicrontonos O_microntonos.glif Oogonek O_ogonek.glif Oopen O_open.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif P.half P_.half.glif Palochka-cy P_alochka-cy.glif Pe-cy P_e-cy.glif Phi P_hi.glif Pi P_i.glif Psi P_si.glif Q Q_.glif Q.half Q_.half.glif R R_.glif R.half R_.half.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif Rdotbelow R_dotbelow.glif Rho R_ho.glif S S_.glif S.half S_.half.glif Sacute S_acute.glif Sacute.loclPLK S_acute.loclP_L_K_.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Schwa-cy S_chwa-cy.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif Sdotbelow S_dotbelow.glif Sha-cy S_ha-cy.glif Shcha-cy S_hcha-cy.glif Shha-cy S_hha-cy.glif Sigma S_igma.glif Softsign-cy S_oftsign-cy.glif T T_.glif T.half T_.half.glif Tau T_au.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Tdiagonalstroke T_diagonalstroke.glif Te-cy T_e-cy.glif Theta T_heta.glif Thorn T_horn.glif Tlinebelow T_linebelow.glif Tse-cy T_se-cy.glif Tshe-cy T_she-cy.glif U U_.glif U-cy U_-cy.glif U.half U_.half.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhookabove U_hookabove.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhookabove U_hornhookabove.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Umacron-cy U_macron-cy.glif Uogonek U_ogonek.glif Upsilon U_psilon.glif Upsilonafrican U_psilonafrican.glif Upsilondieresis U_psilondieresis.glif Upsilontonos U_psilontonos.glif Uring U_ring.glif Ushort-cy U_short-cy.glif Ustraight-cy U_straight-cy.glif Ustraightstroke-cy U_straightstroke-cy.glif Utilde U_tilde.glif V V_.glif V.half V_.half.glif Ve-cy V_e-cy.glif Vhook V_hook.glif Vturned V_turned.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif X.half X_.half.glif Xi X_i.glif Y Y_.glif Y.half Y_.half.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Yeru-cy Y_eru-cy.glif Ygrave Y_grave.glif Yhookabove Y_hookabove.glif Yi-cy Y_i-cy.glif Ymacron Y_macron.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zacute.loclPLK Z_acute.loclP_L_K_.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif Ze-cy Z_e-cy.glif Zeta Z_eta.glif Zhe-cy Z_he-cy.glif Zhedescender-cy Z_hedescender-cy.glif a a.glif a-cy a-cy.glif aacute aacute.glif abreve abreve.glif abreveacute abreveacute.glif abrevedotbelow abrevedotbelow.glif abrevegrave abrevegrave.glif abrevehookabove abrevehookabove.glif abrevetilde abrevetilde.glif acaron acaron.glif acircumflex acircumflex.glif acircumflexacute acircumflexacute.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexgrave acircumflexgrave.glif acircumflexhookabove acircumflexhookabove.glif acircumflextilde acircumflextilde.glif acknowledgeControl acknowledgeC_ontrol.glif acknowledgeControl.ss20 acknowledgeC_ontrol.ss20.glif acute acute.glif acutecomb acutecomb.glif acutecomb.case acutecomb.case.glif acutecomb.case.loclPLK acutecomb.case.loclP_L_K_.glif acutecomb.loclPLK acutecomb.loclP_L_K_.glif acutetonecomb acutetonecomb.glif adieresis adieresis.glif adotbelow adotbelow.glif ae ae.glif aeacute aeacute.glif agrave agrave.glif ahookabove ahookabove.glif alpha alpha.glif alpha-latin alpha-latin.glif alphatonos alphatonos.glif amacron amacron.glif ampersand ampersand.glif ampersand.BRACKET.600 ampersand.B_R_A_C_K_E_T_.600.glif ampersand_ampersand.liga ampersand_ampersand.liga.glif ampersand_ampersand.liga.BRACKET.600 ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif anoteleia anoteleia.glif aogonek aogonek.glif apostrophemod apostrophemod.glif approxequal approxequal.glif aring aring.glif aringacute aringacute.glif asciicircum asciicircum.glif asciicircum_equal.liga asciicircum_equal.liga.glif asciitilde asciitilde.glif asciitilde_asciitilde.liga asciitilde_asciitilde.liga.glif asciitilde_asciitilde_greater.liga asciitilde_asciitilde_greater.liga.glif asciitilde_at.liga asciitilde_at.liga.glif asciitilde_equal.liga asciitilde_equal.liga.glif asciitilde_greater.liga asciitilde_greater.liga.glif asciitilde_hyphen.liga asciitilde_hyphen.liga.glif asterisk asterisk.glif asterisk_asterisk.liga asterisk_asterisk.liga.glif asterisk_asterisk_asterisk.liga asterisk_asterisk_asterisk.liga.glif asterisk_greater.liga asterisk_greater.liga.glif asterisk_parenright.liga asterisk_parenright.liga.glif asterisk_slash.liga asterisk_slash.liga.glif at at.glif atilde atilde.glif b b.glif b.alt b.alt.glif backslash backslash.glif backslash_backslash.liga backslash_backslash.liga.glif backslash_slash.liga backslash_slash.liga.glif backspaceControl backspaceC_ontrol.glif backspaceControl.ss20 backspaceC_ontrol.ss20.glif baht baht.glif baht.BRACKET.600 baht.B_R_A_C_K_E_T_.600.glif bar bar.glif bar_bar.liga bar_bar.liga.glif bar_bar_bar.liga bar_bar_bar.liga.glif bar_bar_bar_greater.liga bar_bar_bar_greater.liga.glif bar_bar_equal_end.seq bar_bar_equal_end.seq.glif bar_bar_equal_middle.seq bar_bar_equal_middle.seq.glif bar_bar_equal_start.seq bar_bar_equal_start.seq.glif bar_bar_greater.liga bar_bar_greater.liga.glif bar_bar_hyphen_end.seq bar_bar_hyphen_end.seq.glif bar_bar_hyphen_middle.seq bar_bar_hyphen_middle.seq.glif bar_bar_hyphen_start.seq bar_bar_hyphen_start.seq.glif bar_braceright.liga bar_braceright.liga.glif bar_bracketright.liga bar_bracketright.liga.glif bar_equal_end.seq bar_equal_end.seq.glif bar_equal_middle.seq bar_equal_middle.seq.glif bar_equal_start.seq bar_equal_start.seq.glif bar_greater.liga bar_greater.liga.glif bar_hyphen_end.seq bar_hyphen_end.seq.glif bar_hyphen_middle.seq bar_hyphen_middle.seq.glif bar_hyphen_start.seq bar_hyphen_start.seq.glif bar_underscore_middle.seq bar_underscore_middle.seq.glif be-cy be-cy.glif be-cy.loclSRB be-cy.loclS_R_B_.glif bellControl bellC_ontrol.glif bellControl.ss20 bellC_ontrol.ss20.glif beta beta.glif bitcoin bitcoin.glif blackCircle blackC_ircle.glif blackDiamond blackD_iamond.glif blackHexagon blackH_exagon.glif blackHorizontalEllipse blackH_orizontalE_llipse.glif blackInWhiteDiamond blackI_nW_hiteD_iamond.glif blackLargeCircle blackL_argeC_ircle.glif blackLargeSquare blackL_argeS_quare.glif blackMediumDiamond blackM_ediumD_iamond.glif blackMediumDownTriangleCentred blackM_ediumD_ownT_riangleC_entred.glif blackMediumLeftTriangleCentred blackM_ediumL_eftT_riangleC_entred.glif blackMediumLozenge blackM_ediumL_ozenge.glif blackMediumRightTriangleCentred blackM_ediumR_ightT_riangleC_entred.glif blackMediumUpTriangleCentred blackM_ediumU_pT_riangleC_entred.glif blackParallelogram blackP_arallelogram.glif blackPentagon blackP_entagon.glif blackSmallDiamond blackS_mallD_iamond.glif blackSmallLozenge blackS_mallL_ozenge.glif blackSmallSquare blackS_mallS_quare.glif blackSmilingFace blackS_milingF_ace.glif blackSquare blackS_quare.glif blackVerticalEllipse blackV_erticalE_llipse.glif blackVerticalRect blackV_erticalR_ect.glif blackVerysmallSquare blackV_erysmallS_quare.glif blank blank.glif blank-braille blank-braille.glif blankSymbol blankS_ymbol.glif bottomHalfBlackCircle bottomH_alfB_lackC_ircle.glif bottomHalfBlackDiamond bottomH_alfB_lackD_iamond.glif boxDoubleDownAndHorizontal boxD_oubleD_ownA_ndH_orizontal.glif boxDoubleDownAndHorizontal.stypo boxD_oubleD_ownA_ndH_orizontal.stypo.glif boxDoubleDownAndLeft boxD_oubleD_ownA_ndL_eft.glif boxDoubleDownAndLeft.stypo boxD_oubleD_ownA_ndL_eft.stypo.glif boxDoubleDownAndRight boxD_oubleD_ownA_ndR_ight.glif boxDoubleDownAndRight.stypo boxD_oubleD_ownA_ndR_ight.stypo.glif boxDoubleHorizontal boxD_oubleH_orizontal.glif boxDoubleHorizontal.stypo boxD_oubleH_orizontal.stypo.glif boxDoubleUpAndHorizontal boxD_oubleU_pA_ndH_orizontal.glif boxDoubleUpAndHorizontal.stypo boxD_oubleU_pA_ndH_orizontal.stypo.glif boxDoubleUpAndLeft boxD_oubleU_pA_ndL_eft.glif boxDoubleUpAndLeft.stypo boxD_oubleU_pA_ndL_eft.stypo.glif boxDoubleUpAndRight boxD_oubleU_pA_ndR_ight.glif boxDoubleUpAndRight.stypo boxD_oubleU_pA_ndR_ight.stypo.glif boxDoubleVertical boxD_oubleV_ertical.glif boxDoubleVertical.stypo boxD_oubleV_ertical.stypo.glif boxDoubleVerticalAndHorizontal boxD_oubleV_erticalA_ndH_orizontal.glif boxDoubleVerticalAndHorizontal.stypo boxD_oubleV_erticalA_ndH_orizontal.stypo.glif boxDoubleVerticalAndLeft boxD_oubleV_erticalA_ndL_eft.glif boxDoubleVerticalAndLeft.stypo boxD_oubleV_erticalA_ndL_eft.stypo.glif boxDoubleVerticalAndRight boxD_oubleV_erticalA_ndR_ight.glif boxDoubleVerticalAndRight.stypo boxD_oubleV_erticalA_ndR_ight.stypo.glif boxDownDoubleAndHorizontalSingle boxD_ownD_oubleA_ndH_orizontalS_ingle.glif boxDownDoubleAndHorizontalSingle.stypo boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif boxDownDoubleAndLeftSingle boxD_ownD_oubleA_ndL_eftS_ingle.glif boxDownDoubleAndLeftSingle.stypo boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif boxDownDoubleAndRightSingle boxD_ownD_oubleA_ndR_ightS_ingle.glif boxDownDoubleAndRightSingle.stypo boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif boxDownHeavyAndHorizontalLight boxD_ownH_eavyA_ndH_orizontalL_ight.glif boxDownHeavyAndHorizontalLight.stypo boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif boxDownHeavyAndLeftLight boxD_ownH_eavyA_ndL_eftL_ight.glif boxDownHeavyAndLeftLight.stypo boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif boxDownHeavyAndLeftUpLight boxD_ownH_eavyA_ndL_eftU_pL_ight.glif boxDownHeavyAndLeftUpLight.stypo boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxDownHeavyAndRightLight boxD_ownH_eavyA_ndR_ightL_ight.glif boxDownHeavyAndRightLight.stypo boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif boxDownHeavyAndRightUpLight boxD_ownH_eavyA_ndR_ightU_pL_ight.glif boxDownHeavyAndRightUpLight.stypo boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxDownHeavyAndUpHorizontalLight boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif boxDownHeavyAndUpHorizontalLight.stypo boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif boxDownLightAndHorizontalHeavy boxD_ownL_ightA_ndH_orizontalH_eavy.glif boxDownLightAndHorizontalHeavy.stypo boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif boxDownLightAndLeftHeavy boxD_ownL_ightA_ndL_eftH_eavy.glif boxDownLightAndLeftHeavy.stypo boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif boxDownLightAndLeftUpHeavy boxD_ownL_ightA_ndL_eftU_pH_eavy.glif boxDownLightAndLeftUpHeavy.stypo boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif boxDownLightAndRightHeavy boxD_ownL_ightA_ndR_ightH_eavy.glif boxDownLightAndRightHeavy.stypo boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif boxDownLightAndRightUpHeavy boxD_ownL_ightA_ndR_ightU_pH_eavy.glif boxDownLightAndRightUpHeavy.stypo boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif boxDownLightAndUpHorizontalHeavy boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif boxDownLightAndUpHorizontalHeavy.stypo boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif boxDownSingleAndHorizontalDouble boxD_ownS_ingleA_ndH_orizontalD_ouble.glif boxDownSingleAndHorizontalDouble.stypo boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif boxDownSingleAndLeftDouble boxD_ownS_ingleA_ndL_eftD_ouble.glif boxDownSingleAndLeftDouble.stypo boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif boxDownSingleAndRightDouble boxD_ownS_ingleA_ndR_ightD_ouble.glif boxDownSingleAndRightDouble.stypo boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif boxHeavyDoubleDashHorizontal boxH_eavyD_oubleD_ashH_orizontal.glif boxHeavyDoubleDashHorizontal.stypo boxH_eavyD_oubleD_ashH_orizontal.stypo.glif boxHeavyDoubleDashVertical boxH_eavyD_oubleD_ashV_ertical.glif boxHeavyDoubleDashVertical.stypo boxH_eavyD_oubleD_ashV_ertical.stypo.glif boxHeavyDown boxH_eavyD_own.glif boxHeavyDown.stypo boxH_eavyD_own.stypo.glif boxHeavyDownAndHorizontal boxH_eavyD_ownA_ndH_orizontal.glif boxHeavyDownAndHorizontal.stypo boxH_eavyD_ownA_ndH_orizontal.stypo.glif boxHeavyDownAndLeft boxH_eavyD_ownA_ndL_eft.glif boxHeavyDownAndLeft.stypo boxH_eavyD_ownA_ndL_eft.stypo.glif boxHeavyDownAndRight boxH_eavyD_ownA_ndR_ight.glif boxHeavyDownAndRight.stypo boxH_eavyD_ownA_ndR_ight.stypo.glif boxHeavyHorizontal boxH_eavyH_orizontal.glif boxHeavyHorizontal.stypo boxH_eavyH_orizontal.stypo.glif boxHeavyLeft boxH_eavyL_eft.glif boxHeavyLeft.stypo boxH_eavyL_eft.stypo.glif boxHeavyLeftAndLightRight boxH_eavyL_eftA_ndL_ightR_ight.glif boxHeavyLeftAndLightRight.stypo boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif boxHeavyQuadrupleDashHorizontal boxH_eavyQ_uadrupleD_ashH_orizontal.glif boxHeavyQuadrupleDashHorizontal.stypo boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif boxHeavyQuadrupleDashVertical boxH_eavyQ_uadrupleD_ashV_ertical.glif boxHeavyQuadrupleDashVertical.stypo boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif boxHeavyRight boxH_eavyR_ight.glif boxHeavyRight.stypo boxH_eavyR_ight.stypo.glif boxHeavyTripleDashHorizontal boxH_eavyT_ripleD_ashH_orizontal.glif boxHeavyTripleDashHorizontal.stypo boxH_eavyT_ripleD_ashH_orizontal.stypo.glif boxHeavyTripleDashVertical boxH_eavyT_ripleD_ashV_ertical.glif boxHeavyTripleDashVertical.stypo boxH_eavyT_ripleD_ashV_ertical.stypo.glif boxHeavyUp boxH_eavyU_p.glif boxHeavyUp.stypo boxH_eavyU_p.stypo.glif boxHeavyUpAndHorizontal boxH_eavyU_pA_ndH_orizontal.glif boxHeavyUpAndHorizontal.stypo boxH_eavyU_pA_ndH_orizontal.stypo.glif boxHeavyUpAndLeft boxH_eavyU_pA_ndL_eft.glif boxHeavyUpAndLeft.stypo boxH_eavyU_pA_ndL_eft.stypo.glif boxHeavyUpAndLightDown boxH_eavyU_pA_ndL_ightD_own.glif boxHeavyUpAndLightDown.stypo boxH_eavyU_pA_ndL_ightD_own.stypo.glif boxHeavyUpAndRight boxH_eavyU_pA_ndR_ight.glif boxHeavyUpAndRight.stypo boxH_eavyU_pA_ndR_ight.stypo.glif boxHeavyVertical boxH_eavyV_ertical.glif boxHeavyVertical.stypo boxH_eavyV_ertical.stypo.glif boxHeavyVerticalAndHorizontal boxH_eavyV_erticalA_ndH_orizontal.glif boxHeavyVerticalAndHorizontal.stypo boxH_eavyV_erticalA_ndH_orizontal.stypo.glif boxHeavyVerticalAndLeft boxH_eavyV_erticalA_ndL_eft.glif boxHeavyVerticalAndLeft.stypo boxH_eavyV_erticalA_ndL_eft.stypo.glif boxHeavyVerticalAndRight boxH_eavyV_erticalA_ndR_ight.glif boxHeavyVerticalAndRight.stypo boxH_eavyV_erticalA_ndR_ight.stypo.glif boxLeftDownHeavyAndRightUpLight boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif boxLeftDownHeavyAndRightUpLight.stypo boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightDownLight boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif boxLeftHeavyAndRightDownLight.stypo boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLeftHeavyAndRightUpLight boxL_eftH_eavyA_ndR_ightU_pL_ight.glif boxLeftHeavyAndRightUpLight.stypo boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightVerticalLight boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif boxLeftHeavyAndRightVerticalLight.stypo boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif boxLeftLightAndRightDownHeavy boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif boxLeftLightAndRightDownHeavy.stypo boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxLeftLightAndRightUpHeavy boxL_eftL_ightA_ndR_ightU_pH_eavy.glif boxLeftLightAndRightUpHeavy.stypo boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif boxLeftLightAndRightVerticalHeavy boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif boxLeftLightAndRightVerticalHeavy.stypo boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif boxLeftUpHeavyAndRightDownLight boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif boxLeftUpHeavyAndRightDownLight.stypo boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLightArcDownAndLeft boxL_ightA_rcD_ownA_ndL_eft.glif boxLightArcDownAndLeft.stypo boxL_ightA_rcD_ownA_ndL_eft.stypo.glif boxLightArcDownAndRight boxL_ightA_rcD_ownA_ndR_ight.glif boxLightArcDownAndRight.stypo boxL_ightA_rcD_ownA_ndR_ight.stypo.glif boxLightArcUpAndLeft boxL_ightA_rcU_pA_ndL_eft.glif boxLightArcUpAndLeft.stypo boxL_ightA_rcU_pA_ndL_eft.stypo.glif boxLightArcUpAndRight boxL_ightA_rcU_pA_ndR_ight.glif boxLightArcUpAndRight.stypo boxL_ightA_rcU_pA_ndR_ight.stypo.glif boxLightDiagonalCross boxL_ightD_iagonalC_ross.glif boxLightDiagonalCross.stypo boxL_ightD_iagonalC_ross.stypo.glif boxLightDiagonalUpperLeftToLowerRight boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif boxLightDiagonalUpperLeftToLowerRight.stypo boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif boxLightDiagonalUpperRightToLowerLeft boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif boxLightDiagonalUpperRightToLowerLeft.stypo boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif boxLightDoubleDashHorizontal boxL_ightD_oubleD_ashH_orizontal.glif boxLightDoubleDashHorizontal.stypo boxL_ightD_oubleD_ashH_orizontal.stypo.glif boxLightDoubleDashVertical boxL_ightD_oubleD_ashV_ertical.glif boxLightDoubleDashVertical.stypo boxL_ightD_oubleD_ashV_ertical.stypo.glif boxLightDown boxL_ightD_own.glif boxLightDown.stypo boxL_ightD_own.stypo.glif boxLightDownAndHorizontal boxL_ightD_ownA_ndH_orizontal.glif boxLightDownAndHorizontal.stypo boxL_ightD_ownA_ndH_orizontal.stypo.glif boxLightDownAndLeft boxL_ightD_ownA_ndL_eft.glif boxLightDownAndLeft.stypo boxL_ightD_ownA_ndL_eft.stypo.glif boxLightDownAndRight boxL_ightD_ownA_ndR_ight.glif boxLightDownAndRight.stypo boxL_ightD_ownA_ndR_ight.stypo.glif boxLightHorizontal boxL_ightH_orizontal.glif boxLightHorizontal.stypo boxL_ightH_orizontal.stypo.glif boxLightLeft boxL_ightL_eft.glif boxLightLeft.stypo boxL_ightL_eft.stypo.glif boxLightLeftAndHeavyRight boxL_ightL_eftA_ndH_eavyR_ight.glif boxLightLeftAndHeavyRight.stypo boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif boxLightQuadrupleDashHorizontal boxL_ightQ_uadrupleD_ashH_orizontal.glif boxLightQuadrupleDashHorizontal.stypo boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif boxLightQuadrupleDashVertical boxL_ightQ_uadrupleD_ashV_ertical.glif boxLightQuadrupleDashVertical.stypo boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif boxLightRight boxL_ightR_ight.glif boxLightRight.stypo boxL_ightR_ight.stypo.glif boxLightTripleDashHorizontal boxL_ightT_ripleD_ashH_orizontal.glif boxLightTripleDashHorizontal.stypo boxL_ightT_ripleD_ashH_orizontal.stypo.glif boxLightTripleDashVertical boxL_ightT_ripleD_ashV_ertical.glif boxLightTripleDashVertical.stypo boxL_ightT_ripleD_ashV_ertical.stypo.glif boxLightUp boxL_ightU_p.glif boxLightUp.stypo boxL_ightU_p.stypo.glif boxLightUpAndHeavyDown boxL_ightU_pA_ndH_eavyD_own.glif boxLightUpAndHeavyDown.stypo boxL_ightU_pA_ndH_eavyD_own.stypo.glif boxLightUpAndHorizontal boxL_ightU_pA_ndH_orizontal.glif boxLightUpAndHorizontal.stypo boxL_ightU_pA_ndH_orizontal.stypo.glif boxLightUpAndLeft boxL_ightU_pA_ndL_eft.glif boxLightUpAndLeft.stypo boxL_ightU_pA_ndL_eft.stypo.glif boxLightUpAndRight boxL_ightU_pA_ndR_ight.glif boxLightUpAndRight.stypo boxL_ightU_pA_ndR_ight.stypo.glif boxLightVertical boxL_ightV_ertical.glif boxLightVertical.stypo boxL_ightV_ertical.stypo.glif boxLightVerticalAndHorizontal boxL_ightV_erticalA_ndH_orizontal.glif boxLightVerticalAndHorizontal.stypo boxL_ightV_erticalA_ndH_orizontal.stypo.glif boxLightVerticalAndLeft boxL_ightV_erticalA_ndL_eft.glif boxLightVerticalAndLeft.stypo boxL_ightV_erticalA_ndL_eft.stypo.glif boxLightVerticalAndRight boxL_ightV_erticalA_ndR_ight.glif boxLightVerticalAndRight.stypo boxL_ightV_erticalA_ndR_ight.stypo.glif boxRightDownHeavyAndLeftUpLight boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif boxRightDownHeavyAndLeftUpLight.stypo boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftDownLight boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif boxRightHeavyAndLeftDownLight.stypo boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxRightHeavyAndLeftUpLight boxR_ightH_eavyA_ndL_eftU_pL_ight.glif boxRightHeavyAndLeftUpLight.stypo boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftVerticalLight boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif boxRightHeavyAndLeftVerticalLight.stypo boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif boxRightLightAndLeftDownHeavy boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif boxRightLightAndLeftDownHeavy.stypo boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxRightLightAndLeftUpHeavy boxR_ightL_ightA_ndL_eftU_pH_eavy.glif boxRightLightAndLeftUpHeavy.stypo boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif boxRightLightAndLeftVerticalHeavy boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif boxRightLightAndLeftVerticalHeavy.stypo boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif boxRightUpHeavyAndLeftDownLight boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif boxRightUpHeavyAndLeftDownLight.stypo boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpDoubleAndHorizontalSingle boxU_pD_oubleA_ndH_orizontalS_ingle.glif boxUpDoubleAndHorizontalSingle.stypo boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif boxUpDoubleAndLeftSingle boxU_pD_oubleA_ndL_eftS_ingle.glif boxUpDoubleAndLeftSingle.stypo boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif boxUpDoubleAndRightSingle boxU_pD_oubleA_ndR_ightS_ingle.glif boxUpDoubleAndRightSingle.stypo boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif boxUpHeavyAndDownHorizontalLight boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif boxUpHeavyAndDownHorizontalLight.stypo boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif boxUpHeavyAndHorizontalLight boxU_pH_eavyA_ndH_orizontalL_ight.glif boxUpHeavyAndHorizontalLight.stypo boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif boxUpHeavyAndLeftDownLight boxU_pH_eavyA_ndL_eftD_ownL_ight.glif boxUpHeavyAndLeftDownLight.stypo boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpHeavyAndLeftLight boxU_pH_eavyA_ndL_eftL_ight.glif boxUpHeavyAndLeftLight.stypo boxU_pH_eavyA_ndL_eftL_ight.stypo.glif boxUpHeavyAndRightDownLight boxU_pH_eavyA_ndR_ightD_ownL_ight.glif boxUpHeavyAndRightDownLight.stypo boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxUpHeavyAndRightLight boxU_pH_eavyA_ndR_ightL_ight.glif boxUpHeavyAndRightLight.stypo boxU_pH_eavyA_ndR_ightL_ight.stypo.glif boxUpLightAndDownHorizontalHeavy boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif boxUpLightAndDownHorizontalHeavy.stypo boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif boxUpLightAndHorizontalHeavy boxU_pL_ightA_ndH_orizontalH_eavy.glif boxUpLightAndHorizontalHeavy.stypo boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif boxUpLightAndLeftDownHeavy boxU_pL_ightA_ndL_eftD_ownH_eavy.glif boxUpLightAndLeftDownHeavy.stypo boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxUpLightAndLeftHeavy boxU_pL_ightA_ndL_eftH_eavy.glif boxUpLightAndLeftHeavy.stypo boxU_pL_ightA_ndL_eftH_eavy.stypo.glif boxUpLightAndRightDownHeavy boxU_pL_ightA_ndR_ightD_ownH_eavy.glif boxUpLightAndRightDownHeavy.stypo boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxUpLightAndRightHeavy boxU_pL_ightA_ndR_ightH_eavy.glif boxUpLightAndRightHeavy.stypo boxU_pL_ightA_ndR_ightH_eavy.stypo.glif boxUpSingleAndHorizontalDouble boxU_pS_ingleA_ndH_orizontalD_ouble.glif boxUpSingleAndHorizontalDouble.stypo boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif boxUpSingleAndLeftDouble boxU_pS_ingleA_ndL_eftD_ouble.glif boxUpSingleAndLeftDouble.stypo boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif boxUpSingleAndRightDouble boxU_pS_ingleA_ndR_ightD_ouble.glif boxUpSingleAndRightDouble.stypo boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif boxVerticalDoubleAndHorizontalSingle boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif boxVerticalDoubleAndHorizontalSingle.stypo boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif boxVerticalDoubleAndLeftSingle boxV_erticalD_oubleA_ndL_eftS_ingle.glif boxVerticalDoubleAndLeftSingle.stypo boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif boxVerticalDoubleAndRightSingle boxV_erticalD_oubleA_ndR_ightS_ingle.glif boxVerticalDoubleAndRightSingle.stypo boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif boxVerticalHeavyAndHorizontalLight boxV_erticalH_eavyA_ndH_orizontalL_ight.glif boxVerticalHeavyAndHorizontalLight.stypo boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif boxVerticalHeavyAndLeftLight boxV_erticalH_eavyA_ndL_eftL_ight.glif boxVerticalHeavyAndLeftLight.stypo boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif boxVerticalHeavyAndRightLight boxV_erticalH_eavyA_ndR_ightL_ight.glif boxVerticalHeavyAndRightLight.stypo boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif boxVerticalLightAndHorizontalHeavy boxV_erticalL_ightA_ndH_orizontalH_eavy.glif boxVerticalLightAndHorizontalHeavy.stypo boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif boxVerticalLightAndLeftHeavy boxV_erticalL_ightA_ndL_eftH_eavy.glif boxVerticalLightAndLeftHeavy.stypo boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif boxVerticalLightAndRightHeavy boxV_erticalL_ightA_ndR_ightH_eavy.glif boxVerticalLightAndRightHeavy.stypo boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif boxVerticalSingleAndHorizontalDouble boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif boxVerticalSingleAndHorizontalDouble.stypo boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif boxVerticalSingleAndLeftDouble boxV_erticalS_ingleA_ndL_eftD_ouble.glif boxVerticalSingleAndLeftDouble.stypo boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif boxVerticalSingleAndRightDouble boxV_erticalS_ingleA_ndR_ightD_ouble.glif boxVerticalSingleAndRightDouble.stypo boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif braceleft braceleft.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif bracketleft bracketleft.glif bracketleft_bar.liga bracketleft_bar.liga.glif bracketright bracketright.glif bracketright_numbersign.liga bracketright_numbersign.liga.glif breve breve.glif brevecomb brevecomb.glif brevecomb-cy brevecomb-cy.glif brevecomb-cy.case brevecomb-cy.case.glif brevecomb.case brevecomb.case.glif brokenbar brokenbar.glif bullet bullet.glif bulletoperator bulletoperator.glif bullseye bullseye.glif c c.glif cacute cacute.glif cacute.loclPLK cacute.loclP_L_K_.glif cancelControl cancelC_ontrol.glif cancelControl.ss20 cancelC_ontrol.ss20.glif careof careof.glif caron caron.glif caroncomb caroncomb.glif caroncomb.case caroncomb.case.glif carriageReturnControl carriageR_eturnC_ontrol.glif carriageReturnControl.ss20 carriageR_eturnC_ontrol.ss20.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif cent cent.glif che-cy che-cy.glif che-cy.salt che-cy.salt.glif checkmark checkmark.glif chedescender-cy chedescender-cy.glif chedescender-cy.salt chedescender-cy.salt.glif chi chi.glif circumflex circumflex.glif circumflexcomb circumflexcomb.glif circumflexcomb.case circumflexcomb.case.glif clubBlackSuit clubB_lackS_uit.glif colon colon.glif colon.center colon.center.glif colon_colon.liga colon_colon.liga.glif colon_colon_colon.liga colon_colon_colon.liga.glif colon_colon_equal.liga colon_colon_equal.liga.glif colon_equal.liga colon_equal.liga.glif colon_equal_middle.seq colon_equal_middle.seq.glif colon_slash_slash.liga colon_slash_slash.liga.glif colonsign colonsign.glif colontriangularmod colontriangularmod.glif comma comma.glif commaabovecomb commaabovecomb.glif commaaboverightcomb commaaboverightcomb.glif commaaccentcomb commaaccentcomb.glif commaturnedabovecomb commaturnedabovecomb.glif commaturnedmod commaturnedmod.glif copyright copyright.glif crosshatchFillSquare crosshatchF_illS_quare.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dashdownArrow dashdownA_rrow.glif dataLinkEscapeControl dataL_inkE_scapeC_ontrol.glif dataLinkEscapeControl.ss20 dataL_inkE_scapeC_ontrol.ss20.glif dcaron dcaron.glif dcaron.alt dcaron.alt.glif dcroat dcroat.glif de-cy de-cy.glif de-cy.loclBGR de-cy.loclB_G_R_.glif degree degree.glif deleteControl deleteC_ontrol.glif deleteFormTwoControl deleteF_ormT_woC_ontrol.glif delta delta.glif deviceControlFourControl deviceC_ontrolF_ourC_ontrol.glif deviceControlOneControl deviceC_ontrolO_neC_ontrol.glif deviceControlThreeControl deviceC_ontrolT_hreeC_ontrol.glif deviceControlTwoControl deviceC_ontrolT_woC_ontrol.glif diagonalcrosshatchFillSquare diagonalcrosshatchF_illS_quare.glif diamondBlackSuit diamondB_lackS_uit.glif dieresis dieresis.glif dieresiscomb dieresiscomb.glif dieresiscomb.case dieresiscomb.case.glif dieresistonos dieresistonos.glif divide divide.glif divisionslash divisionslash.glif dje-cy dje-cy.glif dollar dollar.glif dollar.BRACKET.600 dollar.B_R_A_C_K_E_T_.600.glif dollar_greater.liga dollar_greater.liga.glif dollar_greater.liga.BRACKET.600 dollar_greater.liga.B_R_A_C_K_E_T_.600.glif dong dong.glif dotaccent dotaccent.glif dotaccentcomb dotaccentcomb.glif dotaccentcomb.case dotaccentcomb.case.glif dotbelowcomb dotbelowcomb.glif dots1-braille dots1-braille.glif dots12-braille dots12-braille.glif dots123-braille dots123-braille.glif dots1234-braille dots1234-braille.glif dots12345-braille dots12345-braille.glif dots123456-braille dots123456-braille.glif dots1234567-braille dots1234567-braille.glif dots12345678-braille dots12345678-braille.glif dots1234568-braille dots1234568-braille.glif dots123457-braille dots123457-braille.glif dots1234578-braille dots1234578-braille.glif dots123458-braille dots123458-braille.glif dots12346-braille dots12346-braille.glif dots123467-braille dots123467-braille.glif dots1234678-braille dots1234678-braille.glif dots123468-braille dots123468-braille.glif dots12347-braille dots12347-braille.glif dots123478-braille dots123478-braille.glif dots12348-braille dots12348-braille.glif dots1235-braille dots1235-braille.glif dots12356-braille dots12356-braille.glif dots123567-braille dots123567-braille.glif dots1235678-braille dots1235678-braille.glif dots123568-braille dots123568-braille.glif dots12357-braille dots12357-braille.glif dots123578-braille dots123578-braille.glif dots12358-braille dots12358-braille.glif dots1236-braille dots1236-braille.glif dots12367-braille dots12367-braille.glif dots123678-braille dots123678-braille.glif dots12368-braille dots12368-braille.glif dots1237-braille dots1237-braille.glif dots12378-braille dots12378-braille.glif dots1238-braille dots1238-braille.glif dots124-braille dots124-braille.glif dots1245-braille dots1245-braille.glif dots12456-braille dots12456-braille.glif dots124567-braille dots124567-braille.glif dots1245678-braille dots1245678-braille.glif dots124568-braille dots124568-braille.glif dots12457-braille dots12457-braille.glif dots124578-braille dots124578-braille.glif dots12458-braille dots12458-braille.glif dots1246-braille dots1246-braille.glif dots12467-braille dots12467-braille.glif dots124678-braille dots124678-braille.glif dots12468-braille dots12468-braille.glif dots1247-braille dots1247-braille.glif dots12478-braille dots12478-braille.glif dots1248-braille dots1248-braille.glif dots125-braille dots125-braille.glif dots1256-braille dots1256-braille.glif dots12567-braille dots12567-braille.glif dots125678-braille dots125678-braille.glif dots12568-braille dots12568-braille.glif dots1257-braille dots1257-braille.glif dots12578-braille dots12578-braille.glif dots1258-braille dots1258-braille.glif dots126-braille dots126-braille.glif dots1267-braille dots1267-braille.glif dots12678-braille dots12678-braille.glif dots1268-braille dots1268-braille.glif dots127-braille dots127-braille.glif dots1278-braille dots1278-braille.glif dots128-braille dots128-braille.glif dots13-braille dots13-braille.glif dots134-braille dots134-braille.glif dots1345-braille dots1345-braille.glif dots13456-braille dots13456-braille.glif dots134567-braille dots134567-braille.glif dots1345678-braille dots1345678-braille.glif dots134568-braille dots134568-braille.glif dots13457-braille dots13457-braille.glif dots134578-braille dots134578-braille.glif dots13458-braille dots13458-braille.glif dots1346-braille dots1346-braille.glif dots13467-braille dots13467-braille.glif dots134678-braille dots134678-braille.glif dots13468-braille dots13468-braille.glif dots1347-braille dots1347-braille.glif dots13478-braille dots13478-braille.glif dots1348-braille dots1348-braille.glif dots135-braille dots135-braille.glif dots1356-braille dots1356-braille.glif dots13567-braille dots13567-braille.glif dots135678-braille dots135678-braille.glif dots13568-braille dots13568-braille.glif dots1357-braille dots1357-braille.glif dots13578-braille dots13578-braille.glif dots1358-braille dots1358-braille.glif dots136-braille dots136-braille.glif dots1367-braille dots1367-braille.glif dots13678-braille dots13678-braille.glif dots1368-braille dots1368-braille.glif dots137-braille dots137-braille.glif dots1378-braille dots1378-braille.glif dots138-braille dots138-braille.glif dots14-braille dots14-braille.glif dots145-braille dots145-braille.glif dots1456-braille dots1456-braille.glif dots14567-braille dots14567-braille.glif dots145678-braille dots145678-braille.glif dots14568-braille dots14568-braille.glif dots1457-braille dots1457-braille.glif dots14578-braille dots14578-braille.glif dots1458-braille dots1458-braille.glif dots146-braille dots146-braille.glif dots1467-braille dots1467-braille.glif dots14678-braille dots14678-braille.glif dots1468-braille dots1468-braille.glif dots147-braille dots147-braille.glif dots1478-braille dots1478-braille.glif dots148-braille dots148-braille.glif dots15-braille dots15-braille.glif dots156-braille dots156-braille.glif dots1567-braille dots1567-braille.glif dots15678-braille dots15678-braille.glif dots1568-braille dots1568-braille.glif dots157-braille dots157-braille.glif dots1578-braille dots1578-braille.glif dots158-braille dots158-braille.glif dots16-braille dots16-braille.glif dots167-braille dots167-braille.glif dots1678-braille dots1678-braille.glif dots168-braille dots168-braille.glif dots17-braille dots17-braille.glif dots178-braille dots178-braille.glif dots18-braille dots18-braille.glif dots2-braille dots2-braille.glif dots23-braille dots23-braille.glif dots234-braille dots234-braille.glif dots2345-braille dots2345-braille.glif dots23456-braille dots23456-braille.glif dots234567-braille dots234567-braille.glif dots2345678-braille dots2345678-braille.glif dots234568-braille dots234568-braille.glif dots23457-braille dots23457-braille.glif dots234578-braille dots234578-braille.glif dots23458-braille dots23458-braille.glif dots2346-braille dots2346-braille.glif dots23467-braille dots23467-braille.glif dots234678-braille dots234678-braille.glif dots23468-braille dots23468-braille.glif dots2347-braille dots2347-braille.glif dots23478-braille dots23478-braille.glif dots2348-braille dots2348-braille.glif dots235-braille dots235-braille.glif dots2356-braille dots2356-braille.glif dots23567-braille dots23567-braille.glif dots235678-braille dots235678-braille.glif dots23568-braille dots23568-braille.glif dots2357-braille dots2357-braille.glif dots23578-braille dots23578-braille.glif dots2358-braille dots2358-braille.glif dots236-braille dots236-braille.glif dots2367-braille dots2367-braille.glif dots23678-braille dots23678-braille.glif dots2368-braille dots2368-braille.glif dots237-braille dots237-braille.glif dots2378-braille dots2378-braille.glif dots238-braille dots238-braille.glif dots24-braille dots24-braille.glif dots245-braille dots245-braille.glif dots2456-braille dots2456-braille.glif dots24567-braille dots24567-braille.glif dots245678-braille dots245678-braille.glif dots24568-braille dots24568-braille.glif dots2457-braille dots2457-braille.glif dots24578-braille dots24578-braille.glif dots2458-braille dots2458-braille.glif dots246-braille dots246-braille.glif dots2467-braille dots2467-braille.glif dots24678-braille dots24678-braille.glif dots2468-braille dots2468-braille.glif dots247-braille dots247-braille.glif dots2478-braille dots2478-braille.glif dots248-braille dots248-braille.glif dots25-braille dots25-braille.glif dots256-braille dots256-braille.glif dots2567-braille dots2567-braille.glif dots25678-braille dots25678-braille.glif dots2568-braille dots2568-braille.glif dots257-braille dots257-braille.glif dots2578-braille dots2578-braille.glif dots258-braille dots258-braille.glif dots26-braille dots26-braille.glif dots267-braille dots267-braille.glif dots2678-braille dots2678-braille.glif dots268-braille dots268-braille.glif dots27-braille dots27-braille.glif dots278-braille dots278-braille.glif dots28-braille dots28-braille.glif dots3-braille dots3-braille.glif dots34-braille dots34-braille.glif dots345-braille dots345-braille.glif dots3456-braille dots3456-braille.glif dots34567-braille dots34567-braille.glif dots345678-braille dots345678-braille.glif dots34568-braille dots34568-braille.glif dots3457-braille dots3457-braille.glif dots34578-braille dots34578-braille.glif dots3458-braille dots3458-braille.glif dots346-braille dots346-braille.glif dots3467-braille dots3467-braille.glif dots34678-braille dots34678-braille.glif dots3468-braille dots3468-braille.glif dots347-braille dots347-braille.glif dots3478-braille dots3478-braille.glif dots348-braille dots348-braille.glif dots35-braille dots35-braille.glif dots356-braille dots356-braille.glif dots3567-braille dots3567-braille.glif dots35678-braille dots35678-braille.glif dots3568-braille dots3568-braille.glif dots357-braille dots357-braille.glif dots3578-braille dots3578-braille.glif dots358-braille dots358-braille.glif dots36-braille dots36-braille.glif dots367-braille dots367-braille.glif dots3678-braille dots3678-braille.glif dots368-braille dots368-braille.glif dots37-braille dots37-braille.glif dots378-braille dots378-braille.glif dots38-braille dots38-braille.glif dots4-braille dots4-braille.glif dots45-braille dots45-braille.glif dots456-braille dots456-braille.glif dots4567-braille dots4567-braille.glif dots45678-braille dots45678-braille.glif dots4568-braille dots4568-braille.glif dots457-braille dots457-braille.glif dots4578-braille dots4578-braille.glif dots458-braille dots458-braille.glif dots46-braille dots46-braille.glif dots467-braille dots467-braille.glif dots4678-braille dots4678-braille.glif dots468-braille dots468-braille.glif dots47-braille dots47-braille.glif dots478-braille dots478-braille.glif dots48-braille dots48-braille.glif dots5-braille dots5-braille.glif dots56-braille dots56-braille.glif dots567-braille dots567-braille.glif dots5678-braille dots5678-braille.glif dots568-braille dots568-braille.glif dots57-braille dots57-braille.glif dots578-braille dots578-braille.glif dots58-braille dots58-braille.glif dots6-braille dots6-braille.glif dots67-braille dots67-braille.glif dots678-braille dots678-braille.glif dots68-braille dots68-braille.glif dots7-braille dots7-braille.glif dots78-braille dots78-braille.glif dots8-braille dots8-braille.glif dottedCircle dottedC_ircle.glif dottedSquare dottedS_quare.glif downArrow downA_rrow.glif downBlackSmallTriangle downB_lackS_mallT_riangle.glif downBlackTriangle downB_lackT_riangle.glif downTipLeftArrow downT_ipL_eftA_rrow.glif downWhiteSmallTriangle downW_hiteS_mallT_riangle.glif downWhiteTriangle downW_hiteT_riangle.glif dtail dtail.glif dze-cy dze-cy.glif dzhe-cy dzhe-cy.glif e e.glif e-cy e-cy.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhookabove ecircumflexhookabove.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif ef-cy ef-cy.glif egrave egrave.glif ehookabove ehookabove.glif eight eight.glif eight.dnom eight.dnom.glif eight.numr eight.numr.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif el-cy el-cy.glif ellipsis ellipsis.glif em-cy em-cy.glif emacron emacron.glif emdash emdash.glif en-cy en-cy.glif endOfMediumControl endO_fM_ediumC_ontrol.glif endOfMediumControl.ss20 endO_fM_ediumC_ontrol.ss20.glif endOfTextControl endO_fT_extC_ontrol.glif endOfTextControl.ss20 endO_fT_extC_ontrol.ss20.glif endOfTransmissionBlockControl endO_fT_ransmissionB_lockC_ontrol.glif endOfTransmissionBlockControl.ss20 endO_fT_ransmissionB_lockC_ontrol.ss20.glif endOfTransmissionControl endO_fT_ransmissionC_ontrol.glif endOfTransmissionControl.ss20 endO_fT_ransmissionC_ontrol.ss20.glif endash endash.glif endescender-cy endescender-cy.glif eng eng.glif enquiryControl enquiryC_ontrol.glif enquiryControl.ss20 enquiryC_ontrol.ss20.glif eogonek eogonek.glif eopen eopen.glif epsilon epsilon.glif epsilontonos epsilontonos.glif equal equal.glif equal_end.seq equal_end.seq.glif equal_equal.liga equal_equal.liga.glif equal_equal_equal.liga equal_equal_equal.liga.glif equal_greater_greater.liga equal_greater_greater.liga.glif equal_less_less.liga equal_less_less.liga.glif equal_middle.seq equal_middle.seq.glif equal_start.seq equal_start.seq.glif equivalence equivalence.glif er-cy er-cy.glif ereversed-cy ereversed-cy.glif es-cy es-cy.glif escapeControl escapeC_ontrol.glif escapeControl.ss20 escapeC_ontrol.ss20.glif esh esh.glif estimated estimated.glif eta eta.glif etatonos etatonos.glif eth eth.glif etilde etilde.glif eturned eturned.glif euro euro.glif eurocurrency eurocurrency.glif exclam exclam.glif exclam_colon.liga exclam_colon.liga.glif exclam_equal.liga exclam_equal.liga.glif exclam_equal_equal.liga exclam_equal_equal.liga.glif exclam_equal_middle.seq exclam_equal_middle.seq.glif exclam_exclam.liga exclam_exclam.liga.glif exclam_exclam_period.liga exclam_exclam_period.liga.glif exclam_period.liga exclam_period.liga.glif exclamdouble exclamdouble.glif exclamdown exclamdown.glif ezh ezh.glif f f.glif f.locl f.locl.glif f.salt f.salt.glif fi fi.glif fileSeparatorControl fileS_eparatorC_ontrol.glif filledRect filledR_ect.glif firsttonechinese firsttonechinese.glif fisheye fisheye.glif five five.glif five.dnom five.dnom.glif five.numr five.numr.glif fiveeighths fiveeighths.glif fiveeighths.BRACKET.500 fiveeighths.B_R_A_C_K_E_T_.500.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif formFeedControl formF_eedC_ontrol.glif formFeedControl.ss20 formF_eedC_ontrol.ss20.glif four four.glif four.dnom four.dnom.glif four.half four.half.glif four.numr four.numr.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fraction fraction.glif franc franc.glif fullBlock fullB_lock.glif fullBlock.stypo fullB_lock.stypo.glif g g.glif gamma gamma.glif gamma-latin gamma-latin.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gcommaaccent gcommaaccent.glif gdotaccent gdotaccent.glif ge-cy ge-cy.glif ge-cy.loclSRB ge-cy.loclS_R_B_.glif germandbls germandbls.glif ghestroke-cy ghestroke-cy.glif gheupturn-cy gheupturn-cy.glif gje-cy gje-cy.glif glottalstop glottalstop.glif glottalstopmod glottalstopmod.glif glottalstopreversed glottalstopreversed.glif grave grave.glif gravecomb gravecomb.glif gravecomb.case gravecomb.case.glif gravetonecomb gravetonecomb.glif greater greater.glif greater.alt greater.alt.glif greater.center greater.center.glif greater_equal.liga greater_equal.liga.glif greater_equal_end.seq greater_equal_end.seq.glif greater_equal_middle.seq greater_equal_middle.seq.glif greater_equal_start.seq greater_equal_start.seq.glif greater_greater.liga greater_greater.liga.glif greater_greater_equal.liga greater_greater_equal.liga.glif greater_greater_equal_end.seq greater_greater_equal_end.seq.glif greater_greater_equal_middle.seq greater_greater_equal_middle.seq.glif greater_greater_equal_start.seq greater_greater_equal_start.seq.glif greater_greater_greater.liga greater_greater_greater.liga.glif greater_greater_hyphen_end.seq greater_greater_hyphen_end.seq.glif greater_greater_hyphen_middle.seq greater_greater_hyphen_middle.seq.glif greater_greater_hyphen_start.seq greater_greater_hyphen_start.seq.glif greater_hyphen_end.seq greater_hyphen_end.seq.glif greater_hyphen_middle.seq greater_hyphen_middle.seq.glif greater_hyphen_start.seq greater_hyphen_start.seq.glif greaterequal greaterequal.glif groupSeparatorControl groupS_eparatorC_ontrol.glif gstroke gstroke.glif guarani guarani.glif guillemetleft guillemetleft.glif guillemetright guillemetright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif h.alt h.alt.glif ha-cy ha-cy.glif hadescender-cy hadescender-cy.glif hardsign-cy hardsign-cy.glif hbar hbar.glif hcaron hcaron.glif hcircumflex hcircumflex.glif hdotbelow hdotbelow.glif heartBlackSuit heartB_lackS_uit.glif heavyleftpointinganglebracketornament heavyleftpointinganglebracketornament.glif heavyleftpointinganglequotationmarkornament heavyleftpointinganglequotationmarkornament.glif heavyrightpointinganglebracketornament heavyrightpointinganglebracketornament.glif heavyrightpointinganglequotationmarkornament heavyrightpointinganglequotationmarkornament.glif hookabovecomb hookabovecomb.glif hookabovecomb.case hookabovecomb.case.glif horizontalBlackHexagon horizontalB_lackH_exagon.glif horizontalFillSquare horizontalF_illS_quare.glif horizontalTabulationControl horizontalT_abulationC_ontrol.glif horizontalTabulationControl.ss20 horizontalT_abulationC_ontrol.ss20.glif horizontalbar horizontalbar.glif horizontallineextension horizontallineextension.glif horncomb horncomb.glif horncomb.case horncomb.case.glif house house.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlautcomb hungarumlautcomb.glif hungarumlautcomb.case hungarumlautcomb.case.glif hyphen hyphen.glif hyphen_asciitilde.liga hyphen_asciitilde.liga.glif hyphen_end.seq hyphen_end.seq.glif hyphen_hyphen.liga hyphen_hyphen.liga.glif hyphen_hyphen_hyphen.liga hyphen_hyphen_hyphen.liga.glif hyphen_middle.seq hyphen_middle.seq.glif hyphen_start.seq hyphen_start.seq.glif hyphentwo hyphentwo.glif i i.glif i-cy i-cy.glif ia-cy ia-cy.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif idotless idotless.glif ie-cy ie-cy.glif iegrave-cy iegrave-cy.glif igrave igrave.glif ihookabove ihookabove.glif ii-cy ii-cy.glif iigrave-cy iigrave-cy.glif iishort-cy iishort-cy.glif ij ij.glif ij_acute ij_acute.glif imacron imacron.glif imacron-cy imacron-cy.glif increment increment.glif infinity infinity.glif integral integral.glif integralbt integralbt.glif integraltp integraltp.glif intersection intersection.glif inverseBullet inverseB_ullet.glif inverseWhiteCircle inverseW_hiteC_ircle.glif io-cy io-cy.glif iogonek iogonek.glif iota iota.glif iota-latin iota-latin.glif iotadieresis iotadieresis.glif iotadieresistonos iotadieresistonos.glif iotatonos iotatonos.glif itilde itilde.glif iu-cy iu-cy.glif iu-cy.loclBGR iu-cy.loclB_G_R_.glif iu-cy.loclBGR.alt iu-cy.loclB_G_R_.alt.glif j j.glif jacute jacute.glif jcaron jcaron.glif jcircumflex jcircumflex.glif jdotless jdotless.glif je-cy je-cy.glif k k.glif k.alt k.alt.glif ka-cy ka-cy.glif ka-cy.loclBGR ka-cy.loclB_G_R_.glif ka-cy.loclBGR.alt ka-cy.loclB_G_R_.alt.glif kadescender-cy kadescender-cy.glif kaiSymbol kaiS_ymbol.glif kappa kappa.glif kcommaaccent kcommaaccent.glif kdotbelow kdotbelow.glif kgreenlandic kgreenlandic.glif kip kip.glif kje-cy kje-cy.glif klinebelow klinebelow.glif l l.glif l.salt l.salt.glif lacute lacute.glif lacute.salt lacute.salt.glif lambda lambda.glif lambdastroke lambdastroke.glif largeCircle largeC_ircle.glif lari lari.glif lbar lbar.glif lbar.salt lbar.salt.glif lbelt lbelt.glif lbelt.salt lbelt.salt.glif lcaron lcaron.glif lcaron.salt lcaron.salt.glif lcommaaccent lcommaaccent.glif lcommaaccent.salt lcommaaccent.salt.glif ldot ldot.glif ldot.salt ldot.salt.glif ldotbelow ldotbelow.glif ldotbelow.salt ldotbelow.salt.glif leftArrow leftA_rrow.glif leftBlackPointer leftB_lackP_ointer.glif leftBlackSmallTriangle leftB_lackS_mallT_riangle.glif leftBlackTriangle leftB_lackT_riangle.glif leftBlock leftB_lock.glif leftBlock.stypo leftB_lock.stypo.glif leftFiveEighthsBlock leftF_iveE_ighthsB_lock.glif leftFiveEighthsBlock.stypo leftF_iveE_ighthsB_lock.stypo.glif leftHalfBlackCircle leftH_alfB_lackC_ircle.glif leftHalfBlackDiamond leftH_alfB_lackD_iamond.glif leftHalfBlackSquare leftH_alfB_lackS_quare.glif leftHalfBlackWhiteCircle leftH_alfB_lackW_hiteC_ircle.glif leftOneEighthBlock leftO_neE_ighthB_lock.glif leftOneEighthBlock.stypo leftO_neE_ighthB_lock.stypo.glif leftOneQuarterBlock leftO_neQ_uarterB_lock.glif leftOneQuarterBlock.stypo leftO_neQ_uarterB_lock.stypo.glif leftRightArrow leftR_ightA_rrow.glif leftSevenEighthsBlock leftS_evenE_ighthsB_lock.glif leftSevenEighthsBlock.stypo leftS_evenE_ighthsB_lock.stypo.glif leftThreeEighthsBlock leftT_hreeE_ighthsB_lock.glif leftThreeEighthsBlock.stypo leftT_hreeE_ighthsB_lock.stypo.glif leftThreeQuartersBlock leftT_hreeQ_uartersB_lock.glif leftThreeQuartersBlock.stypo leftT_hreeQ_uartersB_lock.stypo.glif leftWhitePointer leftW_hiteP_ointer.glif leftWhiteSmallTriangle leftW_hiteS_mallT_riangle.glif leftWhiteTriangle leftW_hiteT_riangle.glif less less.glif less.alt less.alt.glif less.center less.center.glif less_asciitilde.liga less_asciitilde.liga.glif less_asciitilde_asciitilde.liga less_asciitilde_asciitilde.liga.glif less_asciitilde_greater.liga less_asciitilde_greater.liga.glif less_asterisk.liga less_asterisk.liga.glif less_asterisk_greater.liga less_asterisk_greater.liga.glif less_bar.liga less_bar.liga.glif less_bar_bar.liga less_bar_bar.liga.glif less_bar_bar_bar.liga less_bar_bar_bar.liga.glif less_bar_greater.liga less_bar_greater.liga.glif less_dollar.liga less_dollar.liga.glif less_dollar.liga.BRACKET.600 less_dollar.liga.B_R_A_C_K_E_T_.600.glif less_dollar_greater.liga less_dollar_greater.liga.glif less_dollar_greater.liga.BRACKET.600 less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif less_equal.liga less_equal.liga.glif less_equal_end.seq less_equal_end.seq.glif less_equal_middle.seq less_equal_middle.seq.glif less_equal_start.seq less_equal_start.seq.glif less_exclam_hyphen_hyphen.liga less_exclam_hyphen_hyphen.liga.glif less_greater.liga less_greater.liga.glif less_hyphen_end.seq less_hyphen_end.seq.glif less_hyphen_middle.seq less_hyphen_middle.seq.glif less_hyphen_start.seq less_hyphen_start.seq.glif less_less.liga less_less.liga.glif less_less_equal.liga less_less_equal.liga.glif less_less_equal_end.seq less_less_equal_end.seq.glif less_less_equal_middle.seq less_less_equal_middle.seq.glif less_less_equal_start.seq less_less_equal_start.seq.glif less_less_hyphen_end.seq less_less_hyphen_end.seq.glif less_less_hyphen_middle.seq less_less_hyphen_middle.seq.glif less_less_hyphen_start.seq less_less_hyphen_start.seq.glif less_less_less.liga less_less_less.liga.glif less_plus.liga less_plus.liga.glif less_plus_greater.liga less_plus_greater.liga.glif less_slash.liga less_slash.liga.glif less_slash_greater.liga less_slash_greater.liga.glif lessequal lessequal.glif lineFeedControl lineF_eedC_ontrol.glif lineFeedControl.ss20 lineF_eedC_ontrol.ss20.glif lineseparator lineseparator.glif lira lira.glif liraTurkish liraT_urkish.glif literSign literS_ign.glif lje-cy lje-cy.glif llinebelow llinebelow.glif llinebelow.salt llinebelow.salt.glif lmiddletilde lmiddletilde.glif lmiddletilde.salt lmiddletilde.salt.glif logicalnot logicalnot.glif logicalnotReversed logicalnotR_eversed.glif longs longs.glif lowerFiveEighthsBlock lowerF_iveE_ighthsB_lock.glif lowerFiveEighthsBlock.stypo lowerF_iveE_ighthsB_lock.stypo.glif lowerHalfArc lowerH_alfA_rc.glif lowerHalfBlackWhiteCircle lowerH_alfB_lackW_hiteC_ircle.glif lowerHalfBlock lowerH_alfB_lock.glif lowerHalfBlock.stypo lowerH_alfB_lock.stypo.glif lowerHalfInverseWhiteCircle lowerH_alfI_nverseW_hiteC_ircle.glif lowerHalfWhiteSquare lowerH_alfW_hiteS_quare.glif lowerLeftArc lowerL_eftA_rc.glif lowerLeftBlackTriangle lowerL_eftB_lackT_riangle.glif lowerLeftBlock lowerL_eftB_lock.glif lowerLeftBlock.stypo lowerL_eftB_lock.stypo.glif lowerLeftHalfWhiteSquare lowerL_eftH_alfW_hiteS_quare.glif lowerLeftQuadrantWhiteCircle lowerL_eftQ_uadrantW_hiteC_ircle.glif lowerLeftTriangle lowerL_eftT_riangle.glif lowerOneEighthBlock lowerO_neE_ighthB_lock.glif lowerOneEighthBlock.stypo lowerO_neE_ighthB_lock.stypo.glif lowerOneQuarterBlock lowerO_neQ_uarterB_lock.glif lowerOneQuarterBlock.stypo lowerO_neQ_uarterB_lock.stypo.glif lowerRightArc lowerR_ightA_rc.glif lowerRightBlackTriangle lowerR_ightB_lackT_riangle.glif lowerRightBlock lowerR_ightB_lock.glif lowerRightBlock.stypo lowerR_ightB_lock.stypo.glif lowerRightDiagonalHalfBlackSquare lowerR_ightD_iagonalH_alfB_lackS_quare.glif lowerRightQuadrantWhiteCircle lowerR_ightQ_uadrantW_hiteC_ircle.glif lowerRightTriangle lowerR_ightT_riangle.glif lowerSevenEighthsBlock lowerS_evenE_ighthsB_lock.glif lowerSevenEighthsBlock.stypo lowerS_evenE_ighthsB_lock.stypo.glif lowerThreeEighthsBlock lowerT_hreeE_ighthsB_lock.glif lowerThreeEighthsBlock.stypo lowerT_hreeE_ighthsB_lock.stypo.glif lowerThreeQuartersBlock lowerT_hreeQ_uartersB_lock.glif lowerThreeQuartersBlock.stypo lowerT_hreeQ_uartersB_lock.stypo.glif lowernumeral-greek lowernumeral-greek.glif lowlinecomb lowlinecomb.glif lozenge lozenge.glif lslash lslash.glif lslash.salt lslash.salt.glif m m.glif macron macron.glif macronbelowcomb macronbelowcomb.glif macroncomb macroncomb.glif macroncomb.case macroncomb.case.glif manat manat.glif mars mars.glif mediumBlackSmallSquare mediumB_lackS_mallS_quare.glif mediumBlackSquare mediumB_lackS_quare.glif mediumWhiteSmallSquare mediumW_hiteS_mallS_quare.glif mediumWhiteSquare mediumW_hiteS_quare.glif mediumleftpointinganglebracketornament mediumleftpointinganglebracketornament.glif mediumrightpointinganglebracketornament mediumrightpointinganglebracketornament.glif micro micro.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif nacute.loclPLK nacute.loclP_L_K_.glif naira naira.glif napostrophe napostrophe.glif nbspace nbspace.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif negativeAcknowledgeControl negativeA_cknowledgeC_ontrol.glif negativeAcknowledgeControl.ss20 negativeA_cknowledgeC_ontrol.ss20.glif newlineControl newlineC_ontrol.glif nhookleft nhookleft.glif nine nine.glif nine.dnom nine.dnom.glif nine.numr nine.numr.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif nje-cy nje-cy.glif nlinebelow nlinebelow.glif nmod nmod.glif nonbreakinghyphen nonbreakinghyphen.glif note-musical note-musical.glif notedbl-musical notedbl-musical.glif notequal notequal.glif notidentical notidentical.glif ntilde ntilde.glif nu nu.glif nullControl nullC_ontrol.glif numbersign numbersign.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif numbersign_bracketleft.liga numbersign_bracketleft.liga.glif numbersign_colon.liga numbersign_colon.liga.glif numbersign_end.seq numbersign_end.seq.glif numbersign_equal.liga numbersign_equal.liga.glif numbersign_exclam.liga numbersign_exclam.liga.glif numbersign_middle.seq numbersign_middle.seq.glif numbersign_parenleft.liga numbersign_parenleft.liga.glif numbersign_question.liga numbersign_question.liga.glif numbersign_start.seq numbersign_start.seq.glif numbersign_underscore.liga numbersign_underscore.liga.glif numbersign_underscore_parenleft.liga numbersign_underscore_parenleft.liga.glif numeral-greek numeral-greek.glif numero numero.glif o o.glif o-cy o-cy.glif oacute oacute.glif oacute.loclPLK oacute.loclP_L_K_.glif obarred-cy obarred-cy.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhookabove ocircumflexhookabove.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohookabove ohookabove.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhookabove ohornhookabove.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif omacronacute omacronacute.glif omacrongrave omacrongrave.glif omega omega.glif omegatonos omegatonos.glif omicron omicron.glif omicrontonos omicrontonos.glif one one.glif one.dnom one.dnom.glif one.half one.half.glif one.numr one.numr.glif onedotenleader onedotenleader.glif oneeighth oneeighth.glif oneeighth.BRACKET.500 oneeighth.B_R_A_C_K_E_T_.500.glif onehalf onehalf.glif onehalf.BRACKET.500 onehalf.B_R_A_C_K_E_T_.500.glif oneinferior oneinferior.glif onequarter onequarter.glif onequarter.BRACKET.500 onequarter.B_R_A_C_K_E_T_.500.glif onesuperior onesuperior.glif oogonek oogonek.glif oopen oopen.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif orthogonal orthogonal.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif overline overline.glif p p.glif palochka-cy palochka-cy.glif paragraph paragraph.glif parenleft parenleft.glif parenleft_asterisk.liga parenleft_asterisk.liga.glif parenright parenright.glif partialdiff partialdiff.glif pe-cy pe-cy.glif pe-cy.loclSRB pe-cy.loclS_R_B_.glif percent percent.glif percent_percent.liga percent_percent.liga.glif period period.glif period_equal.liga period_equal.liga.glif period_hyphen.liga period_hyphen.liga.glif period_period.liga period_period.liga.glif period_period_equal.liga period_period_equal.liga.glif period_period_less.liga period_period_less.liga.glif period_period_period.liga period_period_period.liga.glif period_question.liga period_question.liga.glif periodcentered periodcentered.glif perispomenicomb perispomenicomb.glif perthousand perthousand.glif peseta peseta.glif peso peso.glif phi phi.glif pi pi.glif plus plus.glif plus_greater.liga plus_greater.liga.glif plus_plus.liga plus_plus.liga.glif plus_plus_plus.liga plus_plus_plus.liga.glif plusminus plusminus.glif prescription prescription.glif product product.glif psi psi.glif published published.glif punctuationspace punctuationspace.glif q q.glif question question.glif question_colon.liga question_colon.liga.glif question_equal.liga question_equal.liga.glif question_period.liga question_period.liga.glif question_question.liga question_question.liga.glif question_question_equal.liga question_question_equal.liga.glif questiondown questiondown.glif questiongreek questiongreek.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif r.salt r.salt.glif racute racute.glif racute.salt racute.salt.glif radical radical.glif ratio ratio.glif rcaron rcaron.glif rcaron.salt rcaron.salt.glif rcommaaccent rcommaaccent.glif rcommaaccent.salt rcommaaccent.salt.glif rdotbelow rdotbelow.glif rdotbelow.salt rdotbelow.salt.glif recordSeparatorControl recordS_eparatorC_ontrol.glif registered registered.glif replacementCharacter replacementC_haracter.glif returnsymbol returnsymbol.glif reversedRotatedFloralHeartBullet reversedR_otatedF_loralH_eartB_ullet.glif rho rho.glif rightArrow rightA_rrow.glif rightBlackPointer rightB_lackP_ointer.glif rightBlackSmallTriangle rightB_lackS_mallT_riangle.glif rightBlackTriangle rightB_lackT_riangle.glif rightBlock rightB_lock.glif rightBlock.stypo rightB_lock.stypo.glif rightHalfBlackCircle rightH_alfB_lackC_ircle.glif rightHalfBlackDiamond rightH_alfB_lackD_iamond.glif rightHalfBlackSquare rightH_alfB_lackS_quare.glif rightHalfBlackWhiteCircle rightH_alfB_lackW_hiteC_ircle.glif rightOneEighthBlock rightO_neE_ighthB_lock.glif rightOneEighthBlock.stypo rightO_neE_ighthB_lock.stypo.glif rightWhitePointer rightW_hiteP_ointer.glif rightWhiteSmallTriangle rightW_hiteS_mallT_riangle.glif rightWhiteTriangle rightW_hiteT_riangle.glif ring ring.glif ringbelowcomb ringbelowcomb.glif ringcomb ringcomb.glif ringcomb.case ringcomb.case.glif rotatedFloralHeartBullet rotatedF_loralH_eartB_ullet.glif ruble ruble.glif rupee rupee.glif rupeeIndian rupeeI_ndian.glif s s.glif s.salt s.salt.glif sacute sacute.glif sacute.loclPLK sacute.loclP_L_K_.glif sacute.salt sacute.salt.glif scaron scaron.glif scaron.salt scaron.salt.glif scedilla scedilla.glif scedilla.salt scedilla.salt.glif schwa schwa.glif schwa-cy schwa-cy.glif scircumflex scircumflex.glif scircumflex.salt scircumflex.salt.glif scommaaccent scommaaccent.glif scommaaccent.salt scommaaccent.salt.glif sdotbelow sdotbelow.glif sdotbelow.salt sdotbelow.salt.glif second second.glif section section.glif semicolon semicolon.glif semicolon_semicolon.liga semicolon_semicolon.liga.glif seven seven.glif seven.dnom seven.dnom.glif seven.numr seven.numr.glif seveneighths seveneighths.glif seveneighths.BRACKET.500 seveneighths.B_R_A_C_K_E_T_.500.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sha-cy sha-cy.glif shadedark shadedark.glif shadedark.stypo shadedark.stypo.glif shadelight shadelight.glif shadelight.stypo shadelight.stypo.glif shademedium shademedium.glif shademedium.stypo shademedium.stypo.glif shcha-cy shcha-cy.glif sheqel sheqel.glif shha-cy shha-cy.glif shha-cy.alt shha-cy.alt.glif shiftInControl shiftI_nC_ontrol.glif shiftInControl.ss20 shiftI_nC_ontrol.ss20.glif shiftOutControl shiftO_utC_ontrol.glif shiftOutControl.ss20 shiftO_utC_ontrol.ss20.glif sigma sigma.glif sigmafinal sigmafinal.glif six six.glif six.dnom six.dnom.glif six.numr six.numr.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif slash_asterisk.liga slash_asterisk.liga.glif slash_backslash.liga slash_backslash.liga.glif slash_equal_end.seq slash_equal_end.seq.glif slash_equal_middle.seq slash_equal_middle.seq.glif slash_equal_start.seq slash_equal_start.seq.glif slash_greater.liga slash_greater.liga.glif slash_slash.liga slash_slash.liga.glif slash_slash_equal_end.seq slash_slash_equal_end.seq.glif slash_slash_equal_middle.seq slash_slash_equal_middle.seq.glif slash_slash_equal_start.seq slash_slash_equal_start.seq.glif slash_slash_slash.liga slash_slash_slash.liga.glif softhyphen softhyphen.glif softsign-cy softsign-cy.glif space space.glif spaceControl spaceC_ontrol.glif spadeBlackSuit spadeB_lackS_uit.glif startOfHeadingControl startO_fH_eadingC_ontrol.glif startOfHeadingControl.ss20 startO_fH_eadingC_ontrol.ss20.glif startOfTextControl startO_fT_extC_ontrol.glif startOfTextControl.ss20 startO_fT_extC_ontrol.ss20.glif sterling sterling.glif strictlyequivalentto strictlyequivalentto.glif substituteControl substituteC_ontrol.glif substituteControl.ss20 substituteC_ontrol.ss20.glif substituteFormTwoControl substituteF_ormT_woC_ontrol.glif summation summation.glif sunWithRays sunW_ithR_ays.glif synchronousIdleControl synchronousI_dleC_ontrol.glif synchronousIdleControl.ss20 synchronousI_dleC_ontrol.ss20.glif t t.glif tau tau.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcommaaccent tcommaaccent.glif te-cy te-cy.glif te-cy.loclSRB te-cy.loclS_R_B_.glif tenge tenge.glif tesh tesh.glif theta theta.glif thetamod thetamod.glif thorn thorn.glif three three.glif three.dnom three.dnom.glif three.half three.half.glif three.numr three.numr.glif threeeighths threeeighths.glif threeeighths.BRACKET.500 threeeighths.B_R_A_C_K_E_T_.500.glif threeinferior threeinferior.glif threequarters threequarters.glif threequarters.BRACKET.500 threequarters.B_R_A_C_K_E_T_.500.glif threesuperior threesuperior.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.case tildecomb.case.glif tonos tonos.glif tonos.case tonos.case.glif topHalfBlackCircle topH_alfB_lackC_ircle.glif topHalfBlackDiamond topH_alfB_lackD_iamond.glif topHalfWhiteSquare topH_alfW_hiteS_quare.glif topRightHalfWhiteSquare topR_ightH_alfW_hiteS_quare.glif trademark trademark.glif tse-cy tse-cy.glif tshe-cy tshe-cy.glif tugrik tugrik.glif two two.glif two.dnom two.dnom.glif two.half two.half.glif two.numr two.numr.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif u-cy u-cy.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhookabove uhookabove.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhookabove uhornhookabove.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif umacron-cy umacron-cy.glif underscore underscore.glif underscore_end.seq underscore_end.seq.glif underscore_middle.seq underscore_middle.seq.glif underscore_start.seq underscore_start.seq.glif underscore_underscore.liga underscore_underscore.liga.glif underscoredbl underscoredbl.glif unitSeparatorControl unitS_eparatorC_ontrol.glif uogonek uogonek.glif upArrow upA_rrow.glif upBlackSmallTriangle upB_lackS_mallT_riangle.glif upBlackTriangle upB_lackT_riangle.glif upDashArrow upD_ashA_rrow.glif upDownArrow upD_ownA_rrow.glif upDownbaseArrow upD_ownbaseA_rrow.glif upLeftHalfBlackTriangle upL_eftH_alfB_lackT_riangle.glif upRightHalfBlackTriangle upR_ightH_alfB_lackT_riangle.glif upWhiteSmallTriangle upW_hiteS_mallT_riangle.glif upWhiteTriangle upW_hiteT_riangle.glif upWhiteTriangleWithDot upW_hiteT_riangleW_ithD_ot.glif upperHalfArc upperH_alfA_rc.glif upperHalfBlackWhiteCircle upperH_alfB_lackW_hiteC_ircle.glif upperHalfBlock upperH_alfB_lock.glif upperHalfBlock.stypo upperH_alfB_lock.stypo.glif upperHalfInverseWhiteCircle upperH_alfI_nverseW_hiteC_ircle.glif upperLeftAndLowerLeftAndLowerRightBlock upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndLowerRightBlock upperL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndUpperRightAndLowerLeftBlock upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif upperLeftAndUpperRightAndLowerLeftBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperLeftAndUpperRightAndLowerRightBlock upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif upperLeftAndUpperRightAndLowerRightBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif upperLeftArc upperL_eftA_rc.glif upperLeftBlackTriangle upperL_eftB_lackT_riangle.glif upperLeftBlock upperL_eftB_lock.glif upperLeftBlock.stypo upperL_eftB_lock.stypo.glif upperLeftDiagonalHalfBlackSquare upperL_eftD_iagonalH_alfB_lackS_quare.glif upperLeftQuadrantWhiteCircle upperL_eftQ_uadrantW_hiteC_ircle.glif upperLeftTriangle upperL_eftT_riangle.glif upperLeftWhiteCircle upperL_eftW_hiteC_ircle.glif upperOneEighthBlock upperO_neE_ighthB_lock.glif upperOneEighthBlock.stypo upperO_neE_ighthB_lock.stypo.glif upperRightAndLowerLeftAndLowerRightBlock upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperRightAndLowerLeftAndLowerRightBlock.stypo upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperRightAndLowerLeftBlock upperR_ightA_ndL_owerL_eftB_lock.glif upperRightAndLowerLeftBlock.stypo upperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperRightArc upperR_ightA_rc.glif upperRightBlackCircle upperR_ightB_lackC_ircle.glif upperRightBlackTriangle upperR_ightB_lackT_riangle.glif upperRightBlock upperR_ightB_lock.glif upperRightBlock.stypo upperR_ightB_lock.stypo.glif upperRightQuadrantWhiteCircle upperR_ightQ_uadrantW_hiteC_ircle.glif upperRightTriangle upperR_ightT_riangle.glif upperlefttolowerrightFillSquare upperlefttolowerrightF_illS_quare.glif upperrighttolowerleftFillSquare upperrighttolowerleftF_illS_quare.glif upsilon upsilon.glif upsilon-latin upsilon-latin.glif upsilondieresis upsilondieresis.glif upsilondieresistonos upsilondieresistonos.glif upsilontonos upsilontonos.glif uring uring.glif ushort-cy ushort-cy.glif ustraight-cy ustraight-cy.glif ustraightstroke-cy ustraightstroke-cy.glif utilde utilde.glif v v.glif ve-cy ve-cy.glif ve-cy.salt ve-cy.salt.glif vectorOrCrossProduct vectorO_rC_rossP_roduct.glif venus venus.glif verticalBisectingLineWhiteSquare verticalB_isectingL_ineW_hiteS_quare.glif verticalFillCircle verticalF_illC_ircle.glif verticalFillSquare verticalF_illS_quare.glif verticalTabulationControl verticalT_abulationC_ontrol.glif verticalTabulationControl.ss20 verticalT_abulationC_ontrol.ss20.glif vhook vhook.glif vturned vturned.glif w w.glif w_w_w.liga w_w_w.liga.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif whiteBullet whiteB_ullet.glif whiteCircle whiteC_ircle.glif whiteDiamond whiteD_iamond.glif whiteHexagon whiteH_exagon.glif whiteHorizontalEllipse whiteH_orizontalE_llipse.glif whiteInBlackSquare whiteI_nB_lackS_quare.glif whiteLargeSquare whiteL_argeS_quare.glif whiteLowerLeftQuadrantSquare whiteL_owerL_eftQ_uadrantS_quare.glif whiteLowerRightQuadrantSquare whiteL_owerR_ightQ_uadrantS_quare.glif whiteMediumDiamond whiteM_ediumD_iamond.glif whiteMediumLozenge whiteM_ediumL_ozenge.glif whiteParallelogram whiteP_arallelogram.glif whitePentagon whiteP_entagon.glif whiteRect whiteR_ect.glif whiteRoundedCornersSquare whiteR_oundedC_ornersS_quare.glif whiteSmallLozenge whiteS_mallL_ozenge.glif whiteSmallSquare whiteS_mallS_quare.glif whiteSmilingFace whiteS_milingF_ace.glif whiteSquare whiteS_quare.glif whiteUpperLeftQuadrantSquare whiteU_pperL_eftQ_uadrantS_quare.glif whiteUpperRightQuadrantSquare whiteU_pperR_ightQ_uadrantS_quare.glif whiteVerticalEllipse whiteV_erticalE_llipse.glif whiteVerticalRect whiteV_erticalR_ect.glif whiteVerysmallSquare whiteV_erysmallS_quare.glif wmod wmod.glif won won.glif x x.glif x.multiply x.multiply.glif xi xi.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif yen yen.glif yeru-cy yeru-cy.glif ygrave ygrave.glif yhookabove yhookabove.glif yi-cy yi-cy.glif ymacron ymacron.glif ymod ymod.glif ytilde ytilde.glif z z.glif zacute zacute.glif zacute.loclPLK zacute.loclP_L_K_.glif zcaron zcaron.glif zdotaccent zdotaccent.glif ze-cy ze-cy.glif ze-cy.loclBGR ze-cy.loclB_G_R_.glif ze-cy.salt ze-cy.salt.glif zero zero.glif zero.dnom zero.dnom.glif zero.numr zero.numr.glif zero.zero zero.zero.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif zeta zeta.glif zhe-cy zhe-cy.glif zhe-cy.loclBGR zhe-cy.loclB_G_R_.glif zhedescender-cy zhedescender-cy.glif zmod zmod.glif checkerBoardDeleteApple2 checkerB_oardD_eleteA_pple2.glif checkerBoardDeleteTrs80 checkerB_oardD_eleteT_rs80.glif checkerBoardDeleteAmstradCpc checkerB_oardD_eleteA_mstradC_pc.glif checkerBoardDeleteAmstradCpc.stypo checkerB_oardD_eleteA_mstradC_pc.stypo.glif checkerBoardFill checkerB_oardF_ill.glif checkerBoardFill.stypo checkerB_oardF_ill.stypo.glif checkerBoardFillInverse checkerB_oardF_illI_nverse.glif checkerBoardFillInverse.stypo checkerB_oardF_illI_nverse.stypo.glif blockQuadrant-UC blockQ_uadrant-UC.glif blockQuadrant-UC.stypo blockQ_uadrant-UC.stypo.glif blockQuadrant-LC blockQ_uadrant-LC.glif blockQuadrant-LC.stypo blockQ_uadrant-LC.stypo.glif blockQuadrant-ML blockQ_uadrant-ML.glif blockQuadrant-ML.stypo blockQ_uadrant-ML.stypo.glif blockQuadrant-MR blockQ_uadrant-MR.glif blockQuadrant-MR.stypo blockQ_uadrant-MR.stypo.glif blockTriangle-1 blockT_riangle-1.glif blockTriangle-1.stypo blockT_riangle-1.stypo.glif blockTriangle-2 blockT_riangle-2.glif blockTriangle-2.stypo blockT_riangle-2.stypo.glif blockTriangle-3 blockT_riangle-3.glif blockTriangle-3.stypo blockT_riangle-3.stypo.glif blockTriangle-4 blockT_riangle-4.glif blockTriangle-4.stypo blockT_riangle-4.stypo.glif blockTriangle-14 blockT_riangle-14.glif blockTriangle-14.stypo blockT_riangle-14.stypo.glif blockTriangle-23 blockT_riangle-23.glif blockTriangle-23.stypo blockT_riangle-23.stypo.glif blockTriangle-123 blockT_riangle-123.glif blockTriangle-123.stypo blockT_riangle-123.stypo.glif blockTriangle-124 blockT_riangle-124.glif blockTriangle-124.stypo blockT_riangle-124.stypo.glif blockTriangle-134 blockT_riangle-134.glif blockTriangle-134.stypo blockT_riangle-134.stypo.glif blockTriangle-234 blockT_riangle-234.glif blockTriangle-234.stypo blockT_riangle-234.stypo.glif blockCircle-UC blockC_ircle-UC.glif blockCircle-UC.stypo blockC_ircle-UC.stypo.glif blockCircle-LC blockC_ircle-LC.glif blockCircle-LC.stypo blockC_ircle-LC.stypo.glif blockCircle-ML blockC_ircle-ML.glif blockCircle-ML.stypo blockC_ircle-ML.stypo.glif blockCircle-MR blockC_ircle-MR.glif blockCircle-MR.stypo blockC_ircle-MR.stypo.glif blockCircle-1 blockC_ircle-1.glif blockCircle-1.stypo blockC_ircle-1.stypo.glif blockCircle-2 blockC_ircle-2.glif blockCircle-2.stypo blockC_ircle-2.stypo.glif blockCircle-3 blockC_ircle-3.glif blockCircle-3.stypo blockC_ircle-3.stypo.glif blockCircle-4 blockC_ircle-4.glif blockCircle-4.stypo blockC_ircle-4.stypo.glif blockSextant-1 blockS_extant-1.glif blockSextant-1.stypo blockS_extant-1.stypo.glif blockSextant-2 blockS_extant-2.glif blockSextant-2.stypo blockS_extant-2.stypo.glif blockSextant-12 blockS_extant-12.glif blockSextant-12.stypo blockS_extant-12.stypo.glif blockSextant-3 blockS_extant-3.glif blockSextant-3.stypo blockS_extant-3.stypo.glif blockSextant-13 blockS_extant-13.glif blockSextant-13.stypo blockS_extant-13.stypo.glif blockSextant-23 blockS_extant-23.glif blockSextant-23.stypo blockS_extant-23.stypo.glif blockSextant-123 blockS_extant-123.glif blockSextant-123.stypo blockS_extant-123.stypo.glif blockSextant-4 blockS_extant-4.glif blockSextant-4.stypo blockS_extant-4.stypo.glif blockSextant-14 blockS_extant-14.glif blockSextant-14.stypo blockS_extant-14.stypo.glif blockSextant-24 blockS_extant-24.glif blockSextant-24.stypo blockS_extant-24.stypo.glif blockSextant-124 blockS_extant-124.glif blockSextant-124.stypo blockS_extant-124.stypo.glif blockSextant-34 blockS_extant-34.glif blockSextant-34.stypo blockS_extant-34.stypo.glif blockSextant-134 blockS_extant-134.glif blockSextant-134.stypo blockS_extant-134.stypo.glif blockSextant-234 blockS_extant-234.glif blockSextant-234.stypo blockS_extant-234.stypo.glif blockSextant-1234 blockS_extant-1234.glif blockSextant-1234.stypo blockS_extant-1234.stypo.glif blockSextant-5 blockS_extant-5.glif blockSextant-5.stypo blockS_extant-5.stypo.glif blockSextant-15 blockS_extant-15.glif blockSextant-15.stypo blockS_extant-15.stypo.glif blockSextant-25 blockS_extant-25.glif blockSextant-25.stypo blockS_extant-25.stypo.glif blockSextant-125 blockS_extant-125.glif blockSextant-125.stypo blockS_extant-125.stypo.glif blockSextant-35 blockS_extant-35.glif blockSextant-35.stypo blockS_extant-35.stypo.glif blockSextant-235 blockS_extant-235.glif blockSextant-235.stypo blockS_extant-235.stypo.glif blockSextant-1235 blockS_extant-1235.glif blockSextant-1235.stypo blockS_extant-1235.stypo.glif blockSextant-45 blockS_extant-45.glif blockSextant-45.stypo blockS_extant-45.stypo.glif blockSextant-145 blockS_extant-145.glif blockSextant-145.stypo blockS_extant-145.stypo.glif blockSextant-245 blockS_extant-245.glif blockSextant-245.stypo blockS_extant-245.stypo.glif blockSextant-1245 blockS_extant-1245.glif blockSextant-1245.stypo blockS_extant-1245.stypo.glif blockSextant-345 blockS_extant-345.glif blockSextant-345.stypo blockS_extant-345.stypo.glif blockSextant-1345 blockS_extant-1345.glif blockSextant-1345.stypo blockS_extant-1345.stypo.glif blockSextant-2345 blockS_extant-2345.glif blockSextant-2345.stypo blockS_extant-2345.stypo.glif blockSextant-12345 blockS_extant-12345.glif blockSextant-12345.stypo blockS_extant-12345.stypo.glif blockSextant-6 blockS_extant-6.glif blockSextant-6.stypo blockS_extant-6.stypo.glif blockSextant-16 blockS_extant-16.glif blockSextant-16.stypo blockS_extant-16.stypo.glif blockSextant-26 blockS_extant-26.glif blockSextant-26.stypo blockS_extant-26.stypo.glif blockSextant-126 blockS_extant-126.glif blockSextant-126.stypo blockS_extant-126.stypo.glif blockSextant-36 blockS_extant-36.glif blockSextant-36.stypo blockS_extant-36.stypo.glif blockSextant-136 blockS_extant-136.glif blockSextant-136.stypo blockS_extant-136.stypo.glif blockSextant-236 blockS_extant-236.glif blockSextant-236.stypo blockS_extant-236.stypo.glif blockSextant-1236 blockS_extant-1236.glif blockSextant-1236.stypo blockS_extant-1236.stypo.glif blockSextant-46 blockS_extant-46.glif blockSextant-46.stypo blockS_extant-46.stypo.glif blockSextant-146 blockS_extant-146.glif blockSextant-146.stypo blockS_extant-146.stypo.glif blockSextant-1246 blockS_extant-1246.glif blockSextant-1246.stypo blockS_extant-1246.stypo.glif blockSextant-346 blockS_extant-346.glif blockSextant-346.stypo blockS_extant-346.stypo.glif blockSextant-1346 blockS_extant-1346.glif blockSextant-1346.stypo blockS_extant-1346.stypo.glif blockSextant-2346 blockS_extant-2346.glif blockSextant-2346.stypo blockS_extant-2346.stypo.glif blockSextant-12346 blockS_extant-12346.glif blockSextant-12346.stypo blockS_extant-12346.stypo.glif blockSextant-56 blockS_extant-56.glif blockSextant-56.stypo blockS_extant-56.stypo.glif blockSextant-156 blockS_extant-156.glif blockSextant-156.stypo blockS_extant-156.stypo.glif blockSextant-256 blockS_extant-256.glif blockSextant-256.stypo blockS_extant-256.stypo.glif blockSextant-1256 blockS_extant-1256.glif blockSextant-1256.stypo blockS_extant-1256.stypo.glif blockSextant-356 blockS_extant-356.glif blockSextant-356.stypo blockS_extant-356.stypo.glif blockSextant-1356 blockS_extant-1356.glif blockSextant-1356.stypo blockS_extant-1356.stypo.glif blockSextant-2356 blockS_extant-2356.glif blockSextant-2356.stypo blockS_extant-2356.stypo.glif blockSextant-12356 blockS_extant-12356.glif blockSextant-12356.stypo blockS_extant-12356.stypo.glif blockSextant-456 blockS_extant-456.glif blockSextant-456.stypo blockS_extant-456.stypo.glif blockSextant-1456 blockS_extant-1456.glif blockSextant-1456.stypo blockS_extant-1456.stypo.glif blockSextant-2456 blockS_extant-2456.glif blockSextant-2456.stypo blockS_extant-2456.stypo.glif blockSextant-12456 blockS_extant-12456.glif blockSextant-12456.stypo blockS_extant-12456.stypo.glif blockSextant-3456 blockS_extant-3456.glif blockSextant-3456.stypo blockS_extant-3456.stypo.glif blockSextant-13456 blockS_extant-13456.glif blockSextant-13456.stypo blockS_extant-13456.stypo.glif blockSextant-23456 blockS_extant-23456.glif blockSextant-23456.stypo blockS_extant-23456.stypo.glif blockDiagonal-1FB3C blockD_iagonal-1FB3C.glif blockDiagonal-1FB3C.stypo blockD_iagonal-1FB3C.stypo.glif blockDiagonal-1FB3D blockD_iagonal-1FB3D.glif blockDiagonal-1FB3D.stypo blockD_iagonal-1FB3D.stypo.glif blockDiagonal-1FB3E blockD_iagonal-1FB3E.glif blockDiagonal-1FB3E.stypo blockD_iagonal-1FB3E.stypo.glif blockDiagonal-1FB3F blockD_iagonal-1FB3F.glif blockDiagonal-1FB3F.stypo blockD_iagonal-1FB3F.stypo.glif blockDiagonal-1FB40 blockD_iagonal-1FB40.glif blockDiagonal-1FB40.stypo blockD_iagonal-1FB40.stypo.glif blockDiagonal-1FB41 blockD_iagonal-1FB41.glif blockDiagonal-1FB41.stypo blockD_iagonal-1FB41.stypo.glif blockDiagonal-1FB42 blockD_iagonal-1FB42.glif blockDiagonal-1FB42.stypo blockD_iagonal-1FB42.stypo.glif blockDiagonal-1FB43 blockD_iagonal-1FB43.glif blockDiagonal-1FB43.stypo blockD_iagonal-1FB43.stypo.glif blockDiagonal-1FB44 blockD_iagonal-1FB44.glif blockDiagonal-1FB44.stypo blockD_iagonal-1FB44.stypo.glif blockDiagonal-1FB45 blockD_iagonal-1FB45.glif blockDiagonal-1FB45.stypo blockD_iagonal-1FB45.stypo.glif blockDiagonal-1FB46 blockD_iagonal-1FB46.glif blockDiagonal-1FB46.stypo blockD_iagonal-1FB46.stypo.glif blockDiagonal-1FB47 blockD_iagonal-1FB47.glif blockDiagonal-1FB47.stypo blockD_iagonal-1FB47.stypo.glif blockDiagonal-1FB48 blockD_iagonal-1FB48.glif blockDiagonal-1FB48.stypo blockD_iagonal-1FB48.stypo.glif blockDiagonal-1FB49 blockD_iagonal-1FB49.glif blockDiagonal-1FB49.stypo blockD_iagonal-1FB49.stypo.glif blockDiagonal-1FB4A blockD_iagonal-1FB4A.glif blockDiagonal-1FB4A.stypo blockD_iagonal-1FB4A.stypo.glif blockDiagonal-1FB4B blockD_iagonal-1FB4B.glif blockDiagonal-1FB4B.stypo blockD_iagonal-1FB4B.stypo.glif blockDiagonal-1FB4C blockD_iagonal-1FB4C.glif blockDiagonal-1FB4C.stypo blockD_iagonal-1FB4C.stypo.glif blockDiagonal-1FB4D blockD_iagonal-1FB4D.glif blockDiagonal-1FB4D.stypo blockD_iagonal-1FB4D.stypo.glif blockDiagonal-1FB4E blockD_iagonal-1FB4E.glif blockDiagonal-1FB4E.stypo blockD_iagonal-1FB4E.stypo.glif blockDiagonal-1FB4F blockD_iagonal-1FB4F.glif blockDiagonal-1FB4F.stypo blockD_iagonal-1FB4F.stypo.glif blockDiagonal-1FB50 blockD_iagonal-1FB50.glif blockDiagonal-1FB50.stypo blockD_iagonal-1FB50.stypo.glif blockDiagonal-1FB51 blockD_iagonal-1FB51.glif blockDiagonal-1FB51.stypo blockD_iagonal-1FB51.stypo.glif blockDiagonal-1FB52 blockD_iagonal-1FB52.glif blockDiagonal-1FB52.stypo blockD_iagonal-1FB52.stypo.glif blockDiagonal-1FB53 blockD_iagonal-1FB53.glif blockDiagonal-1FB53.stypo blockD_iagonal-1FB53.stypo.glif blockDiagonal-1FB54 blockD_iagonal-1FB54.glif blockDiagonal-1FB54.stypo blockD_iagonal-1FB54.stypo.glif blockDiagonal-1FB55 blockD_iagonal-1FB55.glif blockDiagonal-1FB55.stypo blockD_iagonal-1FB55.stypo.glif blockDiagonal-1FB56 blockD_iagonal-1FB56.glif blockDiagonal-1FB56.stypo blockD_iagonal-1FB56.stypo.glif blockDiagonal-1FB57 blockD_iagonal-1FB57.glif blockDiagonal-1FB57.stypo blockD_iagonal-1FB57.stypo.glif blockDiagonal-1FB58 blockD_iagonal-1FB58.glif blockDiagonal-1FB58.stypo blockD_iagonal-1FB58.stypo.glif blockDiagonal-1FB59 blockD_iagonal-1FB59.glif blockDiagonal-1FB59.stypo blockD_iagonal-1FB59.stypo.glif blockDiagonal-1FB5A blockD_iagonal-1FB5A.glif blockDiagonal-1FB5A.stypo blockD_iagonal-1FB5A.stypo.glif blockDiagonal-1FB5B blockD_iagonal-1FB5B.glif blockDiagonal-1FB5B.stypo blockD_iagonal-1FB5B.stypo.glif blockDiagonal-1FB5C blockD_iagonal-1FB5C.glif blockDiagonal-1FB5C.stypo blockD_iagonal-1FB5C.stypo.glif blockDiagonal-1FB5D blockD_iagonal-1FB5D.glif blockDiagonal-1FB5D.stypo blockD_iagonal-1FB5D.stypo.glif blockDiagonal-1FB5E blockD_iagonal-1FB5E.glif blockDiagonal-1FB5E.stypo blockD_iagonal-1FB5E.stypo.glif blockDiagonal-1FB5F blockD_iagonal-1FB5F.glif blockDiagonal-1FB5F.stypo blockD_iagonal-1FB5F.stypo.glif blockDiagonal-1FB60 blockD_iagonal-1FB60.glif blockDiagonal-1FB60.stypo blockD_iagonal-1FB60.stypo.glif blockDiagonal-1FB61 blockD_iagonal-1FB61.glif blockDiagonal-1FB61.stypo blockD_iagonal-1FB61.stypo.glif blockDiagonal-1FB62 blockD_iagonal-1FB62.glif blockDiagonal-1FB62.stypo blockD_iagonal-1FB62.stypo.glif blockDiagonal-1FB63 blockD_iagonal-1FB63.glif blockDiagonal-1FB63.stypo blockD_iagonal-1FB63.stypo.glif blockDiagonal-1FB64 blockD_iagonal-1FB64.glif blockDiagonal-1FB64.stypo blockD_iagonal-1FB64.stypo.glif blockDiagonal-1FB65 blockD_iagonal-1FB65.glif blockDiagonal-1FB65.stypo blockD_iagonal-1FB65.stypo.glif blockDiagonal-1FB66 blockD_iagonal-1FB66.glif blockDiagonal-1FB66.stypo blockD_iagonal-1FB66.stypo.glif blockDiagonal-1FB67 blockD_iagonal-1FB67.glif blockDiagonal-1FB67.stypo blockD_iagonal-1FB67.stypo.glif blockOctant-1 blockO_ctant-1.glif blockOctant-1.stypo blockO_ctant-1.stypo.glif blockOctant-2 blockO_ctant-2.glif blockOctant-2.stypo blockO_ctant-2.stypo.glif blockOctant-12 blockO_ctant-12.glif blockOctant-12.stypo blockO_ctant-12.stypo.glif blockOctant-3 blockO_ctant-3.glif blockOctant-3.stypo blockO_ctant-3.stypo.glif blockOctant-23 blockO_ctant-23.glif blockOctant-23.stypo blockO_ctant-23.stypo.glif blockOctant-123 blockO_ctant-123.glif blockOctant-123.stypo blockO_ctant-123.stypo.glif blockOctant-4 blockO_ctant-4.glif blockOctant-4.stypo blockO_ctant-4.stypo.glif blockOctant-14 blockO_ctant-14.glif blockOctant-14.stypo blockO_ctant-14.stypo.glif blockOctant-124 blockO_ctant-124.glif blockOctant-124.stypo blockO_ctant-124.stypo.glif blockOctant-34 blockO_ctant-34.glif blockOctant-34.stypo blockO_ctant-34.stypo.glif blockOctant-134 blockO_ctant-134.glif blockOctant-134.stypo blockO_ctant-134.stypo.glif blockOctant-234 blockO_ctant-234.glif blockOctant-234.stypo blockO_ctant-234.stypo.glif blockOctant-5 blockO_ctant-5.glif blockOctant-5.stypo blockO_ctant-5.stypo.glif blockOctant-15 blockO_ctant-15.glif blockOctant-15.stypo blockO_ctant-15.stypo.glif blockOctant-25 blockO_ctant-25.glif blockOctant-25.stypo blockO_ctant-25.stypo.glif blockOctant-125 blockO_ctant-125.glif blockOctant-125.stypo blockO_ctant-125.stypo.glif blockOctant-135 blockO_ctant-135.glif blockOctant-135.stypo blockO_ctant-135.stypo.glif blockOctant-235 blockO_ctant-235.glif blockOctant-235.stypo blockO_ctant-235.stypo.glif blockOctant-1235 blockO_ctant-1235.glif blockOctant-1235.stypo blockO_ctant-1235.stypo.glif blockOctant-45 blockO_ctant-45.glif blockOctant-45.stypo blockO_ctant-45.stypo.glif blockOctant-145 blockO_ctant-145.glif blockOctant-145.stypo blockO_ctant-145.stypo.glif blockOctant-245 blockO_ctant-245.glif blockOctant-245.stypo blockO_ctant-245.stypo.glif blockOctant-1245 blockO_ctant-1245.glif blockOctant-1245.stypo blockO_ctant-1245.stypo.glif blockOctant-345 blockO_ctant-345.glif blockOctant-345.stypo blockO_ctant-345.stypo.glif blockOctant-1345 blockO_ctant-1345.glif blockOctant-1345.stypo blockO_ctant-1345.stypo.glif blockOctant-2345 blockO_ctant-2345.glif blockOctant-2345.stypo blockO_ctant-2345.stypo.glif blockOctant-12345 blockO_ctant-12345.glif blockOctant-12345.stypo blockO_ctant-12345.stypo.glif blockOctant-6 blockO_ctant-6.glif blockOctant-6.stypo blockO_ctant-6.stypo.glif blockOctant-16 blockO_ctant-16.glif blockOctant-16.stypo blockO_ctant-16.stypo.glif blockOctant-26 blockO_ctant-26.glif blockOctant-26.stypo blockO_ctant-26.stypo.glif blockOctant-126 blockO_ctant-126.glif blockOctant-126.stypo blockO_ctant-126.stypo.glif blockOctant-36 blockO_ctant-36.glif blockOctant-36.stypo blockO_ctant-36.stypo.glif blockOctant-136 blockO_ctant-136.glif blockOctant-136.stypo blockO_ctant-136.stypo.glif blockOctant-236 blockO_ctant-236.glif blockOctant-236.stypo blockO_ctant-236.stypo.glif blockOctant-1236 blockO_ctant-1236.glif blockOctant-1236.stypo blockO_ctant-1236.stypo.glif blockOctant-146 blockO_ctant-146.glif blockOctant-146.stypo blockO_ctant-146.stypo.glif blockOctant-246 blockO_ctant-246.glif blockOctant-246.stypo blockO_ctant-246.stypo.glif blockOctant-1246 blockO_ctant-1246.glif blockOctant-1246.stypo blockO_ctant-1246.stypo.glif blockOctant-346 blockO_ctant-346.glif blockOctant-346.stypo blockO_ctant-346.stypo.glif blockOctant-1346 blockO_ctant-1346.glif blockOctant-1346.stypo blockO_ctant-1346.stypo.glif blockOctant-2346 blockO_ctant-2346.glif blockOctant-2346.stypo blockO_ctant-2346.stypo.glif blockOctant-12346 blockO_ctant-12346.glif blockOctant-12346.stypo blockO_ctant-12346.stypo.glif blockOctant-56 blockO_ctant-56.glif blockOctant-56.stypo blockO_ctant-56.stypo.glif blockOctant-156 blockO_ctant-156.glif blockOctant-156.stypo blockO_ctant-156.stypo.glif blockOctant-256 blockO_ctant-256.glif blockOctant-256.stypo blockO_ctant-256.stypo.glif blockOctant-1256 blockO_ctant-1256.glif blockOctant-1256.stypo blockO_ctant-1256.stypo.glif blockOctant-356 blockO_ctant-356.glif blockOctant-356.stypo blockO_ctant-356.stypo.glif blockOctant-1356 blockO_ctant-1356.glif blockOctant-1356.stypo blockO_ctant-1356.stypo.glif blockOctant-2356 blockO_ctant-2356.glif blockOctant-2356.stypo blockO_ctant-2356.stypo.glif blockOctant-12356 blockO_ctant-12356.glif blockOctant-12356.stypo blockO_ctant-12356.stypo.glif blockOctant-456 blockO_ctant-456.glif blockOctant-456.stypo blockO_ctant-456.stypo.glif blockOctant-1456 blockO_ctant-1456.glif blockOctant-1456.stypo blockO_ctant-1456.stypo.glif blockOctant-2456 blockO_ctant-2456.glif blockOctant-2456.stypo blockO_ctant-2456.stypo.glif blockOctant-12456 blockO_ctant-12456.glif blockOctant-12456.stypo blockO_ctant-12456.stypo.glif blockOctant-3456 blockO_ctant-3456.glif blockOctant-3456.stypo blockO_ctant-3456.stypo.glif blockOctant-13456 blockO_ctant-13456.glif blockOctant-13456.stypo blockO_ctant-13456.stypo.glif blockOctant-23456 blockO_ctant-23456.glif blockOctant-23456.stypo blockO_ctant-23456.stypo.glif blockOctant-123456 blockO_ctant-123456.glif blockOctant-123456.stypo blockO_ctant-123456.stypo.glif blockOctant-7 blockO_ctant-7.glif blockOctant-7.stypo blockO_ctant-7.stypo.glif blockOctant-17 blockO_ctant-17.glif blockOctant-17.stypo blockO_ctant-17.stypo.glif blockOctant-27 blockO_ctant-27.glif blockOctant-27.stypo blockO_ctant-27.stypo.glif blockOctant-127 blockO_ctant-127.glif blockOctant-127.stypo blockO_ctant-127.stypo.glif blockOctant-37 blockO_ctant-37.glif blockOctant-37.stypo blockO_ctant-37.stypo.glif blockOctant-137 blockO_ctant-137.glif blockOctant-137.stypo blockO_ctant-137.stypo.glif blockOctant-237 blockO_ctant-237.glif blockOctant-237.stypo blockO_ctant-237.stypo.glif blockOctant-1237 blockO_ctant-1237.glif blockOctant-1237.stypo blockO_ctant-1237.stypo.glif blockOctant-47 blockO_ctant-47.glif blockOctant-47.stypo blockO_ctant-47.stypo.glif blockOctant-147 blockO_ctant-147.glif blockOctant-147.stypo blockO_ctant-147.stypo.glif blockOctant-247 blockO_ctant-247.glif blockOctant-247.stypo blockO_ctant-247.stypo.glif blockOctant-1247 blockO_ctant-1247.glif blockOctant-1247.stypo blockO_ctant-1247.stypo.glif blockOctant-347 blockO_ctant-347.glif blockOctant-347.stypo blockO_ctant-347.stypo.glif blockOctant-1347 blockO_ctant-1347.glif blockOctant-1347.stypo blockO_ctant-1347.stypo.glif blockOctant-2347 blockO_ctant-2347.glif blockOctant-2347.stypo blockO_ctant-2347.stypo.glif blockOctant-12347 blockO_ctant-12347.glif blockOctant-12347.stypo blockO_ctant-12347.stypo.glif blockOctant-157 blockO_ctant-157.glif blockOctant-157.stypo blockO_ctant-157.stypo.glif blockOctant-257 blockO_ctant-257.glif blockOctant-257.stypo blockO_ctant-257.stypo.glif blockOctant-1257 blockO_ctant-1257.glif blockOctant-1257.stypo blockO_ctant-1257.stypo.glif blockOctant-357 blockO_ctant-357.glif blockOctant-357.stypo blockO_ctant-357.stypo.glif blockOctant-2357 blockO_ctant-2357.glif blockOctant-2357.stypo blockO_ctant-2357.stypo.glif blockOctant-12357 blockO_ctant-12357.glif blockOctant-12357.stypo blockO_ctant-12357.stypo.glif blockOctant-457 blockO_ctant-457.glif blockOctant-457.stypo blockO_ctant-457.stypo.glif blockOctant-1457 blockO_ctant-1457.glif blockOctant-1457.stypo blockO_ctant-1457.stypo.glif blockOctant-12457 blockO_ctant-12457.glif blockOctant-12457.stypo blockO_ctant-12457.stypo.glif blockOctant-3457 blockO_ctant-3457.glif blockOctant-3457.stypo blockO_ctant-3457.stypo.glif blockOctant-13457 blockO_ctant-13457.glif blockOctant-13457.stypo blockO_ctant-13457.stypo.glif blockOctant-23457 blockO_ctant-23457.glif blockOctant-23457.stypo blockO_ctant-23457.stypo.glif blockOctant-67 blockO_ctant-67.glif blockOctant-67.stypo blockO_ctant-67.stypo.glif blockOctant-167 blockO_ctant-167.glif blockOctant-167.stypo blockO_ctant-167.stypo.glif blockOctant-267 blockO_ctant-267.glif blockOctant-267.stypo blockO_ctant-267.stypo.glif blockOctant-1267 blockO_ctant-1267.glif blockOctant-1267.stypo blockO_ctant-1267.stypo.glif blockOctant-367 blockO_ctant-367.glif blockOctant-367.stypo blockO_ctant-367.stypo.glif blockOctant-1367 blockO_ctant-1367.glif blockOctant-1367.stypo blockO_ctant-1367.stypo.glif blockOctant-2367 blockO_ctant-2367.glif blockOctant-2367.stypo blockO_ctant-2367.stypo.glif blockOctant-12367 blockO_ctant-12367.glif blockOctant-12367.stypo blockO_ctant-12367.stypo.glif blockOctant-467 blockO_ctant-467.glif blockOctant-467.stypo blockO_ctant-467.stypo.glif blockOctant-1467 blockO_ctant-1467.glif blockOctant-1467.stypo blockO_ctant-1467.stypo.glif blockOctant-2467 blockO_ctant-2467.glif blockOctant-2467.stypo blockO_ctant-2467.stypo.glif blockOctant-12467 blockO_ctant-12467.glif blockOctant-12467.stypo blockO_ctant-12467.stypo.glif blockOctant-3467 blockO_ctant-3467.glif blockOctant-3467.stypo blockO_ctant-3467.stypo.glif blockOctant-13467 blockO_ctant-13467.glif blockOctant-13467.stypo blockO_ctant-13467.stypo.glif blockOctant-23467 blockO_ctant-23467.glif blockOctant-23467.stypo blockO_ctant-23467.stypo.glif blockOctant-123467 blockO_ctant-123467.glif blockOctant-123467.stypo blockO_ctant-123467.stypo.glif blockOctant-567 blockO_ctant-567.glif blockOctant-567.stypo blockO_ctant-567.stypo.glif blockOctant-1567 blockO_ctant-1567.glif blockOctant-1567.stypo blockO_ctant-1567.stypo.glif blockOctant-2567 blockO_ctant-2567.glif blockOctant-2567.stypo blockO_ctant-2567.stypo.glif blockOctant-12567 blockO_ctant-12567.glif blockOctant-12567.stypo blockO_ctant-12567.stypo.glif blockOctant-3567 blockO_ctant-3567.glif blockOctant-3567.stypo blockO_ctant-3567.stypo.glif blockOctant-13567 blockO_ctant-13567.glif blockOctant-13567.stypo blockO_ctant-13567.stypo.glif blockOctant-23567 blockO_ctant-23567.glif blockOctant-23567.stypo blockO_ctant-23567.stypo.glif blockOctant-123567 blockO_ctant-123567.glif blockOctant-123567.stypo blockO_ctant-123567.stypo.glif blockOctant-4567 blockO_ctant-4567.glif blockOctant-4567.stypo blockO_ctant-4567.stypo.glif blockOctant-14567 blockO_ctant-14567.glif blockOctant-14567.stypo blockO_ctant-14567.stypo.glif blockOctant-24567 blockO_ctant-24567.glif blockOctant-24567.stypo blockO_ctant-24567.stypo.glif blockOctant-124567 blockO_ctant-124567.glif blockOctant-124567.stypo blockO_ctant-124567.stypo.glif blockOctant-34567 blockO_ctant-34567.glif blockOctant-34567.stypo blockO_ctant-34567.stypo.glif blockOctant-134567 blockO_ctant-134567.glif blockOctant-134567.stypo blockO_ctant-134567.stypo.glif blockOctant-234567 blockO_ctant-234567.glif blockOctant-234567.stypo blockO_ctant-234567.stypo.glif blockOctant-1234567 blockO_ctant-1234567.glif blockOctant-1234567.stypo blockO_ctant-1234567.stypo.glif blockOctant-8 blockO_ctant-8.glif blockOctant-8.stypo blockO_ctant-8.stypo.glif blockOctant-18 blockO_ctant-18.glif blockOctant-18.stypo blockO_ctant-18.stypo.glif blockOctant-28 blockO_ctant-28.glif blockOctant-28.stypo blockO_ctant-28.stypo.glif blockOctant-128 blockO_ctant-128.glif blockOctant-128.stypo blockO_ctant-128.stypo.glif blockOctant-38 blockO_ctant-38.glif blockOctant-38.stypo blockO_ctant-38.stypo.glif blockOctant-138 blockO_ctant-138.glif blockOctant-138.stypo blockO_ctant-138.stypo.glif blockOctant-238 blockO_ctant-238.glif blockOctant-238.stypo blockO_ctant-238.stypo.glif blockOctant-1238 blockO_ctant-1238.glif blockOctant-1238.stypo blockO_ctant-1238.stypo.glif blockOctant-48 blockO_ctant-48.glif blockOctant-48.stypo blockO_ctant-48.stypo.glif blockOctant-148 blockO_ctant-148.glif blockOctant-148.stypo blockO_ctant-148.stypo.glif blockOctant-248 blockO_ctant-248.glif blockOctant-248.stypo blockO_ctant-248.stypo.glif blockOctant-1248 blockO_ctant-1248.glif blockOctant-1248.stypo blockO_ctant-1248.stypo.glif blockOctant-348 blockO_ctant-348.glif blockOctant-348.stypo blockO_ctant-348.stypo.glif blockOctant-1348 blockO_ctant-1348.glif blockOctant-1348.stypo blockO_ctant-1348.stypo.glif blockOctant-2348 blockO_ctant-2348.glif blockOctant-2348.stypo blockO_ctant-2348.stypo.glif blockOctant-12348 blockO_ctant-12348.glif blockOctant-12348.stypo blockO_ctant-12348.stypo.glif blockOctant-58 blockO_ctant-58.glif blockOctant-58.stypo blockO_ctant-58.stypo.glif blockOctant-158 blockO_ctant-158.glif blockOctant-158.stypo blockO_ctant-158.stypo.glif blockOctant-258 blockO_ctant-258.glif blockOctant-258.stypo blockO_ctant-258.stypo.glif blockOctant-1258 blockO_ctant-1258.glif blockOctant-1258.stypo blockO_ctant-1258.stypo.glif blockOctant-358 blockO_ctant-358.glif blockOctant-358.stypo blockO_ctant-358.stypo.glif blockOctant-1358 blockO_ctant-1358.glif blockOctant-1358.stypo blockO_ctant-1358.stypo.glif blockOctant-2358 blockO_ctant-2358.glif blockOctant-2358.stypo blockO_ctant-2358.stypo.glif blockOctant-12358 blockO_ctant-12358.glif blockOctant-12358.stypo blockO_ctant-12358.stypo.glif blockOctant-458 blockO_ctant-458.glif blockOctant-458.stypo blockO_ctant-458.stypo.glif blockOctant-1458 blockO_ctant-1458.glif blockOctant-1458.stypo blockO_ctant-1458.stypo.glif blockOctant-2458 blockO_ctant-2458.glif blockOctant-2458.stypo blockO_ctant-2458.stypo.glif blockOctant-12458 blockO_ctant-12458.glif blockOctant-12458.stypo blockO_ctant-12458.stypo.glif blockOctant-3458 blockO_ctant-3458.glif blockOctant-3458.stypo blockO_ctant-3458.stypo.glif blockOctant-13458 blockO_ctant-13458.glif blockOctant-13458.stypo blockO_ctant-13458.stypo.glif blockOctant-23458 blockO_ctant-23458.glif blockOctant-23458.stypo blockO_ctant-23458.stypo.glif blockOctant-123458 blockO_ctant-123458.glif blockOctant-123458.stypo blockO_ctant-123458.stypo.glif blockOctant-168 blockO_ctant-168.glif blockOctant-168.stypo blockO_ctant-168.stypo.glif blockOctant-268 blockO_ctant-268.glif blockOctant-268.stypo blockO_ctant-268.stypo.glif blockOctant-1268 blockO_ctant-1268.glif blockOctant-1268.stypo blockO_ctant-1268.stypo.glif blockOctant-368 blockO_ctant-368.glif blockOctant-368.stypo blockO_ctant-368.stypo.glif blockOctant-2368 blockO_ctant-2368.glif blockOctant-2368.stypo blockO_ctant-2368.stypo.glif blockOctant-12368 blockO_ctant-12368.glif blockOctant-12368.stypo blockO_ctant-12368.stypo.glif blockOctant-468 blockO_ctant-468.glif blockOctant-468.stypo blockO_ctant-468.stypo.glif blockOctant-1468 blockO_ctant-1468.glif blockOctant-1468.stypo blockO_ctant-1468.stypo.glif blockOctant-12468 blockO_ctant-12468.glif blockOctant-12468.stypo blockO_ctant-12468.stypo.glif blockOctant-3468 blockO_ctant-3468.glif blockOctant-3468.stypo blockO_ctant-3468.stypo.glif blockOctant-13468 blockO_ctant-13468.glif blockOctant-13468.stypo blockO_ctant-13468.stypo.glif blockOctant-23468 blockO_ctant-23468.glif blockOctant-23468.stypo blockO_ctant-23468.stypo.glif blockOctant-568 blockO_ctant-568.glif blockOctant-568.stypo blockO_ctant-568.stypo.glif blockOctant-1568 blockO_ctant-1568.glif blockOctant-1568.stypo blockO_ctant-1568.stypo.glif blockOctant-2568 blockO_ctant-2568.glif blockOctant-2568.stypo blockO_ctant-2568.stypo.glif blockOctant-12568 blockO_ctant-12568.glif blockOctant-12568.stypo blockO_ctant-12568.stypo.glif blockOctant-3568 blockO_ctant-3568.glif blockOctant-3568.stypo blockO_ctant-3568.stypo.glif blockOctant-13568 blockO_ctant-13568.glif blockOctant-13568.stypo blockO_ctant-13568.stypo.glif blockOctant-23568 blockO_ctant-23568.glif blockOctant-23568.stypo blockO_ctant-23568.stypo.glif blockOctant-123568 blockO_ctant-123568.glif blockOctant-123568.stypo blockO_ctant-123568.stypo.glif blockOctant-4568 blockO_ctant-4568.glif blockOctant-4568.stypo blockO_ctant-4568.stypo.glif blockOctant-14568 blockO_ctant-14568.glif blockOctant-14568.stypo blockO_ctant-14568.stypo.glif blockOctant-24568 blockO_ctant-24568.glif blockOctant-24568.stypo blockO_ctant-24568.stypo.glif blockOctant-124568 blockO_ctant-124568.glif blockOctant-124568.stypo blockO_ctant-124568.stypo.glif blockOctant-34568 blockO_ctant-34568.glif blockOctant-34568.stypo blockO_ctant-34568.stypo.glif blockOctant-134568 blockO_ctant-134568.glif blockOctant-134568.stypo blockO_ctant-134568.stypo.glif blockOctant-234568 blockO_ctant-234568.glif blockOctant-234568.stypo blockO_ctant-234568.stypo.glif blockOctant-1234568 blockO_ctant-1234568.glif blockOctant-1234568.stypo blockO_ctant-1234568.stypo.glif blockOctant-178 blockO_ctant-178.glif blockOctant-178.stypo blockO_ctant-178.stypo.glif blockOctant-278 blockO_ctant-278.glif blockOctant-278.stypo blockO_ctant-278.stypo.glif blockOctant-1278 blockO_ctant-1278.glif blockOctant-1278.stypo blockO_ctant-1278.stypo.glif blockOctant-378 blockO_ctant-378.glif blockOctant-378.stypo blockO_ctant-378.stypo.glif blockOctant-1378 blockO_ctant-1378.glif blockOctant-1378.stypo blockO_ctant-1378.stypo.glif blockOctant-2378 blockO_ctant-2378.glif blockOctant-2378.stypo blockO_ctant-2378.stypo.glif blockOctant-12378 blockO_ctant-12378.glif blockOctant-12378.stypo blockO_ctant-12378.stypo.glif blockOctant-478 blockO_ctant-478.glif blockOctant-478.stypo blockO_ctant-478.stypo.glif blockOctant-1478 blockO_ctant-1478.glif blockOctant-1478.stypo blockO_ctant-1478.stypo.glif blockOctant-2478 blockO_ctant-2478.glif blockOctant-2478.stypo blockO_ctant-2478.stypo.glif blockOctant-12478 blockO_ctant-12478.glif blockOctant-12478.stypo blockO_ctant-12478.stypo.glif blockOctant-3478 blockO_ctant-3478.glif blockOctant-3478.stypo blockO_ctant-3478.stypo.glif blockOctant-13478 blockO_ctant-13478.glif blockOctant-13478.stypo blockO_ctant-13478.stypo.glif blockOctant-23478 blockO_ctant-23478.glif blockOctant-23478.stypo blockO_ctant-23478.stypo.glif blockOctant-123478 blockO_ctant-123478.glif blockOctant-123478.stypo blockO_ctant-123478.stypo.glif blockOctant-578 blockO_ctant-578.glif blockOctant-578.stypo blockO_ctant-578.stypo.glif blockOctant-1578 blockO_ctant-1578.glif blockOctant-1578.stypo blockO_ctant-1578.stypo.glif blockOctant-2578 blockO_ctant-2578.glif blockOctant-2578.stypo blockO_ctant-2578.stypo.glif blockOctant-12578 blockO_ctant-12578.glif blockOctant-12578.stypo blockO_ctant-12578.stypo.glif blockOctant-3578 blockO_ctant-3578.glif blockOctant-3578.stypo blockO_ctant-3578.stypo.glif blockOctant-13578 blockO_ctant-13578.glif blockOctant-13578.stypo blockO_ctant-13578.stypo.glif blockOctant-23578 blockO_ctant-23578.glif blockOctant-23578.stypo blockO_ctant-23578.stypo.glif blockOctant-123578 blockO_ctant-123578.glif blockOctant-123578.stypo blockO_ctant-123578.stypo.glif blockOctant-4578 blockO_ctant-4578.glif blockOctant-4578.stypo blockO_ctant-4578.stypo.glif blockOctant-14578 blockO_ctant-14578.glif blockOctant-14578.stypo blockO_ctant-14578.stypo.glif blockOctant-24578 blockO_ctant-24578.glif blockOctant-24578.stypo blockO_ctant-24578.stypo.glif blockOctant-124578 blockO_ctant-124578.glif blockOctant-124578.stypo blockO_ctant-124578.stypo.glif blockOctant-34578 blockO_ctant-34578.glif blockOctant-34578.stypo blockO_ctant-34578.stypo.glif blockOctant-134578 blockO_ctant-134578.glif blockOctant-134578.stypo blockO_ctant-134578.stypo.glif blockOctant-234578 blockO_ctant-234578.glif blockOctant-234578.stypo blockO_ctant-234578.stypo.glif blockOctant-1234578 blockO_ctant-1234578.glif blockOctant-1234578.stypo blockO_ctant-1234578.stypo.glif blockOctant-678 blockO_ctant-678.glif blockOctant-678.stypo blockO_ctant-678.stypo.glif blockOctant-1678 blockO_ctant-1678.glif blockOctant-1678.stypo blockO_ctant-1678.stypo.glif blockOctant-2678 blockO_ctant-2678.glif blockOctant-2678.stypo blockO_ctant-2678.stypo.glif blockOctant-12678 blockO_ctant-12678.glif blockOctant-12678.stypo blockO_ctant-12678.stypo.glif blockOctant-3678 blockO_ctant-3678.glif blockOctant-3678.stypo blockO_ctant-3678.stypo.glif blockOctant-13678 blockO_ctant-13678.glif blockOctant-13678.stypo blockO_ctant-13678.stypo.glif blockOctant-23678 blockO_ctant-23678.glif blockOctant-23678.stypo blockO_ctant-23678.stypo.glif blockOctant-123678 blockO_ctant-123678.glif blockOctant-123678.stypo blockO_ctant-123678.stypo.glif blockOctant-4678 blockO_ctant-4678.glif blockOctant-4678.stypo blockO_ctant-4678.stypo.glif blockOctant-14678 blockO_ctant-14678.glif blockOctant-14678.stypo blockO_ctant-14678.stypo.glif blockOctant-24678 blockO_ctant-24678.glif blockOctant-24678.stypo blockO_ctant-24678.stypo.glif blockOctant-124678 blockO_ctant-124678.glif blockOctant-124678.stypo blockO_ctant-124678.stypo.glif blockOctant-34678 blockO_ctant-34678.glif blockOctant-34678.stypo blockO_ctant-34678.stypo.glif blockOctant-134678 blockO_ctant-134678.glif blockOctant-134678.stypo blockO_ctant-134678.stypo.glif blockOctant-234678 blockO_ctant-234678.glif blockOctant-234678.stypo blockO_ctant-234678.stypo.glif blockOctant-1234678 blockO_ctant-1234678.glif blockOctant-1234678.stypo blockO_ctant-1234678.stypo.glif blockOctant-15678 blockO_ctant-15678.glif blockOctant-15678.stypo blockO_ctant-15678.stypo.glif blockOctant-25678 blockO_ctant-25678.glif blockOctant-25678.stypo blockO_ctant-25678.stypo.glif blockOctant-125678 blockO_ctant-125678.glif blockOctant-125678.stypo blockO_ctant-125678.stypo.glif blockOctant-35678 blockO_ctant-35678.glif blockOctant-35678.stypo blockO_ctant-35678.stypo.glif blockOctant-235678 blockO_ctant-235678.glif blockOctant-235678.stypo blockO_ctant-235678.stypo.glif blockOctant-1235678 blockO_ctant-1235678.glif blockOctant-1235678.stypo blockO_ctant-1235678.stypo.glif blockOctant-45678 blockO_ctant-45678.glif blockOctant-45678.stypo blockO_ctant-45678.stypo.glif blockOctant-145678 blockO_ctant-145678.glif blockOctant-145678.stypo blockO_ctant-145678.stypo.glif blockOctant-1245678 blockO_ctant-1245678.glif blockOctant-1245678.stypo blockO_ctant-1245678.stypo.glif blockOctant-1345678 blockO_ctant-1345678.glif blockOctant-1345678.stypo blockO_ctant-1345678.stypo.glif blockOctant-2345678 blockO_ctant-2345678.glif blockOctant-2345678.stypo blockO_ctant-2345678.stypo.glif blockSedecimant-1 blockS_edecimant-1.glif blockSedecimant-1.stypo blockS_edecimant-1.stypo.glif blockSedecimant-2 blockS_edecimant-2.glif blockSedecimant-2.stypo blockS_edecimant-2.stypo.glif blockSedecimant-3 blockS_edecimant-3.glif blockSedecimant-3.stypo blockS_edecimant-3.stypo.glif blockSedecimant-4 blockS_edecimant-4.glif blockSedecimant-4.stypo blockS_edecimant-4.stypo.glif blockSedecimant-5 blockS_edecimant-5.glif blockSedecimant-5.stypo blockS_edecimant-5.stypo.glif blockSedecimant-6 blockS_edecimant-6.glif blockSedecimant-6.stypo blockS_edecimant-6.stypo.glif blockSedecimant-7 blockS_edecimant-7.glif blockSedecimant-7.stypo blockS_edecimant-7.stypo.glif blockSedecimant-8 blockS_edecimant-8.glif blockSedecimant-8.stypo blockS_edecimant-8.stypo.glif blockSedecimant-9 blockS_edecimant-9.glif blockSedecimant-9.stypo blockS_edecimant-9.stypo.glif blockSedecimant-A blockS_edecimant-A.glif blockSedecimant-A.stypo blockS_edecimant-A.stypo.glif blockSedecimant-B blockS_edecimant-B.glif blockSedecimant-B.stypo blockS_edecimant-B.stypo.glif blockSedecimant-C blockS_edecimant-C.glif blockSedecimant-C.stypo blockS_edecimant-C.stypo.glif blockSedecimant-D blockS_edecimant-D.glif blockSedecimant-D.stypo blockS_edecimant-D.stypo.glif blockSedecimant-E blockS_edecimant-E.glif blockSedecimant-E.stypo blockS_edecimant-E.stypo.glif blockSedecimant-F blockS_edecimant-F.glif blockSedecimant-F.stypo blockS_edecimant-F.stypo.glif blockSedecimant-G blockS_edecimant-G.glif blockSedecimant-G.stypo blockS_edecimant-G.stypo.glif blockSedecimant-EFG blockS_edecimant-EFG.glif blockSedecimant-EFG.stypo blockS_edecimant-EFG.stypo.glif blockSedecimant-DEF blockS_edecimant-DEF.glif blockSedecimant-DEF.stypo blockS_edecimant-DEF.stypo.glif blockSedecimant-9D blockS_edecimant-9D.glif blockSedecimant-9D.stypo blockS_edecimant-9D.stypo.glif blockSedecimant-59D blockS_edecimant-59D.glif blockSedecimant-59D.stypo blockS_edecimant-59D.stypo.glif blockSedecimant-159 blockS_edecimant-159.glif blockSedecimant-159.stypo blockS_edecimant-159.stypo.glif blockSedecimant-15 blockS_edecimant-15.glif blockSedecimant-15.stypo blockS_edecimant-15.stypo.glif blockSedecimant-123 blockS_edecimant-123.glif blockSedecimant-123.stypo blockS_edecimant-123.stypo.glif blockSedecimant-234 blockS_edecimant-234.glif blockSedecimant-234.stypo blockS_edecimant-234.stypo.glif blockSedecimant-48 blockS_edecimant-48.glif blockSedecimant-48.stypo blockS_edecimant-48.stypo.glif blockSedecimant-48C blockS_edecimant-48C.glif blockSedecimant-48C.stypo blockS_edecimant-48C.stypo.glif blockSedecimant-8CG blockS_edecimant-8CG.glif blockSedecimant-8CG.stypo blockS_edecimant-8CG.stypo.glif blockSedecimant-CG blockS_edecimant-CG.glif blockSedecimant-CG.stypo blockS_edecimant-CG.stypo.glif verticalOneEighthBlock-2 verticalO_neE_ighthB_lock-2.glif verticalOneEighthBlock-2.stypo verticalO_neE_ighthB_lock-2.stypo.glif verticalOneEighthBlock-3 verticalO_neE_ighthB_lock-3.glif verticalOneEighthBlock-3.stypo verticalO_neE_ighthB_lock-3.stypo.glif verticalOneEighthBlock-4 verticalO_neE_ighthB_lock-4.glif verticalOneEighthBlock-4.stypo verticalO_neE_ighthB_lock-4.stypo.glif verticalOneEighthBlock-5 verticalO_neE_ighthB_lock-5.glif verticalOneEighthBlock-5.stypo verticalO_neE_ighthB_lock-5.stypo.glif verticalOneEighthBlock-6 verticalO_neE_ighthB_lock-6.glif verticalOneEighthBlock-6.stypo verticalO_neE_ighthB_lock-6.stypo.glif verticalOneEighthBlock-7 verticalO_neE_ighthB_lock-7.glif verticalOneEighthBlock-7.stypo verticalO_neE_ighthB_lock-7.stypo.glif horizontalOneEightBlock-2 horizontalO_neE_ightB_lock-2.glif horizontalOneEightBlock-2.stypo horizontalO_neE_ightB_lock-2.stypo.glif horizontalOneEightBlock-3 horizontalO_neE_ightB_lock-3.glif horizontalOneEightBlock-3.stypo horizontalO_neE_ightB_lock-3.stypo.glif horizontalOneEightBlock-4 horizontalO_neE_ightB_lock-4.glif horizontalOneEightBlock-4.stypo horizontalO_neE_ightB_lock-4.stypo.glif horizontalOneEightBlock-5 horizontalO_neE_ightB_lock-5.glif horizontalOneEightBlock-5.stypo horizontalO_neE_ightB_lock-5.stypo.glif horizontalOneEightBlock-6 horizontalO_neE_ightB_lock-6.glif horizontalOneEightBlock-6.stypo horizontalO_neE_ightB_lock-6.stypo.glif horizontalOneEightBlock-7 horizontalO_neE_ightB_lock-7.glif horizontalOneEightBlock-7.stypo horizontalO_neE_ightB_lock-7.stypo.glif leftAndLowerOneEightBlock leftA_ndL_owerO_neE_ightB_lock.glif leftAndLowerOneEightBlock.stypo leftA_ndL_owerO_neE_ightB_lock.stypo.glif leftAndUpperOneEightBlock leftA_ndU_pperO_neE_ightB_lock.glif leftAndUpperOneEightBlock.stypo leftA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndUpperOneEightBlock rightA_ndU_pperO_neE_ightB_lock.glif rightAndUpperOneEightBlock.stypo rightA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndLowerOneEightBlock rightA_ndL_owerO_neE_ightB_lock.glif rightAndLowerOneEightBlock.stypo rightA_ndL_owerO_neE_ightB_lock.stypo.glif upperAndLowerOneEightBlock upperA_ndL_owerO_neE_ightB_lock.glif upperAndLowerOneEightBlock.stypo upperA_ndL_owerO_neE_ightB_lock.stypo.glif upperThreeEighthsBlock upperT_hreeE_ighthsB_lock.glif upperThreeEighthsBlock.stypo upperT_hreeE_ighthsB_lock.stypo.glif upperFiveEighthsBlock upperF_iveE_ighthsB_lock.glif upperFiveEighthsBlock.stypo upperF_iveE_ighthsB_lock.stypo.glif upperSevenEighthsBlock upperS_evenE_ighthsB_lock.glif upperSevenEighthsBlock.stypo upperS_evenE_ighthsB_lock.stypo.glif rightOneQuarterBlock rightO_neQ_uarterB_lock.glif rightOneQuarterBlock.stypo rightO_neQ_uarterB_lock.stypo.glif rightThreeEighthsBlock rightT_hreeE_ighthsB_lock.glif rightThreeEighthsBlock.stypo rightT_hreeE_ighthsB_lock.stypo.glif rightFiveEighthsBlock rightF_iveE_ighthsB_lock.glif rightFiveEighthsBlock.stypo rightF_iveE_ighthsB_lock.stypo.glif rightThreeQuartersBlock rightT_hreeQ_uartersB_lock.glif rightThreeQuartersBlock.stypo rightT_hreeQ_uartersB_lock.stypo.glif rightSevenEighthsBlock rightS_evenE_ighthsB_lock.glif rightSevenEighthsBlock.stypo rightS_evenE_ighthsB_lock.stypo.glif leftTwoThirdsBlock leftT_woT_hirdsB_lock.glif leftTwoThirdsBlock.stypo leftT_woT_hirdsB_lock.stypo.glif leftOneThirdBlock leftO_neT_hirdB_lock.glif leftOneThirdBlock.stypo leftO_neT_hirdB_lock.stypo.glif heavyHorizontalFill heavyH_orizontalF_ill.glif heavyHorizontalFill.stypo heavyH_orizontalF_ill.stypo.glif blockSeparatedQuadrant-1 blockS_eparatedQ_uadrant-1.glif blockSeparatedQuadrant-1.stypo blockS_eparatedQ_uadrant-1.stypo.glif blockSeparatedQuadrant-2 blockS_eparatedQ_uadrant-2.glif blockSeparatedQuadrant-2.stypo blockS_eparatedQ_uadrant-2.stypo.glif blockSeparatedQuadrant-12 blockS_eparatedQ_uadrant-12.glif blockSeparatedQuadrant-12.stypo blockS_eparatedQ_uadrant-12.stypo.glif blockSeparatedQuadrant-3 blockS_eparatedQ_uadrant-3.glif blockSeparatedQuadrant-3.stypo blockS_eparatedQ_uadrant-3.stypo.glif blockSeparatedQuadrant-13 blockS_eparatedQ_uadrant-13.glif blockSeparatedQuadrant-13.stypo blockS_eparatedQ_uadrant-13.stypo.glif blockSeparatedQuadrant-23 blockS_eparatedQ_uadrant-23.glif blockSeparatedQuadrant-23.stypo blockS_eparatedQ_uadrant-23.stypo.glif blockSeparatedQuadrant-123 blockS_eparatedQ_uadrant-123.glif blockSeparatedQuadrant-123.stypo blockS_eparatedQ_uadrant-123.stypo.glif blockSeparatedQuadrant-4 blockS_eparatedQ_uadrant-4.glif blockSeparatedQuadrant-4.stypo blockS_eparatedQ_uadrant-4.stypo.glif blockSeparatedQuadrant-14 blockS_eparatedQ_uadrant-14.glif blockSeparatedQuadrant-14.stypo blockS_eparatedQ_uadrant-14.stypo.glif blockSeparatedQuadrant-24 blockS_eparatedQ_uadrant-24.glif blockSeparatedQuadrant-24.stypo blockS_eparatedQ_uadrant-24.stypo.glif blockSeparatedQuadrant-124 blockS_eparatedQ_uadrant-124.glif blockSeparatedQuadrant-124.stypo blockS_eparatedQ_uadrant-124.stypo.glif blockSeparatedQuadrant-34 blockS_eparatedQ_uadrant-34.glif blockSeparatedQuadrant-34.stypo blockS_eparatedQ_uadrant-34.stypo.glif blockSeparatedQuadrant-134 blockS_eparatedQ_uadrant-134.glif blockSeparatedQuadrant-134.stypo blockS_eparatedQ_uadrant-134.stypo.glif blockSeparatedQuadrant-234 blockS_eparatedQ_uadrant-234.glif blockSeparatedQuadrant-234.stypo blockS_eparatedQ_uadrant-234.stypo.glif blockSeparatedQuadrant-1234 blockS_eparatedQ_uadrant-1234.glif blockSeparatedQuadrant-1234.stypo blockS_eparatedQ_uadrant-1234.stypo.glif blockSeparatedSextant-1 blockS_eparatedS_extant-1.glif blockSeparatedSextant-1.stypo blockS_eparatedS_extant-1.stypo.glif blockSeparatedSextant-2 blockS_eparatedS_extant-2.glif blockSeparatedSextant-2.stypo blockS_eparatedS_extant-2.stypo.glif blockSeparatedSextant-12 blockS_eparatedS_extant-12.glif blockSeparatedSextant-12.stypo blockS_eparatedS_extant-12.stypo.glif blockSeparatedSextant-3 blockS_eparatedS_extant-3.glif blockSeparatedSextant-3.stypo blockS_eparatedS_extant-3.stypo.glif blockSeparatedSextant-13 blockS_eparatedS_extant-13.glif blockSeparatedSextant-13.stypo blockS_eparatedS_extant-13.stypo.glif blockSeparatedSextant-23 blockS_eparatedS_extant-23.glif blockSeparatedSextant-23.stypo blockS_eparatedS_extant-23.stypo.glif blockSeparatedSextant-123 blockS_eparatedS_extant-123.glif blockSeparatedSextant-123.stypo blockS_eparatedS_extant-123.stypo.glif blockSeparatedSextant-4 blockS_eparatedS_extant-4.glif blockSeparatedSextant-4.stypo blockS_eparatedS_extant-4.stypo.glif blockSeparatedSextant-14 blockS_eparatedS_extant-14.glif blockSeparatedSextant-14.stypo blockS_eparatedS_extant-14.stypo.glif blockSeparatedSextant-24 blockS_eparatedS_extant-24.glif blockSeparatedSextant-24.stypo blockS_eparatedS_extant-24.stypo.glif blockSeparatedSextant-124 blockS_eparatedS_extant-124.glif blockSeparatedSextant-124.stypo blockS_eparatedS_extant-124.stypo.glif blockSeparatedSextant-34 blockS_eparatedS_extant-34.glif blockSeparatedSextant-34.stypo blockS_eparatedS_extant-34.stypo.glif blockSeparatedSextant-134 blockS_eparatedS_extant-134.glif blockSeparatedSextant-134.stypo blockS_eparatedS_extant-134.stypo.glif blockSeparatedSextant-234 blockS_eparatedS_extant-234.glif blockSeparatedSextant-234.stypo blockS_eparatedS_extant-234.stypo.glif blockSeparatedSextant-1234 blockS_eparatedS_extant-1234.glif blockSeparatedSextant-1234.stypo blockS_eparatedS_extant-1234.stypo.glif blockSeparatedSextant-5 blockS_eparatedS_extant-5.glif blockSeparatedSextant-5.stypo blockS_eparatedS_extant-5.stypo.glif blockSeparatedSextant-15 blockS_eparatedS_extant-15.glif blockSeparatedSextant-15.stypo blockS_eparatedS_extant-15.stypo.glif blockSeparatedSextant-25 blockS_eparatedS_extant-25.glif blockSeparatedSextant-25.stypo blockS_eparatedS_extant-25.stypo.glif blockSeparatedSextant-125 blockS_eparatedS_extant-125.glif blockSeparatedSextant-125.stypo blockS_eparatedS_extant-125.stypo.glif blockSeparatedSextant-35 blockS_eparatedS_extant-35.glif blockSeparatedSextant-35.stypo blockS_eparatedS_extant-35.stypo.glif blockSeparatedSextant-135 blockS_eparatedS_extant-135.glif blockSeparatedSextant-135.stypo blockS_eparatedS_extant-135.stypo.glif blockSeparatedSextant-235 blockS_eparatedS_extant-235.glif blockSeparatedSextant-235.stypo blockS_eparatedS_extant-235.stypo.glif blockSeparatedSextant-1235 blockS_eparatedS_extant-1235.glif blockSeparatedSextant-1235.stypo blockS_eparatedS_extant-1235.stypo.glif blockSeparatedSextant-45 blockS_eparatedS_extant-45.glif blockSeparatedSextant-45.stypo blockS_eparatedS_extant-45.stypo.glif blockSeparatedSextant-145 blockS_eparatedS_extant-145.glif blockSeparatedSextant-145.stypo blockS_eparatedS_extant-145.stypo.glif blockSeparatedSextant-245 blockS_eparatedS_extant-245.glif blockSeparatedSextant-245.stypo blockS_eparatedS_extant-245.stypo.glif blockSeparatedSextant-1245 blockS_eparatedS_extant-1245.glif blockSeparatedSextant-1245.stypo blockS_eparatedS_extant-1245.stypo.glif blockSeparatedSextant-345 blockS_eparatedS_extant-345.glif blockSeparatedSextant-345.stypo blockS_eparatedS_extant-345.stypo.glif blockSeparatedSextant-1345 blockS_eparatedS_extant-1345.glif blockSeparatedSextant-1345.stypo blockS_eparatedS_extant-1345.stypo.glif blockSeparatedSextant-2345 blockS_eparatedS_extant-2345.glif blockSeparatedSextant-2345.stypo blockS_eparatedS_extant-2345.stypo.glif blockSeparatedSextant-12345 blockS_eparatedS_extant-12345.glif blockSeparatedSextant-12345.stypo blockS_eparatedS_extant-12345.stypo.glif blockSeparatedSextant-6 blockS_eparatedS_extant-6.glif blockSeparatedSextant-6.stypo blockS_eparatedS_extant-6.stypo.glif blockSeparatedSextant-16 blockS_eparatedS_extant-16.glif blockSeparatedSextant-16.stypo blockS_eparatedS_extant-16.stypo.glif blockSeparatedSextant-26 blockS_eparatedS_extant-26.glif blockSeparatedSextant-26.stypo blockS_eparatedS_extant-26.stypo.glif blockSeparatedSextant-126 blockS_eparatedS_extant-126.glif blockSeparatedSextant-126.stypo blockS_eparatedS_extant-126.stypo.glif blockSeparatedSextant-36 blockS_eparatedS_extant-36.glif blockSeparatedSextant-36.stypo blockS_eparatedS_extant-36.stypo.glif blockSeparatedSextant-136 blockS_eparatedS_extant-136.glif blockSeparatedSextant-136.stypo blockS_eparatedS_extant-136.stypo.glif blockSeparatedSextant-236 blockS_eparatedS_extant-236.glif blockSeparatedSextant-236.stypo blockS_eparatedS_extant-236.stypo.glif blockSeparatedSextant-1236 blockS_eparatedS_extant-1236.glif blockSeparatedSextant-1236.stypo blockS_eparatedS_extant-1236.stypo.glif blockSeparatedSextant-46 blockS_eparatedS_extant-46.glif blockSeparatedSextant-46.stypo blockS_eparatedS_extant-46.stypo.glif blockSeparatedSextant-146 blockS_eparatedS_extant-146.glif blockSeparatedSextant-146.stypo blockS_eparatedS_extant-146.stypo.glif blockSeparatedSextant-246 blockS_eparatedS_extant-246.glif blockSeparatedSextant-246.stypo blockS_eparatedS_extant-246.stypo.glif blockSeparatedSextant-1246 blockS_eparatedS_extant-1246.glif blockSeparatedSextant-1246.stypo blockS_eparatedS_extant-1246.stypo.glif blockSeparatedSextant-346 blockS_eparatedS_extant-346.glif blockSeparatedSextant-346.stypo blockS_eparatedS_extant-346.stypo.glif blockSeparatedSextant-1346 blockS_eparatedS_extant-1346.glif blockSeparatedSextant-1346.stypo blockS_eparatedS_extant-1346.stypo.glif blockSeparatedSextant-2346 blockS_eparatedS_extant-2346.glif blockSeparatedSextant-2346.stypo blockS_eparatedS_extant-2346.stypo.glif blockSeparatedSextant-12346 blockS_eparatedS_extant-12346.glif blockSeparatedSextant-12346.stypo blockS_eparatedS_extant-12346.stypo.glif blockSeparatedSextant-56 blockS_eparatedS_extant-56.glif blockSeparatedSextant-56.stypo blockS_eparatedS_extant-56.stypo.glif blockSeparatedSextant-156 blockS_eparatedS_extant-156.glif blockSeparatedSextant-156.stypo blockS_eparatedS_extant-156.stypo.glif blockSeparatedSextant-256 blockS_eparatedS_extant-256.glif blockSeparatedSextant-256.stypo blockS_eparatedS_extant-256.stypo.glif blockSeparatedSextant-1256 blockS_eparatedS_extant-1256.glif blockSeparatedSextant-1256.stypo blockS_eparatedS_extant-1256.stypo.glif blockSeparatedSextant-356 blockS_eparatedS_extant-356.glif blockSeparatedSextant-356.stypo blockS_eparatedS_extant-356.stypo.glif blockSeparatedSextant-1356 blockS_eparatedS_extant-1356.glif blockSeparatedSextant-1356.stypo blockS_eparatedS_extant-1356.stypo.glif blockSeparatedSextant-2356 blockS_eparatedS_extant-2356.glif blockSeparatedSextant-2356.stypo blockS_eparatedS_extant-2356.stypo.glif blockSeparatedSextant-12356 blockS_eparatedS_extant-12356.glif blockSeparatedSextant-12356.stypo blockS_eparatedS_extant-12356.stypo.glif blockSeparatedSextant-456 blockS_eparatedS_extant-456.glif blockSeparatedSextant-456.stypo blockS_eparatedS_extant-456.stypo.glif blockSeparatedSextant-1456 blockS_eparatedS_extant-1456.glif blockSeparatedSextant-1456.stypo blockS_eparatedS_extant-1456.stypo.glif blockSeparatedSextant-2456 blockS_eparatedS_extant-2456.glif blockSeparatedSextant-2456.stypo blockS_eparatedS_extant-2456.stypo.glif blockSeparatedSextant-12456 blockS_eparatedS_extant-12456.glif blockSeparatedSextant-12456.stypo blockS_eparatedS_extant-12456.stypo.glif blockSeparatedSextant-3456 blockS_eparatedS_extant-3456.glif blockSeparatedSextant-3456.stypo blockS_eparatedS_extant-3456.stypo.glif blockSeparatedSextant-13456 blockS_eparatedS_extant-13456.glif blockSeparatedSextant-13456.stypo blockS_eparatedS_extant-13456.stypo.glif blockSeparatedSextant-23456 blockS_eparatedS_extant-23456.glif blockSeparatedSextant-23456.stypo blockS_eparatedS_extant-23456.stypo.glif blockSeparatedSextant-123456 blockS_eparatedS_extant-123456.glif blockSeparatedSextant-123456.stypo blockS_eparatedS_extant-123456.stypo.glif segmentedDigit0 segmentedD_igit0.glif segmentedDigit1 segmentedD_igit1.glif segmentedDigit2 segmentedD_igit2.glif segmentedDigit3 segmentedD_igit3.glif segmentedDigit4 segmentedD_igit4.glif segmentedDigit5 segmentedD_igit5.glif segmentedDigit6 segmentedD_igit6.glif segmentedDigit7 segmentedD_igit7.glif segmentedDigit8 segmentedD_igit8.glif segmentedDigit9 segmentedD_igit9.glif largeType-1CE1A largeT_ype-1CE1A.glif largeType-1CE1A.stypo largeT_ype-1CE1A.stypo.glif largeType-1CE1B largeT_ype-1CE1B.glif largeType-1CE1B.stypo largeT_ype-1CE1B.stypo.glif largeType-1CE1C largeT_ype-1CE1C.glif largeType-1CE1C.stypo largeT_ype-1CE1C.stypo.glif largeType-1CE1D largeT_ype-1CE1D.glif largeType-1CE1D.stypo largeT_ype-1CE1D.stypo.glif largeType-1CE1E largeT_ype-1CE1E.glif largeType-1CE1E.stypo largeT_ype-1CE1E.stypo.glif largeType-1CE1F largeT_ype-1CE1F.glif largeType-1CE1F.stypo largeT_ype-1CE1F.stypo.glif largeType-1CE20 largeT_ype-1CE20.glif largeType-1CE20.stypo largeT_ype-1CE20.stypo.glif largeType-1CE21 largeT_ype-1CE21.glif largeType-1CE21.stypo largeT_ype-1CE21.stypo.glif largeType-1CE22 largeT_ype-1CE22.glif largeType-1CE22.stypo largeT_ype-1CE22.stypo.glif largeType-1CE23 largeT_ype-1CE23.glif largeType-1CE23.stypo largeT_ype-1CE23.stypo.glif largeType-1CE24 largeT_ype-1CE24.glif largeType-1CE24.stypo largeT_ype-1CE24.stypo.glif largeType-1CE25 largeT_ype-1CE25.glif largeType-1CE25.stypo largeT_ype-1CE25.stypo.glif largeType-1CE26 largeT_ype-1CE26.glif largeType-1CE26.stypo largeT_ype-1CE26.stypo.glif largeType-1CE27 largeT_ype-1CE27.glif largeType-1CE27.stypo largeT_ype-1CE27.stypo.glif largeType-1CE28 largeT_ype-1CE28.glif largeType-1CE28.stypo largeT_ype-1CE28.stypo.glif largeType-1CE29 largeT_ype-1CE29.glif largeType-1CE29.stypo largeT_ype-1CE29.stypo.glif largeType-1CE2A largeT_ype-1CE2A.glif largeType-1CE2A.stypo largeT_ype-1CE2A.stypo.glif largeType-1CE2B largeT_ype-1CE2B.glif largeType-1CE2B.stypo largeT_ype-1CE2B.stypo.glif largeType-1CE2C largeT_ype-1CE2C.glif largeType-1CE2C.stypo largeT_ype-1CE2C.stypo.glif largeType-1CE2D largeT_ype-1CE2D.glif largeType-1CE2D.stypo largeT_ype-1CE2D.stypo.glif largeType-1CE2E largeT_ype-1CE2E.glif largeType-1CE2E.stypo largeT_ype-1CE2E.stypo.glif largeType-1CE2F largeT_ype-1CE2F.glif largeType-1CE2F.stypo largeT_ype-1CE2F.stypo.glif largeType-1CE30 largeT_ype-1CE30.glif largeType-1CE30.stypo largeT_ype-1CE30.stypo.glif largeType-1CE31 largeT_ype-1CE31.glif largeType-1CE31.stypo largeT_ype-1CE31.stypo.glif largeType-1CE32 largeT_ype-1CE32.glif largeType-1CE32.stypo largeT_ype-1CE32.stypo.glif largeType-1CE33 largeT_ype-1CE33.glif largeType-1CE33.stypo largeT_ype-1CE33.stypo.glif largeType-1CE34 largeT_ype-1CE34.glif largeType-1CE34.stypo largeT_ype-1CE34.stypo.glif largeType-1CE35 largeT_ype-1CE35.glif largeType-1CE35.stypo largeT_ype-1CE35.stypo.glif largeType-1CE36 largeT_ype-1CE36.glif largeType-1CE36.stypo largeT_ype-1CE36.stypo.glif largeType-1CE37 largeT_ype-1CE37.glif largeType-1CE37.stypo largeT_ype-1CE37.stypo.glif largeType-1CE38 largeT_ype-1CE38.glif largeType-1CE38.stypo largeT_ype-1CE38.stypo.glif largeType-1CE39 largeT_ype-1CE39.glif largeType-1CE39.stypo largeT_ype-1CE39.stypo.glif largeType-1CE3A largeT_ype-1CE3A.glif largeType-1CE3A.stypo largeT_ype-1CE3A.stypo.glif largeType-1CE3B largeT_ype-1CE3B.glif largeType-1CE3B.stypo largeT_ype-1CE3B.stypo.glif largeType-1CE3C largeT_ype-1CE3C.glif largeType-1CE3C.stypo largeT_ype-1CE3C.stypo.glif largeType-1CE3D largeT_ype-1CE3D.glif largeType-1CE3D.stypo largeT_ype-1CE3D.stypo.glif largeType-1CE3E largeT_ype-1CE3E.glif largeType-1CE3E.stypo largeT_ype-1CE3E.stypo.glif largeType-1CE3F largeT_ype-1CE3F.glif largeType-1CE3F.stypo largeT_ype-1CE3F.stypo.glif largeType-1CE40 largeT_ype-1CE40.glif largeType-1CE40.stypo largeT_ype-1CE40.stypo.glif largeType-1CE41 largeT_ype-1CE41.glif largeType-1CE41.stypo largeT_ype-1CE41.stypo.glif largeType-1CE42 largeT_ype-1CE42.glif largeType-1CE42.stypo largeT_ype-1CE42.stypo.glif largeType-1CE43 largeT_ype-1CE43.glif largeType-1CE43.stypo largeT_ype-1CE43.stypo.glif largeType-1CE44 largeT_ype-1CE44.glif largeType-1CE44.stypo largeT_ype-1CE44.stypo.glif largeType-1CE45 largeT_ype-1CE45.glif largeType-1CE45.stypo largeT_ype-1CE45.stypo.glif largeType-1CE46 largeT_ype-1CE46.glif largeType-1CE46.stypo largeT_ype-1CE46.stypo.glif largeType-1CE47 largeT_ype-1CE47.glif largeType-1CE47.stypo largeT_ype-1CE47.stypo.glif largeType-1CE48 largeT_ype-1CE48.glif largeType-1CE48.stypo largeT_ype-1CE48.stypo.glif largeType-1CE49 largeT_ype-1CE49.glif largeType-1CE49.stypo largeT_ype-1CE49.stypo.glif largeType-1CE4A largeT_ype-1CE4A.glif largeType-1CE4A.stypo largeT_ype-1CE4A.stypo.glif largeType-1CE4B largeT_ype-1CE4B.glif largeType-1CE4B.stypo largeT_ype-1CE4B.stypo.glif largeType-1CE4C largeT_ype-1CE4C.glif largeType-1CE4C.stypo largeT_ype-1CE4C.stypo.glif largeType-1CE4D largeT_ype-1CE4D.glif largeType-1CE4D.stypo largeT_ype-1CE4D.stypo.glif largeType-1CE4E largeT_ype-1CE4E.glif largeType-1CE4E.stypo largeT_ype-1CE4E.stypo.glif largeType-1CE4F largeT_ype-1CE4F.glif largeType-1CE4F.stypo largeT_ype-1CE4F.stypo.glif largeType-1CE50 largeT_ype-1CE50.glif largeType-1CE50.stypo largeT_ype-1CE50.stypo.glif ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/copyright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ uni25A6 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/currency.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/d.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dagger.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/daggerdbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dashdownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dcaron.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dcroat.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/de-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/degree.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deleteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/delta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name four.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name one.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name three.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name two.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ uni25A9 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/diamondB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresiscomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresiscomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/divide.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/divisionslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dong.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccentcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dotaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dotbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots123678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots124678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots125-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots125678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots126-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots12678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots127-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots128-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots134678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots135-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots135678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots136-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots13678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots137-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots138-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots145-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots145678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots146-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots14678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots147-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots148-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots15-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots156-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots15678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots157-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots158-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots16-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots167-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots1678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots168-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots17-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots178-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots18-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots23678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots24678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots25-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots25678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots26-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots2678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots27-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots28-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots34678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots35-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots35678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots36-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots3678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots37-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots38-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots45-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots45678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots46-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots4678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots47-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots48-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots5-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots56-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots5678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots57-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots58-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots6-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots67-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots68-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots7-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots78-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dots8-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dottedC_ircle.glif ================================================ uni25CC ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dottedS_quare.glif ================================================ uni2B1A ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ uni25BE ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downB_lackT_riangle.glif ================================================ triagdn ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ uni25BF ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/downW_hiteT_riangle.glif ================================================ uni25BD ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dtail.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/dzhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/e-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/e.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ebreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ecircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/edieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/edotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/edotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ef-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/egrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eight.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eightinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eightsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/el-cy.glif ================================================ uni043B public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ellipsis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/em-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/emacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/emdash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/en-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name M.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/endescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name en-cy public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eng.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/enquiryC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name Q.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/epsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/epsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/equivalence.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/er-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ereversed-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/es-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/escapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name C.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/esh.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/estimated.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/etatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eth.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/etilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/euro.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/eurocurrency.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclamdouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/exclamdown.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ezh.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/f.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/f.locl.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/f.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/filledR_ect.glif ================================================ filledrect ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/firsttonechinese.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fisheye.glif ================================================ uni25C9 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/five.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/five.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/five.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveeighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fiveinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fivesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fl.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/florin.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/formF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/four.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/four.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/four.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/four.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fourinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/foursuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fraction.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/franc.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fullB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/fullB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/g.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gamma-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gamma.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gbreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ge-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name idotless ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/germandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ghestroke-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gheupturn-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstop.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstopmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/glottalstopreversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gravecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gravecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gravetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/greaterequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name G.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/gstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/guarani.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/guillemetleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/guillemetright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/guilsinglleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/guilsinglright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/h.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/h.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hardsign-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heartB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hookabovecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hookabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ uni2B23 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalF_illS_quare.glif ================================================ uni25A4 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name H.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontalbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horizontallineextension.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/horncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/house.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hryvnia.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hungarumlautcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/hyphentwo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/i.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ia-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ibreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/icircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/idieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/idotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/idotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ie-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iegrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/igrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ihookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ii-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iigrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ij.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ij_acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb alignment -1 index 1 name acutecomb ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/imacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/imacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/increment.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/infinity.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/integral.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/integralbt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/integraltp.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/intersection.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/inverseB_ullet.glif ================================================ invbullet ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ invcircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/io-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iota-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iota.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iotadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iotadieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iotatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/itilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.alt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/j.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/jacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/jcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/jcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/jdotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/k.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/k.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.alt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kaiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kappa.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kgreenlandic.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kip.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/kje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/klinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/l.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/l.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lacute.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lambdastroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeC_ircle.glif ================================================ uni25EF ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE20.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE21.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE22.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE23.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE24.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE25.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE26.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE27.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE28.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE29.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE30.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE31.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE32.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE33.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE34.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE35.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE36.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE37.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE38.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE39.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE40.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE41.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE42.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE43.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE44.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE45.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE46.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE47.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE48.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE49.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE50.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lari.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId 84EC96F5-B4D5-4389-883B-FBB110B3398F com.schriftgestaltung.layerOrderInGlyph..notdef 1 com.schriftgestaltung.layerOrderInGlyph.A 1 com.schriftgestaltung.layerOrderInGlyph.A-cy 2 com.schriftgestaltung.layerOrderInGlyph.A.half 1 com.schriftgestaltung.layerOrderInGlyph.AE 1 com.schriftgestaltung.layerOrderInGlyph.AEacute 1 com.schriftgestaltung.layerOrderInGlyph.Aacute 1 com.schriftgestaltung.layerOrderInGlyph.Abreve 1 com.schriftgestaltung.layerOrderInGlyph.Abreveacute 1 com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Abrevegrave 1 com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove 1 com.schriftgestaltung.layerOrderInGlyph.Abrevetilde 1 com.schriftgestaltung.layerOrderInGlyph.Acaron 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.Adieresis 1 com.schriftgestaltung.layerOrderInGlyph.Adotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Agrave 1 com.schriftgestaltung.layerOrderInGlyph.Ahookabove 1 com.schriftgestaltung.layerOrderInGlyph.Alpha 1 com.schriftgestaltung.layerOrderInGlyph.Alpha-latin 1 com.schriftgestaltung.layerOrderInGlyph.Alphatonos 1 com.schriftgestaltung.layerOrderInGlyph.Amacron 1 com.schriftgestaltung.layerOrderInGlyph.Aogonek 1 com.schriftgestaltung.layerOrderInGlyph.Aring 1 com.schriftgestaltung.layerOrderInGlyph.Aringacute 1 com.schriftgestaltung.layerOrderInGlyph.Asmall 1 com.schriftgestaltung.layerOrderInGlyph.Astroke 1 com.schriftgestaltung.layerOrderInGlyph.Atilde 1 com.schriftgestaltung.layerOrderInGlyph.B 1 com.schriftgestaltung.layerOrderInGlyph.B.half 1 com.schriftgestaltung.layerOrderInGlyph.Be-cy 2 com.schriftgestaltung.layerOrderInGlyph.Beta 1 com.schriftgestaltung.layerOrderInGlyph.C 1 com.schriftgestaltung.layerOrderInGlyph.C.half 1 com.schriftgestaltung.layerOrderInGlyph.CR 1 com.schriftgestaltung.layerOrderInGlyph.Cacute 1 com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.Ccaron 1 com.schriftgestaltung.layerOrderInGlyph.Ccedilla 1 com.schriftgestaltung.layerOrderInGlyph.Ccircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Cdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.Che-cy 2 com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Chi 1 com.schriftgestaltung.layerOrderInGlyph.Cstroke 1 com.schriftgestaltung.layerOrderInGlyph.D 1 com.schriftgestaltung.layerOrderInGlyph.D.half 1 com.schriftgestaltung.layerOrderInGlyph.Dafrican 2 com.schriftgestaltung.layerOrderInGlyph.Dcaron 1 com.schriftgestaltung.layerOrderInGlyph.Dcroat 1 com.schriftgestaltung.layerOrderInGlyph.De-cy 2 com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Delta 1 com.schriftgestaltung.layerOrderInGlyph.Dje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Dze-cy 2 com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.E 1 com.schriftgestaltung.layerOrderInGlyph.E-cy 2 com.schriftgestaltung.layerOrderInGlyph.E.half 1 com.schriftgestaltung.layerOrderInGlyph.Eacute 1 com.schriftgestaltung.layerOrderInGlyph.Ebreve 1 com.schriftgestaltung.layerOrderInGlyph.Ecaron 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.Edieresis 1 com.schriftgestaltung.layerOrderInGlyph.Edotaccent 1 com.schriftgestaltung.layerOrderInGlyph.Edotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ef-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Egrave 1 com.schriftgestaltung.layerOrderInGlyph.Ehookabove 1 com.schriftgestaltung.layerOrderInGlyph.El-cy 2 com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.Em-cy 2 com.schriftgestaltung.layerOrderInGlyph.Emacron 1 com.schriftgestaltung.layerOrderInGlyph.En-cy 2 com.schriftgestaltung.layerOrderInGlyph.Endescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Eng 1 com.schriftgestaltung.layerOrderInGlyph.Eogonek 1 com.schriftgestaltung.layerOrderInGlyph.Eopen 1 com.schriftgestaltung.layerOrderInGlyph.Epsilon 1 com.schriftgestaltung.layerOrderInGlyph.Epsilontonos 1 com.schriftgestaltung.layerOrderInGlyph.Er-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ereversed 1 com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy 2 com.schriftgestaltung.layerOrderInGlyph.Es-cy 2 com.schriftgestaltung.layerOrderInGlyph.Esh 1 com.schriftgestaltung.layerOrderInGlyph.Eta 1 com.schriftgestaltung.layerOrderInGlyph.Etatonos 1 com.schriftgestaltung.layerOrderInGlyph.Eth 1 com.schriftgestaltung.layerOrderInGlyph.Etilde 1 com.schriftgestaltung.layerOrderInGlyph.Ezh 1 com.schriftgestaltung.layerOrderInGlyph.F 1 com.schriftgestaltung.layerOrderInGlyph.F.half 1 com.schriftgestaltung.layerOrderInGlyph.Fhook 2 com.schriftgestaltung.layerOrderInGlyph.G 1 com.schriftgestaltung.layerOrderInGlyph.G.half 1 com.schriftgestaltung.layerOrderInGlyph.Gamma 1 com.schriftgestaltung.layerOrderInGlyph.Gammaafrican 1 com.schriftgestaltung.layerOrderInGlyph.Gbreve 1 com.schriftgestaltung.layerOrderInGlyph.Gcaron 1 com.schriftgestaltung.layerOrderInGlyph.Gcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Gdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.Ge-cy 2 com.schriftgestaltung.layerOrderInGlyph.Germandbls 1 com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Gsmall 1 com.schriftgestaltung.layerOrderInGlyph.Gstroke 1 com.schriftgestaltung.layerOrderInGlyph.H 1 com.schriftgestaltung.layerOrderInGlyph.H.half 1 com.schriftgestaltung.layerOrderInGlyph.Ha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.Hbar 1 com.schriftgestaltung.layerOrderInGlyph.Hcaron 1 com.schriftgestaltung.layerOrderInGlyph.Hcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Hdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.I 1 com.schriftgestaltung.layerOrderInGlyph.I-cy 2 com.schriftgestaltung.layerOrderInGlyph.I.half 1 com.schriftgestaltung.layerOrderInGlyph.IJ 1 com.schriftgestaltung.layerOrderInGlyph.IJ_acute 2 com.schriftgestaltung.layerOrderInGlyph.Ia-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iacute 1 com.schriftgestaltung.layerOrderInGlyph.Ibreve 1 com.schriftgestaltung.layerOrderInGlyph.Icircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Idieresis 1 com.schriftgestaltung.layerOrderInGlyph.Idotaccent 1 com.schriftgestaltung.layerOrderInGlyph.Idotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ie-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.Igrave 1 com.schriftgestaltung.layerOrderInGlyph.Ihookabove 1 com.schriftgestaltung.layerOrderInGlyph.Ii-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iishort-cy 2 com.schriftgestaltung.layerOrderInGlyph.Imacron 1 com.schriftgestaltung.layerOrderInGlyph.Imacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.Io-cy 2 com.schriftgestaltung.layerOrderInGlyph.Iogonek 1 com.schriftgestaltung.layerOrderInGlyph.Iota 1 com.schriftgestaltung.layerOrderInGlyph.Iotaafrican 1 com.schriftgestaltung.layerOrderInGlyph.Iotadieresis 1 com.schriftgestaltung.layerOrderInGlyph.Iotatonos 1 com.schriftgestaltung.layerOrderInGlyph.Ismall 1 com.schriftgestaltung.layerOrderInGlyph.Itilde 1 com.schriftgestaltung.layerOrderInGlyph.Iu-cy 2 com.schriftgestaltung.layerOrderInGlyph.J 1 com.schriftgestaltung.layerOrderInGlyph.Jacute 1 com.schriftgestaltung.layerOrderInGlyph.Jcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Je-cy 2 com.schriftgestaltung.layerOrderInGlyph.K 1 com.schriftgestaltung.layerOrderInGlyph.K.half 1 com.schriftgestaltung.layerOrderInGlyph.Ka-cy 2 com.schriftgestaltung.layerOrderInGlyph.Kacute 1 com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.KaiSymbol 1 com.schriftgestaltung.layerOrderInGlyph.Kappa 1 com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Kdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Kje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Klinebelow 1 com.schriftgestaltung.layerOrderInGlyph.L 1 com.schriftgestaltung.layerOrderInGlyph.L.half 1 com.schriftgestaltung.layerOrderInGlyph.LIG 1 com.schriftgestaltung.layerOrderInGlyph.Lacute 1 com.schriftgestaltung.layerOrderInGlyph.Lambda 1 com.schriftgestaltung.layerOrderInGlyph.Lbar 1 com.schriftgestaltung.layerOrderInGlyph.Lcaron 1 com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Ldot 1 com.schriftgestaltung.layerOrderInGlyph.Ldotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Lje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Llinebelow 1 com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde 1 com.schriftgestaltung.layerOrderInGlyph.Lslash 1 com.schriftgestaltung.layerOrderInGlyph.Lsmall 1 com.schriftgestaltung.layerOrderInGlyph.M 1 com.schriftgestaltung.layerOrderInGlyph.M.half 1 com.schriftgestaltung.layerOrderInGlyph.Mu 1 com.schriftgestaltung.layerOrderInGlyph.N 1 com.schriftgestaltung.layerOrderInGlyph.N.half 1 com.schriftgestaltung.layerOrderInGlyph.Nacute 1 com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.Ncaron 1 com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Nhookleft 1 com.schriftgestaltung.layerOrderInGlyph.Nje-cy 2 com.schriftgestaltung.layerOrderInGlyph.Nlinebelow 1 com.schriftgestaltung.layerOrderInGlyph.Ntilde 1 com.schriftgestaltung.layerOrderInGlyph.Nu 1 com.schriftgestaltung.layerOrderInGlyph.O 1 com.schriftgestaltung.layerOrderInGlyph.O-cy 2 com.schriftgestaltung.layerOrderInGlyph.O.half 1 com.schriftgestaltung.layerOrderInGlyph.OE 1 com.schriftgestaltung.layerOrderInGlyph.Oacute 1 com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.Obarred-cy 2 com.schriftgestaltung.layerOrderInGlyph.Obreve 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.Odieresis 1 com.schriftgestaltung.layerOrderInGlyph.Odotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ograve 1 com.schriftgestaltung.layerOrderInGlyph.Ohm 1 com.schriftgestaltung.layerOrderInGlyph.Ohookabove 1 com.schriftgestaltung.layerOrderInGlyph.Ohorn 1 com.schriftgestaltung.layerOrderInGlyph.Ohornacute 1 com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ohorngrave 1 com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Ohorntilde 1 com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut 1 com.schriftgestaltung.layerOrderInGlyph.Omacron 1 com.schriftgestaltung.layerOrderInGlyph.Omacronacute 1 com.schriftgestaltung.layerOrderInGlyph.Omacrongrave 1 com.schriftgestaltung.layerOrderInGlyph.Omega 1 com.schriftgestaltung.layerOrderInGlyph.Omegatonos 1 com.schriftgestaltung.layerOrderInGlyph.Omicron 1 com.schriftgestaltung.layerOrderInGlyph.Omicrontonos 1 com.schriftgestaltung.layerOrderInGlyph.Oogonek 1 com.schriftgestaltung.layerOrderInGlyph.Oopen 1 com.schriftgestaltung.layerOrderInGlyph.Oslash 1 com.schriftgestaltung.layerOrderInGlyph.Oslashacute 1 com.schriftgestaltung.layerOrderInGlyph.Otilde 1 com.schriftgestaltung.layerOrderInGlyph.P 1 com.schriftgestaltung.layerOrderInGlyph.P.half 1 com.schriftgestaltung.layerOrderInGlyph.Palochka-cy 2 com.schriftgestaltung.layerOrderInGlyph.Pe-cy 2 com.schriftgestaltung.layerOrderInGlyph.Phi 1 com.schriftgestaltung.layerOrderInGlyph.Pi 1 com.schriftgestaltung.layerOrderInGlyph.Psi 1 com.schriftgestaltung.layerOrderInGlyph.Q 1 com.schriftgestaltung.layerOrderInGlyph.Q.half 1 com.schriftgestaltung.layerOrderInGlyph.R 1 com.schriftgestaltung.layerOrderInGlyph.R.half 1 com.schriftgestaltung.layerOrderInGlyph.Racute 1 com.schriftgestaltung.layerOrderInGlyph.Rcaron 1 com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Rdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Rho 1 com.schriftgestaltung.layerOrderInGlyph.S 1 com.schriftgestaltung.layerOrderInGlyph.S.half 1 com.schriftgestaltung.layerOrderInGlyph.Sacute 1 com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.Scaron 1 com.schriftgestaltung.layerOrderInGlyph.Scedilla 1 com.schriftgestaltung.layerOrderInGlyph.Schwa 1 com.schriftgestaltung.layerOrderInGlyph.Schwa-cy 2 com.schriftgestaltung.layerOrderInGlyph.Scircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Scommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Sdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Sha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Shcha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Shha-cy 2 com.schriftgestaltung.layerOrderInGlyph.Sigma 1 com.schriftgestaltung.layerOrderInGlyph.Softsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.T 1 com.schriftgestaltung.layerOrderInGlyph.T.half 1 com.schriftgestaltung.layerOrderInGlyph.Tau 1 com.schriftgestaltung.layerOrderInGlyph.Tbar 1 com.schriftgestaltung.layerOrderInGlyph.Tcaron 1 com.schriftgestaltung.layerOrderInGlyph.Tcedilla 1 com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke 1 com.schriftgestaltung.layerOrderInGlyph.Te-cy 2 com.schriftgestaltung.layerOrderInGlyph.Theta 1 com.schriftgestaltung.layerOrderInGlyph.Thorn 1 com.schriftgestaltung.layerOrderInGlyph.Tlinebelow 1 com.schriftgestaltung.layerOrderInGlyph.Tse-cy 2 com.schriftgestaltung.layerOrderInGlyph.Tshe-cy 2 com.schriftgestaltung.layerOrderInGlyph.U 1 com.schriftgestaltung.layerOrderInGlyph.U-cy 2 com.schriftgestaltung.layerOrderInGlyph.U.half 1 com.schriftgestaltung.layerOrderInGlyph.Uacute 1 com.schriftgestaltung.layerOrderInGlyph.Ubreve 1 com.schriftgestaltung.layerOrderInGlyph.Ucircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Udieresis 1 com.schriftgestaltung.layerOrderInGlyph.Udotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Ugrave 1 com.schriftgestaltung.layerOrderInGlyph.Uhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Uhorn 1 com.schriftgestaltung.layerOrderInGlyph.Uhornacute 1 com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Uhorngrave 1 com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Uhorntilde 1 com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut 1 com.schriftgestaltung.layerOrderInGlyph.Umacron 1 com.schriftgestaltung.layerOrderInGlyph.Umacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.Uogonek 1 com.schriftgestaltung.layerOrderInGlyph.Upsilon 1 com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican 1 com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis 1 com.schriftgestaltung.layerOrderInGlyph.Upsilontonos 1 com.schriftgestaltung.layerOrderInGlyph.Uring 1 com.schriftgestaltung.layerOrderInGlyph.Ushort-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.Utilde 1 com.schriftgestaltung.layerOrderInGlyph.V 1 com.schriftgestaltung.layerOrderInGlyph.V.half 1 com.schriftgestaltung.layerOrderInGlyph.Ve-cy 2 com.schriftgestaltung.layerOrderInGlyph.Vhook 1 com.schriftgestaltung.layerOrderInGlyph.Vturned 1 com.schriftgestaltung.layerOrderInGlyph.W 1 com.schriftgestaltung.layerOrderInGlyph.Wacute 1 com.schriftgestaltung.layerOrderInGlyph.Wcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Wdieresis 1 com.schriftgestaltung.layerOrderInGlyph.Wgrave 1 com.schriftgestaltung.layerOrderInGlyph.X 1 com.schriftgestaltung.layerOrderInGlyph.X.half 1 com.schriftgestaltung.layerOrderInGlyph.Xi 1 com.schriftgestaltung.layerOrderInGlyph.Y 1 com.schriftgestaltung.layerOrderInGlyph.Y.half 1 com.schriftgestaltung.layerOrderInGlyph.Yacute 1 com.schriftgestaltung.layerOrderInGlyph.Ycircumflex 1 com.schriftgestaltung.layerOrderInGlyph.Ydieresis 1 com.schriftgestaltung.layerOrderInGlyph.Ydotbelow 1 com.schriftgestaltung.layerOrderInGlyph.Yeru-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ygrave 1 com.schriftgestaltung.layerOrderInGlyph.Yhookabove 1 com.schriftgestaltung.layerOrderInGlyph.Yi-cy 2 com.schriftgestaltung.layerOrderInGlyph.Ymacron 1 com.schriftgestaltung.layerOrderInGlyph.Ytilde 1 com.schriftgestaltung.layerOrderInGlyph.Z 1 com.schriftgestaltung.layerOrderInGlyph.Zacute 1 com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.Zcaron 1 com.schriftgestaltung.layerOrderInGlyph.Zdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.Ze-cy 2 com.schriftgestaltung.layerOrderInGlyph.Zeta 1 com.schriftgestaltung.layerOrderInGlyph.Zhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.a 1 com.schriftgestaltung.layerOrderInGlyph.a-cy 2 com.schriftgestaltung.layerOrderInGlyph.aacute 1 com.schriftgestaltung.layerOrderInGlyph.abreve 1 com.schriftgestaltung.layerOrderInGlyph.abreveacute 1 com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow 1 com.schriftgestaltung.layerOrderInGlyph.abrevegrave 1 com.schriftgestaltung.layerOrderInGlyph.abrevehookabove 1 com.schriftgestaltung.layerOrderInGlyph.abrevetilde 1 com.schriftgestaltung.layerOrderInGlyph.acaron 1 com.schriftgestaltung.layerOrderInGlyph.acircumflex 1 com.schriftgestaltung.layerOrderInGlyph.acircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.acircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl 1 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.acute 1 com.schriftgestaltung.layerOrderInGlyph.acutecomb 1 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case 1 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.acutetonecomb 1 com.schriftgestaltung.layerOrderInGlyph.adieresis 1 com.schriftgestaltung.layerOrderInGlyph.adotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ae 1 com.schriftgestaltung.layerOrderInGlyph.aeacute 1 com.schriftgestaltung.layerOrderInGlyph.agrave 1 com.schriftgestaltung.layerOrderInGlyph.ahookabove 1 com.schriftgestaltung.layerOrderInGlyph.alpha 1 com.schriftgestaltung.layerOrderInGlyph.alpha-latin 1 com.schriftgestaltung.layerOrderInGlyph.alphatonos 1 com.schriftgestaltung.layerOrderInGlyph.amacron 1 com.schriftgestaltung.layerOrderInGlyph.ampersand 1 com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga 1 com.schriftgestaltung.layerOrderInGlyph.anoteleia 1 com.schriftgestaltung.layerOrderInGlyph.aogonek 1 com.schriftgestaltung.layerOrderInGlyph.apostrophemod 1 com.schriftgestaltung.layerOrderInGlyph.approxequal 1 com.schriftgestaltung.layerOrderInGlyph.aring 1 com.schriftgestaltung.layerOrderInGlyph.aringacute 1 com.schriftgestaltung.layerOrderInGlyph.asciicircum 1 com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga 1 com.schriftgestaltung.layerOrderInGlyph.asterisk 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga 1 com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.at 1 com.schriftgestaltung.layerOrderInGlyph.atilde 1 com.schriftgestaltung.layerOrderInGlyph.b 1 com.schriftgestaltung.layerOrderInGlyph.b.alt 1 com.schriftgestaltung.layerOrderInGlyph.backslash 1 com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga 1 com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.backspaceControl 1 com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.baht 1 com.schriftgestaltung.layerOrderInGlyph.bar 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.be-cy 2 com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB 2 com.schriftgestaltung.layerOrderInGlyph.bellControl 1 com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.beta 1 com.schriftgestaltung.layerOrderInGlyph.bitcoin 2 com.schriftgestaltung.layerOrderInGlyph.blackCircle 1 com.schriftgestaltung.layerOrderInGlyph.blackDiamond 1 com.schriftgestaltung.layerOrderInGlyph.blackHexagon 1 com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse 1 com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond 1 com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle 1 com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred 1 com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred 1 com.schriftgestaltung.layerOrderInGlyph.blackParallelogram 1 com.schriftgestaltung.layerOrderInGlyph.blackPentagon 1 com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond 1 com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge 1 com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace 1 com.schriftgestaltung.layerOrderInGlyph.blackSquare 1 com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse 1 com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect 1 com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.blank 1 com.schriftgestaltung.layerOrderInGlyph.blank-braille 1 com.schriftgestaltung.layerOrderInGlyph.blankSymbol 1 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle 1 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond 1 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDown 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUp 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight 2 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble 2 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo 2 com.schriftgestaltung.layerOrderInGlyph.braceleft 1 com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.braceright 1 com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga 1 com.schriftgestaltung.layerOrderInGlyph.bracketleft 1 com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.bracketright 1 com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga 1 com.schriftgestaltung.layerOrderInGlyph.breve 1 com.schriftgestaltung.layerOrderInGlyph.brevecomb 1 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy 1 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case 1 com.schriftgestaltung.layerOrderInGlyph.brevecomb.case 1 com.schriftgestaltung.layerOrderInGlyph.brokenbar 1 com.schriftgestaltung.layerOrderInGlyph.bullet 1 com.schriftgestaltung.layerOrderInGlyph.bulletoperator 1 com.schriftgestaltung.layerOrderInGlyph.bullseye 1 com.schriftgestaltung.layerOrderInGlyph.c 1 com.schriftgestaltung.layerOrderInGlyph.cacute 1 com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.cancelControl 1 com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.careof 1 com.schriftgestaltung.layerOrderInGlyph.caron 1 com.schriftgestaltung.layerOrderInGlyph.caroncomb 1 com.schriftgestaltung.layerOrderInGlyph.caroncomb.case 1 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl 1 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.ccaron 1 com.schriftgestaltung.layerOrderInGlyph.ccedilla 1 com.schriftgestaltung.layerOrderInGlyph.ccircumflex 1 com.schriftgestaltung.layerOrderInGlyph.cdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.cedi 1 com.schriftgestaltung.layerOrderInGlyph.cedilla 1 com.schriftgestaltung.layerOrderInGlyph.cedillacomb 1 com.schriftgestaltung.layerOrderInGlyph.cent 1 com.schriftgestaltung.layerOrderInGlyph.che-cy 2 com.schriftgestaltung.layerOrderInGlyph.che-cy.salt 2 com.schriftgestaltung.layerOrderInGlyph.checkmark 1 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy.salt 2 com.schriftgestaltung.layerOrderInGlyph.chi 1 com.schriftgestaltung.layerOrderInGlyph.circumflex 1 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb 1 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case 1 com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit 1 com.schriftgestaltung.layerOrderInGlyph.colon 1 com.schriftgestaltung.layerOrderInGlyph.colon.center 1 com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga 1 com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga 1 com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.colonsign 1 com.schriftgestaltung.layerOrderInGlyph.colontriangularmod 1 com.schriftgestaltung.layerOrderInGlyph.comma 1 com.schriftgestaltung.layerOrderInGlyph.commaabovecomb 1 com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb 1 com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb 1 com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb 1 com.schriftgestaltung.layerOrderInGlyph.commaturnedmod 1 com.schriftgestaltung.layerOrderInGlyph.copyright 1 com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.currency 1 com.schriftgestaltung.layerOrderInGlyph.d 1 com.schriftgestaltung.layerOrderInGlyph.dagger 1 com.schriftgestaltung.layerOrderInGlyph.daggerdbl 1 com.schriftgestaltung.layerOrderInGlyph.dashdownArrow 1 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl 1 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.dcaron 1 com.schriftgestaltung.layerOrderInGlyph.dcaron.alt 1 com.schriftgestaltung.layerOrderInGlyph.dcroat 1 com.schriftgestaltung.layerOrderInGlyph.de-cy 2 com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.degree 1 com.schriftgestaltung.layerOrderInGlyph.deleteControl 1 com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl 1 com.schriftgestaltung.layerOrderInGlyph.delta 1 com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl 1 com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl 1 com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl 1 com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl 1 com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit 1 com.schriftgestaltung.layerOrderInGlyph.dieresis 1 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb 1 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case 1 com.schriftgestaltung.layerOrderInGlyph.dieresistonos 1 com.schriftgestaltung.layerOrderInGlyph.divide 1 com.schriftgestaltung.layerOrderInGlyph.divisionslash 1 com.schriftgestaltung.layerOrderInGlyph.dje-cy 2 com.schriftgestaltung.layerOrderInGlyph.dollar 1 com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.dong 1 com.schriftgestaltung.layerOrderInGlyph.dotaccent 1 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb 1 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case 1 com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb 1 com.schriftgestaltung.layerOrderInGlyph.dots1-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1234-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12345-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12346-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12347-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12348-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1235-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12356-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12357-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12358-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1236-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12367-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots123678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12368-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1237-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12378-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1238-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots124-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1245-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots124567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots124568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots124578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1246-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots124678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1247-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1248-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots125-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1256-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots125678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1257-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1258-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots126-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1267-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots12678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1268-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots127-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1278-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots128-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots134-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1345-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots134567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots134568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots134578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1346-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots134678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1347-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1348-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots135-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1356-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots135678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1357-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1358-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots136-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1367-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots13678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1368-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots137-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1378-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots138-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots14-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots145-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots14567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots145678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots14568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots14578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots146-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots14678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots147-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots148-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots15-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots156-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots15678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots157-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots158-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots16-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots167-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots1678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots168-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots17-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots178-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots18-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots234-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2345-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots234567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots234568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots234578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2346-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots234678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2347-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2348-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots235-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2356-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots235678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2357-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2358-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots236-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2367-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots23678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2368-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots237-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2378-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots238-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots24-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots245-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots24567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots245678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots24568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots24578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots246-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots24678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots247-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots248-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots25-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots256-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots25678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots257-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots258-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots26-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots267-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots2678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots268-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots27-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots278-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots28-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots34-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots345-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots34567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots345678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots34568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots34578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots346-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots34678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots347-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots348-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots35-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots356-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots35678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots357-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots358-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots36-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots367-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots3678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots368-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots37-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots378-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots38-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots4-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots45-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots456-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots4567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots45678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots4568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots457-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots4578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots458-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots46-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots467-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots4678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots468-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots47-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots478-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots48-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots5-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots56-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots567-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots5678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots568-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots57-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots578-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots58-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots6-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots67-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots678-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots68-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots7-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots78-braille 1 com.schriftgestaltung.layerOrderInGlyph.dots8-braille 1 com.schriftgestaltung.layerOrderInGlyph.dottedCircle 1 com.schriftgestaltung.layerOrderInGlyph.dottedSquare 1 com.schriftgestaltung.layerOrderInGlyph.downArrow 1 com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow 1 com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle 1 com.schriftgestaltung.layerOrderInGlyph.dtail 2 com.schriftgestaltung.layerOrderInGlyph.dze-cy 2 com.schriftgestaltung.layerOrderInGlyph.dzhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.e 1 com.schriftgestaltung.layerOrderInGlyph.e-cy 2 com.schriftgestaltung.layerOrderInGlyph.eacute 1 com.schriftgestaltung.layerOrderInGlyph.ebreve 1 com.schriftgestaltung.layerOrderInGlyph.ecaron 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflex 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.edieresis 1 com.schriftgestaltung.layerOrderInGlyph.edotaccent 1 com.schriftgestaltung.layerOrderInGlyph.edotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ef-cy 2 com.schriftgestaltung.layerOrderInGlyph.egrave 1 com.schriftgestaltung.layerOrderInGlyph.ehookabove 1 com.schriftgestaltung.layerOrderInGlyph.eight 1 com.schriftgestaltung.layerOrderInGlyph.eight.dnom 1 com.schriftgestaltung.layerOrderInGlyph.eight.numr 1 com.schriftgestaltung.layerOrderInGlyph.eightinferior 1 com.schriftgestaltung.layerOrderInGlyph.eightsuperior 1 com.schriftgestaltung.layerOrderInGlyph.el-cy 2 com.schriftgestaltung.layerOrderInGlyph.ellipsis 1 com.schriftgestaltung.layerOrderInGlyph.em-cy 2 com.schriftgestaltung.layerOrderInGlyph.emacron 1 com.schriftgestaltung.layerOrderInGlyph.emdash 1 com.schriftgestaltung.layerOrderInGlyph.en-cy 2 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl 1 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl 1 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl 1 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl 1 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.endash 1 com.schriftgestaltung.layerOrderInGlyph.endescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.eng 1 com.schriftgestaltung.layerOrderInGlyph.enquiryControl 1 com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.eogonek 1 com.schriftgestaltung.layerOrderInGlyph.eopen 1 com.schriftgestaltung.layerOrderInGlyph.epsilon 1 com.schriftgestaltung.layerOrderInGlyph.epsilontonos 1 com.schriftgestaltung.layerOrderInGlyph.equal 1 com.schriftgestaltung.layerOrderInGlyph.equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.equivalence 1 com.schriftgestaltung.layerOrderInGlyph.er-cy 2 com.schriftgestaltung.layerOrderInGlyph.ereversed-cy 2 com.schriftgestaltung.layerOrderInGlyph.es-cy 2 com.schriftgestaltung.layerOrderInGlyph.escapeControl 1 com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.esh 1 com.schriftgestaltung.layerOrderInGlyph.estimated 1 com.schriftgestaltung.layerOrderInGlyph.eta 1 com.schriftgestaltung.layerOrderInGlyph.etatonos 1 com.schriftgestaltung.layerOrderInGlyph.eth 1 com.schriftgestaltung.layerOrderInGlyph.etilde 1 com.schriftgestaltung.layerOrderInGlyph.eturned 1 com.schriftgestaltung.layerOrderInGlyph.euro 1 com.schriftgestaltung.layerOrderInGlyph.eurocurrency 1 com.schriftgestaltung.layerOrderInGlyph.exclam 1 com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga 1 com.schriftgestaltung.layerOrderInGlyph.exclamdouble 1 com.schriftgestaltung.layerOrderInGlyph.exclamdown 1 com.schriftgestaltung.layerOrderInGlyph.ezh 1 com.schriftgestaltung.layerOrderInGlyph.f 1 com.schriftgestaltung.layerOrderInGlyph.f.locl 1 com.schriftgestaltung.layerOrderInGlyph.f.salt 1 com.schriftgestaltung.layerOrderInGlyph.fi 1 com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl 1 com.schriftgestaltung.layerOrderInGlyph.filledRect 1 com.schriftgestaltung.layerOrderInGlyph.firsttonechinese 1 com.schriftgestaltung.layerOrderInGlyph.fisheye 1 com.schriftgestaltung.layerOrderInGlyph.five 1 com.schriftgestaltung.layerOrderInGlyph.five.dnom 1 com.schriftgestaltung.layerOrderInGlyph.five.numr 1 com.schriftgestaltung.layerOrderInGlyph.fiveeighths 1 com.schriftgestaltung.layerOrderInGlyph.fiveinferior 1 com.schriftgestaltung.layerOrderInGlyph.fivesuperior 1 com.schriftgestaltung.layerOrderInGlyph.fl 1 com.schriftgestaltung.layerOrderInGlyph.florin 1 com.schriftgestaltung.layerOrderInGlyph.formFeedControl 1 com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.four 1 com.schriftgestaltung.layerOrderInGlyph.four.dnom 1 com.schriftgestaltung.layerOrderInGlyph.four.half 1 com.schriftgestaltung.layerOrderInGlyph.four.numr 1 com.schriftgestaltung.layerOrderInGlyph.fourinferior 1 com.schriftgestaltung.layerOrderInGlyph.foursuperior 1 com.schriftgestaltung.layerOrderInGlyph.fraction 1 com.schriftgestaltung.layerOrderInGlyph.franc 1 com.schriftgestaltung.layerOrderInGlyph.fullBlock 2 com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.g 1 com.schriftgestaltung.layerOrderInGlyph.gamma 1 com.schriftgestaltung.layerOrderInGlyph.gamma-latin 1 com.schriftgestaltung.layerOrderInGlyph.gbreve 1 com.schriftgestaltung.layerOrderInGlyph.gcaron 1 com.schriftgestaltung.layerOrderInGlyph.gcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.gcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.gdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.ge-cy 2 com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclSRB 1 com.schriftgestaltung.layerOrderInGlyph.germandbls 1 com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy 2 com.schriftgestaltung.layerOrderInGlyph.gje-cy 2 com.schriftgestaltung.layerOrderInGlyph.glottalstop 1 com.schriftgestaltung.layerOrderInGlyph.glottalstopmod 1 com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed 1 com.schriftgestaltung.layerOrderInGlyph.grave 1 com.schriftgestaltung.layerOrderInGlyph.gravecomb 1 com.schriftgestaltung.layerOrderInGlyph.gravecomb.case 1 com.schriftgestaltung.layerOrderInGlyph.gravetonecomb 1 com.schriftgestaltung.layerOrderInGlyph.greater 1 com.schriftgestaltung.layerOrderInGlyph.greater.alt 1 com.schriftgestaltung.layerOrderInGlyph.greater.center 1 com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.greaterequal 1 com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl 1 com.schriftgestaltung.layerOrderInGlyph.gstroke 1 com.schriftgestaltung.layerOrderInGlyph.guarani 1 com.schriftgestaltung.layerOrderInGlyph.guillemetleft 1 com.schriftgestaltung.layerOrderInGlyph.guillemetright 1 com.schriftgestaltung.layerOrderInGlyph.guilsinglleft 1 com.schriftgestaltung.layerOrderInGlyph.guilsinglright 1 com.schriftgestaltung.layerOrderInGlyph.h 0 com.schriftgestaltung.layerOrderInGlyph.h.alt 0 com.schriftgestaltung.layerOrderInGlyph.ha-cy 2 com.schriftgestaltung.layerOrderInGlyph.hadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.hbar 1 com.schriftgestaltung.layerOrderInGlyph.hcaron 1 com.schriftgestaltung.layerOrderInGlyph.hcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.hdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit 1 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament 1 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament 1 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament 1 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament 1 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb 1 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case 1 com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon 1 com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl 1 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.horizontalbar 1 com.schriftgestaltung.layerOrderInGlyph.horizontallineextension 1 com.schriftgestaltung.layerOrderInGlyph.horncomb 1 com.schriftgestaltung.layerOrderInGlyph.horncomb.case 1 com.schriftgestaltung.layerOrderInGlyph.house 1 com.schriftgestaltung.layerOrderInGlyph.hryvnia 1 com.schriftgestaltung.layerOrderInGlyph.hungarumlaut 1 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb 1 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case 1 com.schriftgestaltung.layerOrderInGlyph.hyphen 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.hyphentwo 1 com.schriftgestaltung.layerOrderInGlyph.i 1 com.schriftgestaltung.layerOrderInGlyph.i-cy 2 com.schriftgestaltung.layerOrderInGlyph.ia-cy 2 com.schriftgestaltung.layerOrderInGlyph.iacute 1 com.schriftgestaltung.layerOrderInGlyph.ibreve 1 com.schriftgestaltung.layerOrderInGlyph.icircumflex 1 com.schriftgestaltung.layerOrderInGlyph.idieresis 1 com.schriftgestaltung.layerOrderInGlyph.idotbelow 1 com.schriftgestaltung.layerOrderInGlyph.idotless 1 com.schriftgestaltung.layerOrderInGlyph.ie-cy 2 com.schriftgestaltung.layerOrderInGlyph.iegrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.igrave 1 com.schriftgestaltung.layerOrderInGlyph.ihookabove 1 com.schriftgestaltung.layerOrderInGlyph.ii-cy 2 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy 2 com.schriftgestaltung.layerOrderInGlyph.iishort-cy 2 com.schriftgestaltung.layerOrderInGlyph.ij 1 com.schriftgestaltung.layerOrderInGlyph.ij_acute 2 com.schriftgestaltung.layerOrderInGlyph.imacron 1 com.schriftgestaltung.layerOrderInGlyph.imacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.increment 1 com.schriftgestaltung.layerOrderInGlyph.infinity 1 com.schriftgestaltung.layerOrderInGlyph.integral 1 com.schriftgestaltung.layerOrderInGlyph.integralbt 1 com.schriftgestaltung.layerOrderInGlyph.integraltp 1 com.schriftgestaltung.layerOrderInGlyph.intersection 1 com.schriftgestaltung.layerOrderInGlyph.inverseBullet 1 com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.io-cy 2 com.schriftgestaltung.layerOrderInGlyph.iogonek 1 com.schriftgestaltung.layerOrderInGlyph.iota 1 com.schriftgestaltung.layerOrderInGlyph.iota-latin 1 com.schriftgestaltung.layerOrderInGlyph.iotadieresis 1 com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos 1 com.schriftgestaltung.layerOrderInGlyph.iotatonos 1 com.schriftgestaltung.layerOrderInGlyph.itilde 1 com.schriftgestaltung.layerOrderInGlyph.iu-cy 2 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR.alt 2 com.schriftgestaltung.layerOrderInGlyph.j 1 com.schriftgestaltung.layerOrderInGlyph.jacute 1 com.schriftgestaltung.layerOrderInGlyph.jcaron 1 com.schriftgestaltung.layerOrderInGlyph.jcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.jdotless 1 com.schriftgestaltung.layerOrderInGlyph.je-cy 2 com.schriftgestaltung.layerOrderInGlyph.k 1 com.schriftgestaltung.layerOrderInGlyph.k.alt 1 com.schriftgestaltung.layerOrderInGlyph.ka-cy 2 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR.alt 2 com.schriftgestaltung.layerOrderInGlyph.kadescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.kaiSymbol 1 com.schriftgestaltung.layerOrderInGlyph.kappa 1 com.schriftgestaltung.layerOrderInGlyph.kcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.kdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.kgreenlandic 1 com.schriftgestaltung.layerOrderInGlyph.kip 1 com.schriftgestaltung.layerOrderInGlyph.kje-cy 2 com.schriftgestaltung.layerOrderInGlyph.klinebelow 1 com.schriftgestaltung.layerOrderInGlyph.l 1 com.schriftgestaltung.layerOrderInGlyph.l.salt 1 com.schriftgestaltung.layerOrderInGlyph.lacute 1 com.schriftgestaltung.layerOrderInGlyph.lacute.salt 1 com.schriftgestaltung.layerOrderInGlyph.lambda 1 com.schriftgestaltung.layerOrderInGlyph.lambdastroke 1 com.schriftgestaltung.layerOrderInGlyph.largeCircle 1 com.schriftgestaltung.layerOrderInGlyph.lari 1 com.schriftgestaltung.layerOrderInGlyph.lbar 1 com.schriftgestaltung.layerOrderInGlyph.lbar.salt 1 com.schriftgestaltung.layerOrderInGlyph.lbelt 1 com.schriftgestaltung.layerOrderInGlyph.lbelt.salt 1 com.schriftgestaltung.layerOrderInGlyph.lcaron 1 com.schriftgestaltung.layerOrderInGlyph.lcaron.salt 1 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent.salt 1 com.schriftgestaltung.layerOrderInGlyph.ldot 1 com.schriftgestaltung.layerOrderInGlyph.ldot.salt 1 com.schriftgestaltung.layerOrderInGlyph.ldotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ldotbelow.salt 1 com.schriftgestaltung.layerOrderInGlyph.leftArrow 1 com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer 1 com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.leftBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle 1 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond 1 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftRightArrow 1 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock 2 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer 1 com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle 1 com.schriftgestaltung.layerOrderInGlyph.less 1 com.schriftgestaltung.layerOrderInGlyph.less.alt 1 com.schriftgestaltung.layerOrderInGlyph.less.center 1 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_plus.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.lessequal 1 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl 1 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.lineseparator 1 com.schriftgestaltung.layerOrderInGlyph.lira 1 com.schriftgestaltung.layerOrderInGlyph.liraTurkish 1 com.schriftgestaltung.layerOrderInGlyph.literSign 1 com.schriftgestaltung.layerOrderInGlyph.lje-cy 2 com.schriftgestaltung.layerOrderInGlyph.llinebelow 1 com.schriftgestaltung.layerOrderInGlyph.llinebelow.salt 1 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde 1 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde.salt 1 com.schriftgestaltung.layerOrderInGlyph.logicalnot 1 com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed 1 com.schriftgestaltung.layerOrderInGlyph.longs 1 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc 1 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc 1 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle 1 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightArc 1 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle 1 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock 2 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek 1 com.schriftgestaltung.layerOrderInGlyph.lowlinecomb 1 com.schriftgestaltung.layerOrderInGlyph.lozenge 1 com.schriftgestaltung.layerOrderInGlyph.lslash 1 com.schriftgestaltung.layerOrderInGlyph.lslash.salt 1 com.schriftgestaltung.layerOrderInGlyph.m 1 com.schriftgestaltung.layerOrderInGlyph.macron 1 com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb 1 com.schriftgestaltung.layerOrderInGlyph.macroncomb 1 com.schriftgestaltung.layerOrderInGlyph.macroncomb.case 1 com.schriftgestaltung.layerOrderInGlyph.manat 1 com.schriftgestaltung.layerOrderInGlyph.mars 1 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament 1 com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament 1 com.schriftgestaltung.layerOrderInGlyph.micro 1 com.schriftgestaltung.layerOrderInGlyph.minus 1 com.schriftgestaltung.layerOrderInGlyph.minute 1 com.schriftgestaltung.layerOrderInGlyph.mu 1 com.schriftgestaltung.layerOrderInGlyph.multiply 1 com.schriftgestaltung.layerOrderInGlyph.n 1 com.schriftgestaltung.layerOrderInGlyph.nacute 1 com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.naira 1 com.schriftgestaltung.layerOrderInGlyph.napostrophe 1 com.schriftgestaltung.layerOrderInGlyph.nbspace 1 com.schriftgestaltung.layerOrderInGlyph.ncaron 1 com.schriftgestaltung.layerOrderInGlyph.ncommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl 1 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.newlineControl 1 com.schriftgestaltung.layerOrderInGlyph.nhookleft 1 com.schriftgestaltung.layerOrderInGlyph.nine 1 com.schriftgestaltung.layerOrderInGlyph.nine.dnom 1 com.schriftgestaltung.layerOrderInGlyph.nine.numr 1 com.schriftgestaltung.layerOrderInGlyph.nineinferior 1 com.schriftgestaltung.layerOrderInGlyph.ninesuperior 1 com.schriftgestaltung.layerOrderInGlyph.nje-cy 2 com.schriftgestaltung.layerOrderInGlyph.nlinebelow 1 com.schriftgestaltung.layerOrderInGlyph.nmod 1 com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen 1 com.schriftgestaltung.layerOrderInGlyph.note-musical 1 com.schriftgestaltung.layerOrderInGlyph.notedbl-musical 1 com.schriftgestaltung.layerOrderInGlyph.notequal 1 com.schriftgestaltung.layerOrderInGlyph.notidentical 1 com.schriftgestaltung.layerOrderInGlyph.ntilde 1 com.schriftgestaltung.layerOrderInGlyph.nu 1 com.schriftgestaltung.layerOrderInGlyph.nullControl 1 com.schriftgestaltung.layerOrderInGlyph.numbersign 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga 1 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga 1 com.schriftgestaltung.layerOrderInGlyph.numeral-greek 1 com.schriftgestaltung.layerOrderInGlyph.numero 1 com.schriftgestaltung.layerOrderInGlyph.o 1 com.schriftgestaltung.layerOrderInGlyph.o-cy 2 com.schriftgestaltung.layerOrderInGlyph.oacute 1 com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.obarred-cy 2 com.schriftgestaltung.layerOrderInGlyph.obreve 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflex 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove 1 com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde 1 com.schriftgestaltung.layerOrderInGlyph.odieresis 1 com.schriftgestaltung.layerOrderInGlyph.odotbelow 1 com.schriftgestaltung.layerOrderInGlyph.oe 1 com.schriftgestaltung.layerOrderInGlyph.ogonek 1 com.schriftgestaltung.layerOrderInGlyph.ogonekcomb 1 com.schriftgestaltung.layerOrderInGlyph.ograve 1 com.schriftgestaltung.layerOrderInGlyph.ohookabove 1 com.schriftgestaltung.layerOrderInGlyph.ohorn 1 com.schriftgestaltung.layerOrderInGlyph.ohornacute 1 com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ohorngrave 1 com.schriftgestaltung.layerOrderInGlyph.ohornhookabove 1 com.schriftgestaltung.layerOrderInGlyph.ohorntilde 1 com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut 1 com.schriftgestaltung.layerOrderInGlyph.omacron 1 com.schriftgestaltung.layerOrderInGlyph.omacronacute 1 com.schriftgestaltung.layerOrderInGlyph.omacrongrave 1 com.schriftgestaltung.layerOrderInGlyph.omega 1 com.schriftgestaltung.layerOrderInGlyph.omegatonos 1 com.schriftgestaltung.layerOrderInGlyph.omicron 1 com.schriftgestaltung.layerOrderInGlyph.omicrontonos 1 com.schriftgestaltung.layerOrderInGlyph.one 1 com.schriftgestaltung.layerOrderInGlyph.one.dnom 1 com.schriftgestaltung.layerOrderInGlyph.one.half 1 com.schriftgestaltung.layerOrderInGlyph.one.numr 1 com.schriftgestaltung.layerOrderInGlyph.onedotenleader 1 com.schriftgestaltung.layerOrderInGlyph.oneeighth 1 com.schriftgestaltung.layerOrderInGlyph.onehalf 1 com.schriftgestaltung.layerOrderInGlyph.oneinferior 1 com.schriftgestaltung.layerOrderInGlyph.onequarter 1 com.schriftgestaltung.layerOrderInGlyph.onesuperior 1 com.schriftgestaltung.layerOrderInGlyph.oogonek 1 com.schriftgestaltung.layerOrderInGlyph.oopen 1 com.schriftgestaltung.layerOrderInGlyph.ordfeminine 1 com.schriftgestaltung.layerOrderInGlyph.ordmasculine 1 com.schriftgestaltung.layerOrderInGlyph.orthogonal 1 com.schriftgestaltung.layerOrderInGlyph.oslash 1 com.schriftgestaltung.layerOrderInGlyph.oslashacute 1 com.schriftgestaltung.layerOrderInGlyph.otilde 1 com.schriftgestaltung.layerOrderInGlyph.overline 1 com.schriftgestaltung.layerOrderInGlyph.p 1 com.schriftgestaltung.layerOrderInGlyph.palochka-cy 2 com.schriftgestaltung.layerOrderInGlyph.paragraph 1 com.schriftgestaltung.layerOrderInGlyph.parenleft 1 com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga 1 com.schriftgestaltung.layerOrderInGlyph.parenright 1 com.schriftgestaltung.layerOrderInGlyph.partialdiff 1 com.schriftgestaltung.layerOrderInGlyph.pe-cy 2 com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclSRB 1 com.schriftgestaltung.layerOrderInGlyph.percent 1 com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga 1 com.schriftgestaltung.layerOrderInGlyph.period 1 com.schriftgestaltung.layerOrderInGlyph.period_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_period.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga 1 com.schriftgestaltung.layerOrderInGlyph.period_question.liga 1 com.schriftgestaltung.layerOrderInGlyph.periodcentered 1 com.schriftgestaltung.layerOrderInGlyph.perispomenicomb 1 com.schriftgestaltung.layerOrderInGlyph.perthousand 1 com.schriftgestaltung.layerOrderInGlyph.peseta 1 com.schriftgestaltung.layerOrderInGlyph.peso 1 com.schriftgestaltung.layerOrderInGlyph.phi 1 com.schriftgestaltung.layerOrderInGlyph.pi 1 com.schriftgestaltung.layerOrderInGlyph.plus 1 com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga 1 com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga 1 com.schriftgestaltung.layerOrderInGlyph.plusminus 1 com.schriftgestaltung.layerOrderInGlyph.prescription 1 com.schriftgestaltung.layerOrderInGlyph.product 1 com.schriftgestaltung.layerOrderInGlyph.psi 1 com.schriftgestaltung.layerOrderInGlyph.published 1 com.schriftgestaltung.layerOrderInGlyph.punctuationspace 1 com.schriftgestaltung.layerOrderInGlyph.q 1 com.schriftgestaltung.layerOrderInGlyph.question 1 com.schriftgestaltung.layerOrderInGlyph.question_colon.liga 1 com.schriftgestaltung.layerOrderInGlyph.question_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.question_period.liga 1 com.schriftgestaltung.layerOrderInGlyph.question_question.liga 1 com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga 1 com.schriftgestaltung.layerOrderInGlyph.questiondown 1 com.schriftgestaltung.layerOrderInGlyph.questiongreek 1 com.schriftgestaltung.layerOrderInGlyph.quotedbl 1 com.schriftgestaltung.layerOrderInGlyph.quotedblbase 1 com.schriftgestaltung.layerOrderInGlyph.quotedblleft 1 com.schriftgestaltung.layerOrderInGlyph.quotedblright 1 com.schriftgestaltung.layerOrderInGlyph.quoteleft 1 com.schriftgestaltung.layerOrderInGlyph.quotereversed 1 com.schriftgestaltung.layerOrderInGlyph.quoteright 1 com.schriftgestaltung.layerOrderInGlyph.quotesinglbase 1 com.schriftgestaltung.layerOrderInGlyph.quotesingle 1 com.schriftgestaltung.layerOrderInGlyph.r 1 com.schriftgestaltung.layerOrderInGlyph.r.salt 1 com.schriftgestaltung.layerOrderInGlyph.racute 1 com.schriftgestaltung.layerOrderInGlyph.racute.salt 1 com.schriftgestaltung.layerOrderInGlyph.radical 1 com.schriftgestaltung.layerOrderInGlyph.ratio 2 com.schriftgestaltung.layerOrderInGlyph.rcaron 1 com.schriftgestaltung.layerOrderInGlyph.rcaron.salt 1 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent.salt 1 com.schriftgestaltung.layerOrderInGlyph.rdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.rdotbelow.salt 1 com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl 1 com.schriftgestaltung.layerOrderInGlyph.registered 1 com.schriftgestaltung.layerOrderInGlyph.replacementCharacter 2 com.schriftgestaltung.layerOrderInGlyph.returnsymbol 1 com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet 1 com.schriftgestaltung.layerOrderInGlyph.rho 1 com.schriftgestaltung.layerOrderInGlyph.rightArrow 1 com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer 1 com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.rightBlock 2 com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle 1 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond 1 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer 1 com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle 1 com.schriftgestaltung.layerOrderInGlyph.ring 1 com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb 1 com.schriftgestaltung.layerOrderInGlyph.ringcomb 1 com.schriftgestaltung.layerOrderInGlyph.ringcomb.case 1 com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet 1 com.schriftgestaltung.layerOrderInGlyph.ruble 1 com.schriftgestaltung.layerOrderInGlyph.rupee 1 com.schriftgestaltung.layerOrderInGlyph.rupeeIndian 1 com.schriftgestaltung.layerOrderInGlyph.s 1 com.schriftgestaltung.layerOrderInGlyph.s.salt 1 com.schriftgestaltung.layerOrderInGlyph.sacute 1 com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.sacute.salt 1 com.schriftgestaltung.layerOrderInGlyph.scaron 1 com.schriftgestaltung.layerOrderInGlyph.scaron.salt 1 com.schriftgestaltung.layerOrderInGlyph.scedilla 1 com.schriftgestaltung.layerOrderInGlyph.scedilla.salt 1 com.schriftgestaltung.layerOrderInGlyph.schwa 1 com.schriftgestaltung.layerOrderInGlyph.schwa-cy 2 com.schriftgestaltung.layerOrderInGlyph.scircumflex 1 com.schriftgestaltung.layerOrderInGlyph.scircumflex.salt 1 com.schriftgestaltung.layerOrderInGlyph.scommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.scommaaccent.salt 1 com.schriftgestaltung.layerOrderInGlyph.sdotbelow 1 com.schriftgestaltung.layerOrderInGlyph.sdotbelow.salt 1 com.schriftgestaltung.layerOrderInGlyph.second 1 com.schriftgestaltung.layerOrderInGlyph.section 1 com.schriftgestaltung.layerOrderInGlyph.semicolon 1 com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga 1 com.schriftgestaltung.layerOrderInGlyph.seven 1 com.schriftgestaltung.layerOrderInGlyph.seven.dnom 1 com.schriftgestaltung.layerOrderInGlyph.seven.numr 1 com.schriftgestaltung.layerOrderInGlyph.seveneighths 1 com.schriftgestaltung.layerOrderInGlyph.seveninferior 1 com.schriftgestaltung.layerOrderInGlyph.sevensuperior 1 com.schriftgestaltung.layerOrderInGlyph.sha-cy 2 com.schriftgestaltung.layerOrderInGlyph.shadedark 2 com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shadelight 2 com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shademedium 2 com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo 2 com.schriftgestaltung.layerOrderInGlyph.shcha-cy 2 com.schriftgestaltung.layerOrderInGlyph.sheqel 1 com.schriftgestaltung.layerOrderInGlyph.shha-cy 2 com.schriftgestaltung.layerOrderInGlyph.shha-cy.alt 2 com.schriftgestaltung.layerOrderInGlyph.shiftInControl 1 com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl 1 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.sigma 1 com.schriftgestaltung.layerOrderInGlyph.sigmafinal 1 com.schriftgestaltung.layerOrderInGlyph.six 1 com.schriftgestaltung.layerOrderInGlyph.six.dnom 1 com.schriftgestaltung.layerOrderInGlyph.six.numr 1 com.schriftgestaltung.layerOrderInGlyph.sixinferior 1 com.schriftgestaltung.layerOrderInGlyph.sixsuperior 1 com.schriftgestaltung.layerOrderInGlyph.slash 1 com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga 1 com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga 1 com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga 1 com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga 1 com.schriftgestaltung.layerOrderInGlyph.softhyphen 1 com.schriftgestaltung.layerOrderInGlyph.softsign-cy 2 com.schriftgestaltung.layerOrderInGlyph.space 1 com.schriftgestaltung.layerOrderInGlyph.spaceControl 1 com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit 1 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl 1 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl 1 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.sterling 1 com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto 1 com.schriftgestaltung.layerOrderInGlyph.substituteControl 1 com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl 1 com.schriftgestaltung.layerOrderInGlyph.summation 1 com.schriftgestaltung.layerOrderInGlyph.sunWithRays 1 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl 1 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.t 1 com.schriftgestaltung.layerOrderInGlyph.tau 1 com.schriftgestaltung.layerOrderInGlyph.tbar 1 com.schriftgestaltung.layerOrderInGlyph.tcaron 1 com.schriftgestaltung.layerOrderInGlyph.tcedilla 1 com.schriftgestaltung.layerOrderInGlyph.tcommaaccent 1 com.schriftgestaltung.layerOrderInGlyph.te-cy 2 com.schriftgestaltung.layerOrderInGlyph.te-cy.loclSRB 1 com.schriftgestaltung.layerOrderInGlyph.tenge 1 com.schriftgestaltung.layerOrderInGlyph.tesh 1 com.schriftgestaltung.layerOrderInGlyph.theta 1 com.schriftgestaltung.layerOrderInGlyph.thetamod 1 com.schriftgestaltung.layerOrderInGlyph.thorn 1 com.schriftgestaltung.layerOrderInGlyph.three 1 com.schriftgestaltung.layerOrderInGlyph.three.dnom 1 com.schriftgestaltung.layerOrderInGlyph.three.half 1 com.schriftgestaltung.layerOrderInGlyph.three.numr 1 com.schriftgestaltung.layerOrderInGlyph.threeeighths 1 com.schriftgestaltung.layerOrderInGlyph.threeinferior 1 com.schriftgestaltung.layerOrderInGlyph.threequarters 1 com.schriftgestaltung.layerOrderInGlyph.threesuperior 1 com.schriftgestaltung.layerOrderInGlyph.tilde 1 com.schriftgestaltung.layerOrderInGlyph.tildecomb 1 com.schriftgestaltung.layerOrderInGlyph.tildecomb.case 1 com.schriftgestaltung.layerOrderInGlyph.tonos 1 com.schriftgestaltung.layerOrderInGlyph.tonos.case 1 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle 1 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond 1 com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.trademark 1 com.schriftgestaltung.layerOrderInGlyph.tse-cy 2 com.schriftgestaltung.layerOrderInGlyph.tshe-cy 2 com.schriftgestaltung.layerOrderInGlyph.tugrik 1 com.schriftgestaltung.layerOrderInGlyph.two 1 com.schriftgestaltung.layerOrderInGlyph.two.dnom 1 com.schriftgestaltung.layerOrderInGlyph.two.half 1 com.schriftgestaltung.layerOrderInGlyph.two.numr 1 com.schriftgestaltung.layerOrderInGlyph.twoinferior 1 com.schriftgestaltung.layerOrderInGlyph.twosuperior 1 com.schriftgestaltung.layerOrderInGlyph.u 1 com.schriftgestaltung.layerOrderInGlyph.u-cy 2 com.schriftgestaltung.layerOrderInGlyph.uacute 1 com.schriftgestaltung.layerOrderInGlyph.ubreve 1 com.schriftgestaltung.layerOrderInGlyph.ucircumflex 1 com.schriftgestaltung.layerOrderInGlyph.udieresis 1 com.schriftgestaltung.layerOrderInGlyph.udotbelow 1 com.schriftgestaltung.layerOrderInGlyph.ugrave 1 com.schriftgestaltung.layerOrderInGlyph.uhookabove 1 com.schriftgestaltung.layerOrderInGlyph.uhorn 1 com.schriftgestaltung.layerOrderInGlyph.uhornacute 1 com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow 1 com.schriftgestaltung.layerOrderInGlyph.uhorngrave 1 com.schriftgestaltung.layerOrderInGlyph.uhornhookabove 1 com.schriftgestaltung.layerOrderInGlyph.uhorntilde 1 com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut 1 com.schriftgestaltung.layerOrderInGlyph.umacron 1 com.schriftgestaltung.layerOrderInGlyph.umacron-cy 2 com.schriftgestaltung.layerOrderInGlyph.underscore 1 com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq 1 com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq 1 com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq 1 com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga 1 com.schriftgestaltung.layerOrderInGlyph.underscoredbl 1 com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl 1 com.schriftgestaltung.layerOrderInGlyph.uogonek 1 com.schriftgestaltung.layerOrderInGlyph.upArrow 1 com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upDashArrow 1 com.schriftgestaltung.layerOrderInGlyph.upDownArrow 1 com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow 1 com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot 1 com.schriftgestaltung.layerOrderInGlyph.upperHalfArc 1 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftArc 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightArc 1 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo 2 com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle 1 com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.upsilon 1 com.schriftgestaltung.layerOrderInGlyph.upsilon-latin 1 com.schriftgestaltung.layerOrderInGlyph.upsilondieresis 1 com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos 1 com.schriftgestaltung.layerOrderInGlyph.upsilontonos 1 com.schriftgestaltung.layerOrderInGlyph.uring 1 com.schriftgestaltung.layerOrderInGlyph.ushort-cy 2 com.schriftgestaltung.layerOrderInGlyph.ustraight-cy 2 com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy 2 com.schriftgestaltung.layerOrderInGlyph.utilde 1 com.schriftgestaltung.layerOrderInGlyph.v 1 com.schriftgestaltung.layerOrderInGlyph.ve-cy 2 com.schriftgestaltung.layerOrderInGlyph.ve-cy.salt 2 com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct 1 com.schriftgestaltung.layerOrderInGlyph.venus 1 com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle 1 com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare 1 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl 1 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20 1 com.schriftgestaltung.layerOrderInGlyph.vhook 1 com.schriftgestaltung.layerOrderInGlyph.vturned 1 com.schriftgestaltung.layerOrderInGlyph.w 1 com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga 1 com.schriftgestaltung.layerOrderInGlyph.wacute 1 com.schriftgestaltung.layerOrderInGlyph.wcircumflex 1 com.schriftgestaltung.layerOrderInGlyph.wdieresis 1 com.schriftgestaltung.layerOrderInGlyph.wgrave 1 com.schriftgestaltung.layerOrderInGlyph.whiteBullet 1 com.schriftgestaltung.layerOrderInGlyph.whiteCircle 1 com.schriftgestaltung.layerOrderInGlyph.whiteDiamond 1 com.schriftgestaltung.layerOrderInGlyph.whiteHexagon 1 com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse 1 com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond 1 com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge 1 com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram 1 com.schriftgestaltung.layerOrderInGlyph.whitePentagon 1 com.schriftgestaltung.layerOrderInGlyph.whiteRect 1 com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge 1 com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace 1 com.schriftgestaltung.layerOrderInGlyph.whiteSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare 1 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse 1 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect 1 com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare 1 com.schriftgestaltung.layerOrderInGlyph.wmod 1 com.schriftgestaltung.layerOrderInGlyph.won 1 com.schriftgestaltung.layerOrderInGlyph.x 1 com.schriftgestaltung.layerOrderInGlyph.x.multiply 1 com.schriftgestaltung.layerOrderInGlyph.xi 1 com.schriftgestaltung.layerOrderInGlyph.y 1 com.schriftgestaltung.layerOrderInGlyph.yacute 1 com.schriftgestaltung.layerOrderInGlyph.ycircumflex 1 com.schriftgestaltung.layerOrderInGlyph.ydieresis 1 com.schriftgestaltung.layerOrderInGlyph.ydotbelow 1 com.schriftgestaltung.layerOrderInGlyph.yen 1 com.schriftgestaltung.layerOrderInGlyph.yeru-cy 2 com.schriftgestaltung.layerOrderInGlyph.ygrave 1 com.schriftgestaltung.layerOrderInGlyph.yhookabove 1 com.schriftgestaltung.layerOrderInGlyph.yi-cy 2 com.schriftgestaltung.layerOrderInGlyph.ymacron 1 com.schriftgestaltung.layerOrderInGlyph.ymod 1 com.schriftgestaltung.layerOrderInGlyph.ytilde 1 com.schriftgestaltung.layerOrderInGlyph.z 1 com.schriftgestaltung.layerOrderInGlyph.zacute 1 com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK 1 com.schriftgestaltung.layerOrderInGlyph.zcaron 1 com.schriftgestaltung.layerOrderInGlyph.zdotaccent 1 com.schriftgestaltung.layerOrderInGlyph.ze-cy 2 com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.ze-cy.salt 2 com.schriftgestaltung.layerOrderInGlyph.zero 1 com.schriftgestaltung.layerOrderInGlyph.zero.dnom 1 com.schriftgestaltung.layerOrderInGlyph.zero.numr 1 com.schriftgestaltung.layerOrderInGlyph.zero.zero 1 com.schriftgestaltung.layerOrderInGlyph.zeroinferior 1 com.schriftgestaltung.layerOrderInGlyph.zerosuperior 1 com.schriftgestaltung.layerOrderInGlyph.zeta 1 com.schriftgestaltung.layerOrderInGlyph.zhe-cy 2 com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR 2 com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy 2 com.schriftgestaltung.layerOrderInGlyph.zmod 1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lbar.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lbelt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lbelt.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lcaron.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lcommaaccent.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ldot.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ldot.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ldotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ldotbelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackP_ointer.glif ================================================ triaglf ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ uni25C2 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lackT_riangle.glif ================================================ uni25C0 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ uni25D6 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ uni2B16 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteDiamond ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ uni25E7 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D0 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftR_ightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ uni25C5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ uni25C3 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ uni25C1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_plus.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name less alignment -1 index 1 name plus ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_plus_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/less_slash_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lessequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lineseparator.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lira.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/liraT_urkish.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/literS_ign.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/llinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/llinebelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lmiddletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lmiddletilde.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/logicalnot.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/logicalnotR_eversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/longs.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfA_rc.glif ================================================ uni25E1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D2 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DB ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ uni2B12 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftA_rc.glif ================================================ uni25DF ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ uni25E3 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ uni2B14 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ uni25FA ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightA_rc.glif ================================================ uni25DE ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ uni25E2 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ uni25EA ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F6 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ uni25FF ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowernumeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lowlinecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lozenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/lslash.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/m.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/macronbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/macroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/macroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/manat.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mars.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ uni25FE ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumB_lackS_quare.glif ================================================ uni25FC ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ uni25FD ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ uni25FB ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/micro.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/minus.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/minute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/mu.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/n.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/naira.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/napostrophe.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nbspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ncaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ncommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/newlineC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nhookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nine.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nineinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ninesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nlinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nonbreakinghyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/note-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/notedbl-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/notequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/notidentical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nu.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/nullC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name U.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/numero.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/o.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/obarred-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/obreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ocircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/odieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/odotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oe.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ogonekcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ograve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ohungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omacronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omacrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omega.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omegatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omicron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/omicrontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/one.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/one.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/one.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/one.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onedotenleader.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oneeighth.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onehalf.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oneinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onequarter.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/onesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ordfeminine.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ordmasculine.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/orthogonal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/oslashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/otilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/overline.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/p.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/palochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/paragraph.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/parenleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/parenright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/partialdiff.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/pe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name u ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/percent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/percent_percent.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_period_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/period_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/periodcentered.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/perispomenicomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/perthousand.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/peseta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/peso.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/phi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/pi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/plus.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name plus ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_plus.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/plus_plus_plus.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/plusminus.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/prescription.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/product.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/psi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/published.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/punctuationspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey period ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/q.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/question_question_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/questiondown.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/questiongreek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblbase.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotedblright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quoteleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotereversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quoteright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotesinglbase.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/quotesingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/r.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/r.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/racute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/racute.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/radical.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ratio.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rcaron.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rcommaaccent.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rdotbelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name R.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/registered.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/replacementC_haracter.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/returnsymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rho.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackP_ointer.glif ================================================ triagrt ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ uni25B8 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lackT_riangle.glif ================================================ uni25B6 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ uni25D7 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ uni2B17 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ uni25E8 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ uni25BB ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ uni25B9 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ uni25B7 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ringbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ringcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ringcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ruble.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rupee.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/rupeeI_ndian.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/s.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/s.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sacute.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scaron.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scedilla.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/schwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/schwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scircumflex.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/scommaaccent.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sdotbelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/second.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/section.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit0.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit1.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit7.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit8.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/segmentedD_igit9.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/semicolon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seven.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seveneighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/seveninferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sevensuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sha-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shadedark.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shadedark.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shadelight.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shadelight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shademedium.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shademedium.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shcha-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sheqel.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shha-cy.alt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shha-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name I.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name O.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sigma.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sigmafinal.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/six.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/six.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/six.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sixinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sixsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/slash_slash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/softhyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/softsign-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/space.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/spaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name P.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/spadeB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name H.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sterling.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/strictlyequivalentto.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name period com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/summation.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/sunW_ithR_ays.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name Y.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/t.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tau.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tcedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/te-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name sha-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tesh.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/theta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/thetamod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/thorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/three.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/three.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/three.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/three.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threeeighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threeinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threequarters.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/threesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tildecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tildecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tonos.case.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ uni2BCA ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ uni2B18 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ uni2B13 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ uni2B15 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/trademark.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tse-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tshe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/tugrik.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/two.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/two.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/two.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/two.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/twoinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/twosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/u.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ubreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ucircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/udieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/udotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ugrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uhungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/umacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/umacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscore_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/underscoredbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name U.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ uni25B4 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upB_lackT_riangle.glif ================================================ triagup ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ashA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ uni25ED com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name upWhiteTriangle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ uni25EE ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ uni25B5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteT_riangle.glif ================================================ uni25B3 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ uni25EC com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name upWhiteTriangle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfA_rc.glif ================================================ uni25E0 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DA ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftA_rc.glif ================================================ uni25DC ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ uni25E4 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ uni25E9 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F4 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftT_riangle.glif ================================================ uni25F8 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ uni25D5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightA_rc.glif ================================================ uni25DD ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ uni25D4 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteCircle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ uni25E5 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F7 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperR_ightT_riangle.glif ================================================ uni25F9 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ uni25A7 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ uni25A8 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilon-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilondieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/upsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/uring.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ushort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ustraight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name ustraight-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/utilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/v.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ve-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ve-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/venus.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ uni25EB ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalF_illC_ircle.glif ================================================ uni25CD ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalF_illS_quare.glif ================================================ uni25A5 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name V.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/vhook.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/vturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/w.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/w_w_w.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/wacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/wcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/wdieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/wgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteB_ullet.glif ================================================ openbullet ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteC_ircle.glif ================================================ circle ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteD_iamond.glif ================================================ uni25C7 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteH_exagon.glif ================================================ uni2B21 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ uni2B2D ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ uni25A3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_argeS_quare.glif ================================================ uni2B1C ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ uni25F1 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ uni25F2 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ uni2B26 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ uni2B28 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteP_arallelogram.glif ================================================ uni25B1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteP_entagon.glif ================================================ uni2B20 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteR_ect.glif ================================================ uni25AD ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ uni25A2 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ uni2B2B ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_mallS_quare.glif ================================================ H18551 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteS_quare.glif ================================================ H22073 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ uni25F0 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ uni25F3 com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name whiteSquare ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ uni2B2F ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ uni25AF ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ uni2B1E ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/wmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/won.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/x.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/x.multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/xi.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/y.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/yacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ycircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ydieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ydotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/yen.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/yeru-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ygrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/yhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/yi-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ymacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ymod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ytilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/z.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/ze-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zero.zero.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey zero com.schriftgestaltung.Glyphs.glyph.rightMetricsKey zero ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zeroinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zerosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zeta.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zhedescender-cy.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name zhe-cy ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs/zmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/bar_braceright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/contents.plist ================================================ bar_braceright.liga bar_braceright.liga.glif braceleft braceleft.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif w_w_w.liga w_w_w.liga.glif ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/glyphs.public.background/w_w_w.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/layercontents.plist ================================================ public.default glyphs public.background glyphs.public.background ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/lib.plist ================================================ GSCornerRadius 15 GSOffsetHorizontal 95 GSOffsetMakeStroke 1 GSOffsetPosition 1 GSOffsetVertical 110 com.github.googlei18n.ufo2ft.filters name decomposeTransformedComponents pre 1 exclude ij_acute baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen baht.BRACKET.600 dollar.BRACKET.600 lam_alef-ar lam_alef-ar.fina lam_alef-ar.fina.short lam_alef-ar.short lam_lam_heh-ar allah-ar _tahabove name propagateAnchors pre 1 com.schriftgestaltung.appVersion 1352 com.schriftgestaltung.customName Italic com.schriftgestaltung.customParameter.GSFont.Axes Name Weight Tag wght com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment com.schriftgestaltung.customParameter.GSFont.disablesLastChange com.schriftgestaltung.customParameter.GSFont.note #Macro to convert the ligatures from editable to production mode def ligatureProcess(production): for glyph in Glyphs.font.glyphs: if glyph.color == 3: #2 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 1200 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 1200 elif glyph.color == 4: #3 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 2400 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 2400 elif glyph.color == 9: #4 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 3600 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 3600 ligatureProcess(True) #True for production mode, False for editable Settings for scaler for halves and thirds Third 30 30 30 40 40 40 80 -160 -340 Half 70 70 70 45 45 45 60 -220 -360 com.schriftgestaltung.customParameter.GSFont.useNiceNames 1 com.schriftgestaltung.customParameter.GSFontMaster.Master Icon Glyph Name i com.schriftgestaltung.customParameter.GSFontMaster.customValue 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue1 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue2 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue3 0 com.schriftgestaltung.customParameter.GSFontMaster.iconName com.schriftgestaltung.customParameter.GSFontMaster.weightValue 750 com.schriftgestaltung.customParameter.GSFontMaster.widthValue 1 com.schriftgestaltung.fontMasterID 84EC96F5-B4D5-4389-883B-FBB110B3398F com.schriftgestaltung.fontMasterOrder 2 com.schriftgestaltung.keyboardIncrement 1 com.schriftgestaltung.weight Bold com.schriftgestaltung.weightValue 750 com.schriftgestaltung.width Regular com.schriftgestaltung.widthValue 1 public.glyphOrder A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat dtail e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent b.alt dcaron.alt h.alt k.alt f.locl cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply f.salt l.salt lacute.salt lbar.salt lbelt.salt lcaron.salt lcommaaccent.salt ldot.salt ldotbelow.salt llinebelow.salt lmiddletilde.salt lslash.salt r.salt racute.salt rcaron.salt rcommaaccent.salt rdotbelow.salt s.salt sacute.salt scaron.salt scedilla.salt scircumflex.salt scommaaccent.salt sdotbelow.salt fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy shha-cy.alt ka-cy.loclBGR.alt iu-cy.loclBGR.alt de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ka-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB ge-cy.loclSRB pe-cy.loclSRB te-cy.loclSRB ve-cy.salt ze-cy.salt che-cy.salt chedescender-cy.salt Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol thetamod zmod zero one two three four five six seven eight nine zero.zero one.half two.half three.half four.half zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq anoteleia questiongreek punctuationspace space nbspace CR lineseparator .notdef baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand ratio strictlyequivalentto vectorOrCrossProduct greater.alt less.alt greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo boxDoubleDownAndHorizontal.stypo boxDoubleDownAndLeft.stypo boxDoubleDownAndRight.stypo boxDoubleHorizontal.stypo boxDoubleUpAndHorizontal.stypo boxDoubleUpAndLeft.stypo boxDoubleUpAndRight.stypo boxDoubleVertical.stypo boxDoubleVerticalAndHorizontal.stypo boxDoubleVerticalAndLeft.stypo boxDoubleVerticalAndRight.stypo boxDownDoubleAndHorizontalSingle.stypo boxDownDoubleAndLeftSingle.stypo boxDownDoubleAndRightSingle.stypo boxDownHeavyAndHorizontalLight.stypo boxDownHeavyAndLeftLight.stypo boxDownHeavyAndLeftUpLight.stypo boxDownHeavyAndRightLight.stypo boxDownHeavyAndRightUpLight.stypo boxDownHeavyAndUpHorizontalLight.stypo boxDownLightAndHorizontalHeavy.stypo boxDownLightAndLeftHeavy.stypo boxDownLightAndLeftUpHeavy.stypo boxDownLightAndRightHeavy.stypo boxDownLightAndRightUpHeavy.stypo boxDownLightAndUpHorizontalHeavy.stypo boxDownSingleAndHorizontalDouble.stypo boxDownSingleAndLeftDouble.stypo boxDownSingleAndRightDouble.stypo boxHeavyDoubleDashHorizontal.stypo boxHeavyDoubleDashVertical.stypo boxHeavyDown.stypo boxHeavyDownAndHorizontal.stypo boxHeavyDownAndLeft.stypo boxHeavyDownAndRight.stypo boxHeavyHorizontal.stypo boxHeavyLeft.stypo boxHeavyLeftAndLightRight.stypo boxHeavyQuadrupleDashHorizontal.stypo boxHeavyQuadrupleDashVertical.stypo boxHeavyRight.stypo boxHeavyTripleDashHorizontal.stypo boxHeavyTripleDashVertical.stypo boxHeavyUp.stypo boxHeavyUpAndHorizontal.stypo boxHeavyUpAndLeft.stypo boxHeavyUpAndLightDown.stypo boxHeavyUpAndRight.stypo boxHeavyVertical.stypo boxHeavyVerticalAndHorizontal.stypo boxHeavyVerticalAndLeft.stypo boxHeavyVerticalAndRight.stypo boxLeftDownHeavyAndRightUpLight.stypo boxLeftHeavyAndRightDownLight.stypo boxLeftHeavyAndRightUpLight.stypo boxLeftHeavyAndRightVerticalLight.stypo boxLeftLightAndRightDownHeavy.stypo boxLeftLightAndRightUpHeavy.stypo boxLeftLightAndRightVerticalHeavy.stypo boxLeftUpHeavyAndRightDownLight.stypo boxLightArcDownAndLeft.stypo boxLightArcDownAndRight.stypo boxLightArcUpAndLeft.stypo boxLightArcUpAndRight.stypo boxLightDiagonalCross.stypo boxLightDiagonalUpperLeftToLowerRight.stypo boxLightDiagonalUpperRightToLowerLeft.stypo boxLightDoubleDashHorizontal.stypo boxLightDoubleDashVertical.stypo boxLightDown.stypo boxLightDownAndHorizontal.stypo boxLightDownAndLeft.stypo boxLightDownAndRight.stypo boxLightHorizontal.stypo boxLightLeft.stypo boxLightLeftAndHeavyRight.stypo boxLightQuadrupleDashHorizontal.stypo boxLightQuadrupleDashVertical.stypo boxLightRight.stypo boxLightTripleDashHorizontal.stypo boxLightTripleDashVertical.stypo boxLightUp.stypo boxLightUpAndHeavyDown.stypo boxLightUpAndHorizontal.stypo boxLightUpAndLeft.stypo boxLightUpAndRight.stypo boxLightVertical.stypo boxLightVerticalAndHorizontal.stypo boxLightVerticalAndLeft.stypo boxLightVerticalAndRight.stypo boxRightDownHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftDownLight.stypo boxRightHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftVerticalLight.stypo boxRightLightAndLeftDownHeavy.stypo boxRightLightAndLeftUpHeavy.stypo boxRightLightAndLeftVerticalHeavy.stypo boxRightUpHeavyAndLeftDownLight.stypo boxUpDoubleAndHorizontalSingle.stypo boxUpDoubleAndLeftSingle.stypo boxUpDoubleAndRightSingle.stypo boxUpHeavyAndDownHorizontalLight.stypo boxUpHeavyAndHorizontalLight.stypo boxUpHeavyAndLeftDownLight.stypo boxUpHeavyAndLeftLight.stypo boxUpHeavyAndRightDownLight.stypo boxUpHeavyAndRightLight.stypo boxUpLightAndDownHorizontalHeavy.stypo boxUpLightAndHorizontalHeavy.stypo boxUpLightAndLeftDownHeavy.stypo boxUpLightAndLeftHeavy.stypo boxUpLightAndRightDownHeavy.stypo boxUpLightAndRightHeavy.stypo boxUpSingleAndHorizontalDouble.stypo boxUpSingleAndLeftDouble.stypo boxUpSingleAndRightDouble.stypo boxVerticalDoubleAndHorizontalSingle.stypo boxVerticalDoubleAndLeftSingle.stypo boxVerticalDoubleAndRightSingle.stypo boxVerticalHeavyAndHorizontalLight.stypo boxVerticalHeavyAndLeftLight.stypo boxVerticalHeavyAndRightLight.stypo boxVerticalLightAndHorizontalHeavy.stypo boxVerticalLightAndLeftHeavy.stypo boxVerticalLightAndRightHeavy.stypo boxVerticalSingleAndHorizontalDouble.stypo boxVerticalSingleAndLeftDouble.stypo boxVerticalSingleAndRightDouble.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar literSign dagger daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl replacementCharacter shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga equal_greater_greater.liga equal_less_less.liga greater_equal.liga greater_greater.liga greater_greater_equal.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_equal.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_equal_middle.seq bar_hyphen_middle.seq bar_underscore_middle.seq bar_bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_equal_middle.seq greater_hyphen_middle.seq greater_greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_equal_middle.seq less_hyphen_middle.seq less_less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo LIG public.postscriptNames A-cy uni0410 Abreveacute uni1EAE Abrevedotbelow uni1EB6 Abrevegrave uni1EB0 Abrevehookabove uni1EB2 Abrevetilde uni1EB4 Acaron uni01CD Acircumflexacute uni1EA4 Acircumflexdotbelow uni1EAC Acircumflexgrave uni1EA6 Acircumflexhookabove uni1EA8 Acircumflextilde uni1EAA Adotbelow uni1EA0 Ahookabove uni1EA2 Alpha-latin uni2C6D Asmall uni1D00 Astroke uni023A Be-cy uni0411 Che-cy uni0427 Chedescender-cy uni04B6 Cstroke uni023B Dafrican uni0189 De-cy uni0414 De-cy.loclBGR uni0414.loclBGR Delta uni0394 Dje-cy uni0402 Dze-cy uni0405 Dzhe-cy uni040F E-cy uni0404 Ecircumflexacute uni1EBE Ecircumflexdotbelow uni1EC6 Ecircumflexgrave uni1EC0 Ecircumflexhookabove uni1EC2 Ecircumflextilde uni1EC4 Edotbelow uni1EB8 Ef-cy uni0424 Ef-cy.loclBGR uni0424.loclBGR Ehookabove uni1EBA El-cy uni041B El-cy.loclBGR uni041B.loclBGR Em-cy uni041C En-cy uni041D Endescender-cy uni04A2 Eopen uni0190 Er-cy uni0420 Ereversed uni018E Ereversed-cy uni042D Es-cy uni0421 Esh uni01A9 Etilde uni1EBC Ezh uni01B7 Fhook uni0191 Gammaafrican uni0194 Gcommaaccent uni0122 Ge-cy uni0413 Germandbls uni1E9E Ghestroke-cy uni0492 Gheupturn-cy uni0490 Gje-cy uni0403 Gsmall uni0262 Gstroke uni01E4 Ha-cy uni0425 Hadescender-cy uni04B2 Hardsign-cy uni042A Hcaron uni021E Hdotbelow uni1E24 I-cy uni0406 Ia-cy uni042F Idotbelow uni1ECA Ie-cy uni0415 Iegrave-cy uni0400 Ihookabove uni1EC8 Ii-cy uni0418 Iigrave-cy uni040D Iishort-cy uni0419 Imacron-cy uni04E2 Io-cy uni0401 Iotaafrican uni0196 Ismall uni026A Iu-cy uni042E Jacute uni00A40301 Je-cy uni0408 Ka-cy uni041A Kacute uni1E30 Kadescender-cy uni049A KaiSymbol uni03CF Kcommaaccent uni0136 Kdotbelow uni1E32 Kje-cy uni040C Klinebelow uni1E34 Lbar uni023D Lcommaaccent uni013B Ldotbelow uni1E36 Lje-cy uni0409 Llinebelow uni1E3A Lmiddletilde uni2C62 Lsmall uni029F Ncommaaccent uni0145 Nhookleft uni019D Nje-cy uni040A Nlinebelow uni1E48 O-cy uni041E Obarred-cy uni04E8 Ocircumflexacute uni1ED0 Ocircumflexdotbelow uni1ED8 Ocircumflexgrave uni1ED2 Ocircumflexhookabove uni1ED4 Ocircumflextilde uni1ED6 Odotbelow uni1ECC Ohm uni2126 Ohookabove uni1ECE Ohornacute uni1EDA Ohorndotbelow uni1EE2 Ohorngrave uni1EDC Ohornhookabove uni1EDE Ohorntilde uni1EE0 Omacronacute uni1E52 Omacrongrave uni1E50 Omega uni03A9 Oogonek uni01EA Oopen uni0186 Palochka-cy uni04C0 Pe-cy uni041F Rcommaaccent uni0156 Rdotbelow uni1E5A Schwa uni018F Schwa-cy uni04D8 Scommaaccent uni0218 Sdotbelow uni1E62 Sha-cy uni0428 Shcha-cy uni0429 Shha-cy uni04BA Softsign-cy uni042C Tcedilla uni0162 Tcommaaccent uni021A Tdiagonalstroke uni023E Te-cy uni0422 Tlinebelow uni1E6E Tse-cy uni0426 Tshe-cy uni040B U-cy uni0423 Udotbelow uni1EE4 Uhookabove uni1EE6 Uhornacute uni1EE8 Uhorndotbelow uni1EF0 Uhorngrave uni1EEA Uhornhookabove uni1EEC Uhorntilde uni1EEE Umacron-cy uni04EE Upsilonafrican uni01B1 Ushort-cy uni040E Ustraight-cy uni04AE Ustraightstroke-cy uni04B0 Ve-cy uni0412 Vhook uni01B2 Vturned uni0245 Ydotbelow uni1EF4 Yeru-cy uni042B Yhookabove uni1EF6 Yi-cy uni0407 Ymacron uni0232 Ytilde uni1EF8 Ze-cy uni0417 Zhe-cy uni0416 Zhedescender-cy uni0496 a-cy uni0430 abreveacute uni1EAF abrevedotbelow uni1EB7 abrevegrave uni1EB1 abrevehookabove uni1EB3 abrevetilde uni1EB5 acaron uni01CE acircumflexacute uni1EA5 acircumflexdotbelow uni1EAD acircumflexgrave uni1EA7 acircumflexhookabove uni1EA9 acircumflextilde uni1EAB acknowledgeControl uni2406 acknowledgeControl.ss20 uni2406.ss20 acutetonecomb uni0341 adotbelow uni1EA1 ahookabove uni1EA3 alpha-latin uni0251 apostrophemod uni02BC backspaceControl uni2408 backspaceControl.ss20 uni2408.ss20 baht uni0E3F baht.BRACKET.600 uni0E3F.BRACKET.600 be-cy uni0431 be-cy.loclSRB uni0431.loclSRB bellControl uni2407 bellControl.ss20 uni2407.ss20 bitcoin uni20BF blackCircle uni25CF blackDiamond uni25C6 blackHexagon uni2B22 blackHorizontalEllipse uni2B2C blackInWhiteDiamond uni25C8 blackLargeCircle uni2B24 blackLargeSquare uni2B1B blackMediumDiamond uni2B25 blackMediumDownTriangleCentred uni2BC6 blackMediumLeftTriangleCentred uni2BC7 blackMediumLozenge uni2B27 blackMediumRightTriangleCentred uni2BC8 blackMediumUpTriangleCentred uni2BC5 blackParallelogram uni25B0 blackPentagon uni2B1F blackSmallDiamond uni2B29 blackSmallLozenge uni2B2A blackSmallSquare uni25AA blackSmilingFace invsmileface blackSquare filledbox blackVerticalEllipse uni2B2E blackVerticalRect uni25AE blackVerysmallSquare uni2B1D blank uni2423 blank-braille uni2800 blankSymbol uni2422 bottomHalfBlackCircle uni2BCB bottomHalfBlackDiamond uni2B19 boxDoubleDownAndHorizontal uni2566 boxDoubleDownAndHorizontal.stypo uni2566.stypo boxDoubleDownAndLeft uni2557 boxDoubleDownAndLeft.stypo uni2557.stypo boxDoubleDownAndRight uni2554 boxDoubleDownAndRight.stypo uni2554.stypo boxDoubleHorizontal uni2550 boxDoubleHorizontal.stypo uni2550.stypo boxDoubleUpAndHorizontal uni2569 boxDoubleUpAndHorizontal.stypo uni2569.stypo boxDoubleUpAndLeft uni255D boxDoubleUpAndLeft.stypo uni255D.stypo boxDoubleUpAndRight uni255A boxDoubleUpAndRight.stypo uni255A.stypo boxDoubleVertical uni2551 boxDoubleVertical.stypo uni2551.stypo boxDoubleVerticalAndHorizontal uni256C boxDoubleVerticalAndHorizontal.stypo uni256C.stypo boxDoubleVerticalAndLeft uni2563 boxDoubleVerticalAndLeft.stypo uni2563.stypo boxDoubleVerticalAndRight uni2560 boxDoubleVerticalAndRight.stypo uni2560.stypo boxDownDoubleAndHorizontalSingle uni2565 boxDownDoubleAndHorizontalSingle.stypo uni2565.stypo boxDownDoubleAndLeftSingle uni2556 boxDownDoubleAndLeftSingle.stypo uni2556.stypo boxDownDoubleAndRightSingle uni2553 boxDownDoubleAndRightSingle.stypo uni2553.stypo boxDownHeavyAndHorizontalLight uni2530 boxDownHeavyAndHorizontalLight.stypo uni2530.stypo boxDownHeavyAndLeftLight uni2512 boxDownHeavyAndLeftLight.stypo uni2512.stypo boxDownHeavyAndLeftUpLight uni2527 boxDownHeavyAndLeftUpLight.stypo uni2527.stypo boxDownHeavyAndRightLight uni250E boxDownHeavyAndRightLight.stypo uni250E.stypo boxDownHeavyAndRightUpLight uni251F boxDownHeavyAndRightUpLight.stypo uni251F.stypo boxDownHeavyAndUpHorizontalLight uni2541 boxDownHeavyAndUpHorizontalLight.stypo uni2541.stypo boxDownLightAndHorizontalHeavy uni252F boxDownLightAndHorizontalHeavy.stypo uni252F.stypo boxDownLightAndLeftHeavy uni2511 boxDownLightAndLeftHeavy.stypo uni2511.stypo boxDownLightAndLeftUpHeavy uni2529 boxDownLightAndLeftUpHeavy.stypo uni2529.stypo boxDownLightAndRightHeavy uni250D boxDownLightAndRightHeavy.stypo uni250D.stypo boxDownLightAndRightUpHeavy uni2521 boxDownLightAndRightUpHeavy.stypo uni2521.stypo boxDownLightAndUpHorizontalHeavy uni2547 boxDownLightAndUpHorizontalHeavy.stypo uni2547.stypo boxDownSingleAndHorizontalDouble uni2564 boxDownSingleAndHorizontalDouble.stypo uni2564.stypo boxDownSingleAndLeftDouble uni2555 boxDownSingleAndLeftDouble.stypo uni2555.stypo boxDownSingleAndRightDouble uni2552 boxDownSingleAndRightDouble.stypo uni2552.stypo boxHeavyDoubleDashHorizontal uni254D boxHeavyDoubleDashHorizontal.stypo uni254D.stypo boxHeavyDoubleDashVertical uni254F boxHeavyDoubleDashVertical.stypo uni254F.stypo boxHeavyDown uni257B boxHeavyDown.stypo uni257B.stypo boxHeavyDownAndHorizontal uni2533 boxHeavyDownAndHorizontal.stypo uni2533.stypo boxHeavyDownAndLeft uni2513 boxHeavyDownAndLeft.stypo uni2513.stypo boxHeavyDownAndRight uni250F boxHeavyDownAndRight.stypo uni250F.stypo boxHeavyHorizontal uni2501 boxHeavyHorizontal.stypo uni2501.stypo boxHeavyLeft uni2578 boxHeavyLeft.stypo uni2578.stypo boxHeavyLeftAndLightRight uni257E boxHeavyLeftAndLightRight.stypo uni257E.stypo boxHeavyQuadrupleDashHorizontal uni2509 boxHeavyQuadrupleDashHorizontal.stypo uni2509.stypo boxHeavyQuadrupleDashVertical uni250B boxHeavyQuadrupleDashVertical.stypo uni250B.stypo boxHeavyRight uni257A boxHeavyRight.stypo uni257A.stypo boxHeavyTripleDashHorizontal uni2505 boxHeavyTripleDashHorizontal.stypo uni2505.stypo boxHeavyTripleDashVertical uni2507 boxHeavyTripleDashVertical.stypo uni2507.stypo boxHeavyUp uni2579 boxHeavyUp.stypo uni2579.stypo boxHeavyUpAndHorizontal uni253B boxHeavyUpAndHorizontal.stypo uni253B.stypo boxHeavyUpAndLeft uni251B boxHeavyUpAndLeft.stypo uni251B.stypo boxHeavyUpAndLightDown uni257F boxHeavyUpAndLightDown.stypo uni257F.stypo boxHeavyUpAndRight uni2517 boxHeavyUpAndRight.stypo uni2517.stypo boxHeavyVertical uni2503 boxHeavyVertical.stypo uni2503.stypo boxHeavyVerticalAndHorizontal uni254B boxHeavyVerticalAndHorizontal.stypo uni254B.stypo boxHeavyVerticalAndLeft uni252B boxHeavyVerticalAndLeft.stypo uni252B.stypo boxHeavyVerticalAndRight uni2523 boxHeavyVerticalAndRight.stypo uni2523.stypo boxLeftDownHeavyAndRightUpLight uni2545 boxLeftDownHeavyAndRightUpLight.stypo uni2545.stypo boxLeftHeavyAndRightDownLight uni252D boxLeftHeavyAndRightDownLight.stypo uni252D.stypo boxLeftHeavyAndRightUpLight uni2535 boxLeftHeavyAndRightUpLight.stypo uni2535.stypo boxLeftHeavyAndRightVerticalLight uni253D boxLeftHeavyAndRightVerticalLight.stypo uni253D.stypo boxLeftLightAndRightDownHeavy uni2532 boxLeftLightAndRightDownHeavy.stypo uni2532.stypo boxLeftLightAndRightUpHeavy uni253A boxLeftLightAndRightUpHeavy.stypo uni253A.stypo boxLeftLightAndRightVerticalHeavy uni254A boxLeftLightAndRightVerticalHeavy.stypo uni254A.stypo boxLeftUpHeavyAndRightDownLight uni2543 boxLeftUpHeavyAndRightDownLight.stypo uni2543.stypo boxLightArcDownAndLeft uni256E boxLightArcDownAndLeft.stypo uni256E.stypo boxLightArcDownAndRight uni256D boxLightArcDownAndRight.stypo uni256D.stypo boxLightArcUpAndLeft uni256F boxLightArcUpAndLeft.stypo uni256F.stypo boxLightArcUpAndRight uni2570 boxLightArcUpAndRight.stypo uni2570.stypo boxLightDiagonalCross uni2573 boxLightDiagonalCross.stypo uni2573.stypo boxLightDiagonalUpperLeftToLowerRight uni2572 boxLightDiagonalUpperLeftToLowerRight.stypo uni2572.stypo boxLightDiagonalUpperRightToLowerLeft uni2571 boxLightDiagonalUpperRightToLowerLeft.stypo uni2571.stypo boxLightDoubleDashHorizontal uni254C boxLightDoubleDashHorizontal.stypo uni254C.stypo boxLightDoubleDashVertical uni254E boxLightDoubleDashVertical.stypo uni254E.stypo boxLightDown uni2577 boxLightDown.stypo uni2577.stypo boxLightDownAndHorizontal uni252C boxLightDownAndHorizontal.stypo uni252C.stypo boxLightDownAndLeft uni2510 boxLightDownAndLeft.stypo uni2510.stypo boxLightDownAndRight uni250C boxLightDownAndRight.stypo uni250C.stypo boxLightHorizontal uni2500 boxLightHorizontal.stypo uni2500.stypo boxLightLeft uni2574 boxLightLeft.stypo uni2574.stypo boxLightLeftAndHeavyRight uni257C boxLightLeftAndHeavyRight.stypo uni257C.stypo boxLightQuadrupleDashHorizontal uni2508 boxLightQuadrupleDashHorizontal.stypo uni2508.stypo boxLightQuadrupleDashVertical uni250A boxLightQuadrupleDashVertical.stypo uni250A.stypo boxLightRight uni2576 boxLightRight.stypo uni2576.stypo boxLightTripleDashHorizontal uni2504 boxLightTripleDashHorizontal.stypo uni2504.stypo boxLightTripleDashVertical uni2506 boxLightTripleDashVertical.stypo uni2506.stypo boxLightUp uni2575 boxLightUp.stypo uni2575.stypo boxLightUpAndHeavyDown uni257D boxLightUpAndHeavyDown.stypo uni257D.stypo boxLightUpAndHorizontal uni2534 boxLightUpAndHorizontal.stypo uni2534.stypo boxLightUpAndLeft uni2518 boxLightUpAndLeft.stypo uni2518.stypo boxLightUpAndRight uni2514 boxLightUpAndRight.stypo uni2514.stypo boxLightVertical uni2502 boxLightVertical.stypo uni2502.stypo boxLightVerticalAndHorizontal uni253C boxLightVerticalAndHorizontal.stypo uni253C.stypo boxLightVerticalAndLeft uni2524 boxLightVerticalAndLeft.stypo uni2524.stypo boxLightVerticalAndRight uni251C boxLightVerticalAndRight.stypo uni251C.stypo boxRightDownHeavyAndLeftUpLight uni2546 boxRightDownHeavyAndLeftUpLight.stypo uni2546.stypo boxRightHeavyAndLeftDownLight uni252E boxRightHeavyAndLeftDownLight.stypo uni252E.stypo boxRightHeavyAndLeftUpLight uni2536 boxRightHeavyAndLeftUpLight.stypo uni2536.stypo boxRightHeavyAndLeftVerticalLight uni253E boxRightHeavyAndLeftVerticalLight.stypo uni253E.stypo boxRightLightAndLeftDownHeavy uni2531 boxRightLightAndLeftDownHeavy.stypo uni2531.stypo boxRightLightAndLeftUpHeavy uni2539 boxRightLightAndLeftUpHeavy.stypo uni2539.stypo boxRightLightAndLeftVerticalHeavy uni2549 boxRightLightAndLeftVerticalHeavy.stypo uni2549.stypo boxRightUpHeavyAndLeftDownLight uni2544 boxRightUpHeavyAndLeftDownLight.stypo uni2544.stypo boxUpDoubleAndHorizontalSingle uni2568 boxUpDoubleAndHorizontalSingle.stypo uni2568.stypo boxUpDoubleAndLeftSingle uni255C boxUpDoubleAndLeftSingle.stypo uni255C.stypo boxUpDoubleAndRightSingle uni2559 boxUpDoubleAndRightSingle.stypo uni2559.stypo boxUpHeavyAndDownHorizontalLight uni2540 boxUpHeavyAndDownHorizontalLight.stypo uni2540.stypo boxUpHeavyAndHorizontalLight uni2538 boxUpHeavyAndHorizontalLight.stypo uni2538.stypo boxUpHeavyAndLeftDownLight uni2526 boxUpHeavyAndLeftDownLight.stypo uni2526.stypo boxUpHeavyAndLeftLight uni251A boxUpHeavyAndLeftLight.stypo uni251A.stypo boxUpHeavyAndRightDownLight uni251E boxUpHeavyAndRightDownLight.stypo uni251E.stypo boxUpHeavyAndRightLight uni2516 boxUpHeavyAndRightLight.stypo uni2516.stypo boxUpLightAndDownHorizontalHeavy uni2548 boxUpLightAndDownHorizontalHeavy.stypo uni2548.stypo boxUpLightAndHorizontalHeavy uni2537 boxUpLightAndHorizontalHeavy.stypo uni2537.stypo boxUpLightAndLeftDownHeavy uni252A boxUpLightAndLeftDownHeavy.stypo uni252A.stypo boxUpLightAndLeftHeavy uni2519 boxUpLightAndLeftHeavy.stypo uni2519.stypo boxUpLightAndRightDownHeavy uni2522 boxUpLightAndRightDownHeavy.stypo uni2522.stypo boxUpLightAndRightHeavy uni2515 boxUpLightAndRightHeavy.stypo uni2515.stypo boxUpSingleAndHorizontalDouble uni2567 boxUpSingleAndHorizontalDouble.stypo uni2567.stypo boxUpSingleAndLeftDouble uni255B boxUpSingleAndLeftDouble.stypo uni255B.stypo boxUpSingleAndRightDouble uni2558 boxUpSingleAndRightDouble.stypo uni2558.stypo boxVerticalDoubleAndHorizontalSingle uni256B boxVerticalDoubleAndHorizontalSingle.stypo uni256B.stypo boxVerticalDoubleAndLeftSingle uni2562 boxVerticalDoubleAndLeftSingle.stypo uni2562.stypo boxVerticalDoubleAndRightSingle uni255F boxVerticalDoubleAndRightSingle.stypo uni255F.stypo boxVerticalHeavyAndHorizontalLight uni2542 boxVerticalHeavyAndHorizontalLight.stypo uni2542.stypo boxVerticalHeavyAndLeftLight uni2528 boxVerticalHeavyAndLeftLight.stypo uni2528.stypo boxVerticalHeavyAndRightLight uni2520 boxVerticalHeavyAndRightLight.stypo uni2520.stypo boxVerticalLightAndHorizontalHeavy uni253F boxVerticalLightAndHorizontalHeavy.stypo uni253F.stypo boxVerticalLightAndLeftHeavy uni2525 boxVerticalLightAndLeftHeavy.stypo uni2525.stypo boxVerticalLightAndRightHeavy uni251D boxVerticalLightAndRightHeavy.stypo uni251D.stypo boxVerticalSingleAndHorizontalDouble uni256A boxVerticalSingleAndHorizontalDouble.stypo uni256A.stypo boxVerticalSingleAndLeftDouble uni2561 boxVerticalSingleAndLeftDouble.stypo uni2561.stypo boxVerticalSingleAndRightDouble uni255E boxVerticalSingleAndRightDouble.stypo uni255E.stypo brevecomb uni0306 brevecomb-cy brevecombcy brevecomb-cy.case brevecombcy.case brevecomb.case uni0306.case bulletoperator uni2219 bullseye uni25CE cancelControl uni2418 cancelControl.ss20 uni2418.ss20 careof uni2105 caroncomb uni030C caroncomb.case uni030C.case carriageReturnControl uni240D carriageReturnControl.ss20 uni240D.ss20 cedi uni20B5 cedillacomb uni0327 che-cy uni0447 che-cy.salt uni0447.001 checkmark uni2713 chedescender-cy uni04B7 chedescender-cy.salt uni04B7.001 circumflexcomb uni0302 circumflexcomb.case uni0302.case clubBlackSuit club colonsign colonmonetary colontriangularmod uni02D0 commaabovecomb uni0313 commaaboverightcomb uni0315 commaaccentcomb uni0326 commaturnedabovecomb uni0312 commaturnedmod uni02BB crosshatchFillSquare uni25A6 dashdownArrow uni21E3 dataLinkEscapeControl uni2410 dataLinkEscapeControl.ss20 uni2410.ss20 de-cy uni0434 de-cy.loclBGR uni0434.loclBGR deleteControl uni2421 deleteFormTwoControl uni2425 deviceControlFourControl uni2414 deviceControlOneControl uni2411 deviceControlThreeControl uni2413 deviceControlTwoControl uni2412 diagonalcrosshatchFillSquare uni25A9 diamondBlackSuit diamond dieresiscomb uni0308 dieresiscomb.case uni0308.case divisionslash uni2215 dje-cy uni0452 dotaccentcomb uni0307 dotaccentcomb.case uni0307.case dots1-braille uni2801 dots12-braille uni2803 dots123-braille uni2807 dots1234-braille uni280F dots12345-braille uni281F dots123456-braille uni283F dots1234567-braille uni287F dots12345678-braille uni28FF dots1234568-braille uni28BF dots123457-braille uni285F dots1234578-braille uni28DF dots123458-braille uni289F dots12346-braille uni282F dots123467-braille uni286F dots1234678-braille uni28EF dots123468-braille uni28AF dots12347-braille uni284F dots123478-braille uni28CF dots12348-braille uni288F dots1235-braille uni2817 dots12356-braille uni2837 dots123567-braille uni2877 dots1235678-braille uni28F7 dots123568-braille uni28B7 dots12357-braille uni2857 dots123578-braille uni28D7 dots12358-braille uni2897 dots1236-braille uni2827 dots12367-braille uni2867 dots123678-braille uni28E7 dots12368-braille uni28A7 dots1237-braille uni2847 dots12378-braille uni28C7 dots1238-braille uni2887 dots124-braille uni280B dots1245-braille uni281B dots12456-braille uni283B dots124567-braille uni287B dots1245678-braille uni28FB dots124568-braille uni28BB dots12457-braille uni285B dots124578-braille uni28DB dots12458-braille uni289B dots1246-braille uni282B dots12467-braille uni286B dots124678-braille uni28EB dots12468-braille uni28AB dots1247-braille uni284B dots12478-braille uni28CB dots1248-braille uni288B dots125-braille uni2813 dots1256-braille uni2833 dots12567-braille uni2873 dots125678-braille uni28F3 dots12568-braille uni28B3 dots1257-braille uni2853 dots12578-braille uni28D3 dots1258-braille uni2893 dots126-braille uni2823 dots1267-braille uni2863 dots12678-braille uni28E3 dots1268-braille uni28A3 dots127-braille uni2843 dots1278-braille uni28C3 dots128-braille uni2883 dots13-braille uni2805 dots134-braille uni280D dots1345-braille uni281D dots13456-braille uni283D dots134567-braille uni287D dots1345678-braille uni28FD dots134568-braille uni28BD dots13457-braille uni285D dots134578-braille uni28DD dots13458-braille uni289D dots1346-braille uni282D dots13467-braille uni286D dots134678-braille uni28ED dots13468-braille uni28AD dots1347-braille uni284D dots13478-braille uni28CD dots1348-braille uni288D dots135-braille uni2815 dots1356-braille uni2835 dots13567-braille uni2875 dots135678-braille uni28F5 dots13568-braille uni28B5 dots1357-braille uni2855 dots13578-braille uni28D5 dots1358-braille uni2895 dots136-braille uni2825 dots1367-braille uni2865 dots13678-braille uni28E5 dots1368-braille uni28A5 dots137-braille uni2845 dots1378-braille uni28C5 dots138-braille uni2885 dots14-braille uni2809 dots145-braille uni2819 dots1456-braille uni2839 dots14567-braille uni2879 dots145678-braille uni28F9 dots14568-braille uni28B9 dots1457-braille uni2859 dots14578-braille uni28D9 dots1458-braille uni2899 dots146-braille uni2829 dots1467-braille uni2869 dots14678-braille uni28E9 dots1468-braille uni28A9 dots147-braille uni2849 dots1478-braille uni28C9 dots148-braille uni2889 dots15-braille uni2811 dots156-braille uni2831 dots1567-braille uni2871 dots15678-braille uni28F1 dots1568-braille uni28B1 dots157-braille uni2851 dots1578-braille uni28D1 dots158-braille uni2891 dots16-braille uni2821 dots167-braille uni2861 dots1678-braille uni28E1 dots168-braille uni28A1 dots17-braille uni2841 dots178-braille uni28C1 dots18-braille uni2881 dots2-braille uni2802 dots23-braille uni2806 dots234-braille uni280E dots2345-braille uni281E dots23456-braille uni283E dots234567-braille uni287E dots2345678-braille uni28FE dots234568-braille uni28BE dots23457-braille uni285E dots234578-braille uni28DE dots23458-braille uni289E dots2346-braille uni282E dots23467-braille uni286E dots234678-braille uni28EE dots23468-braille uni28AE dots2347-braille uni284E dots23478-braille uni28CE dots2348-braille uni288E dots235-braille uni2816 dots2356-braille uni2836 dots23567-braille uni2876 dots235678-braille uni28F6 dots23568-braille uni28B6 dots2357-braille uni2856 dots23578-braille uni28D6 dots2358-braille uni2896 dots236-braille uni2826 dots2367-braille uni2866 dots23678-braille uni28E6 dots2368-braille uni28A6 dots237-braille uni2846 dots2378-braille uni28C6 dots238-braille uni2886 dots24-braille uni280A dots245-braille uni281A dots2456-braille uni283A dots24567-braille uni287A dots245678-braille uni28FA dots24568-braille uni28BA dots2457-braille uni285A dots24578-braille uni28DA dots2458-braille uni289A dots246-braille uni282A dots2467-braille uni286A dots24678-braille uni28EA dots2468-braille uni28AA dots247-braille uni284A dots2478-braille uni28CA dots248-braille uni288A dots25-braille uni2812 dots256-braille uni2832 dots2567-braille uni2872 dots25678-braille uni28F2 dots2568-braille uni28B2 dots257-braille uni2852 dots2578-braille uni28D2 dots258-braille uni2892 dots26-braille uni2822 dots267-braille uni2862 dots2678-braille uni28E2 dots268-braille uni28A2 dots27-braille uni2842 dots278-braille uni28C2 dots28-braille uni2882 dots3-braille uni2804 dots34-braille uni280C dots345-braille uni281C dots3456-braille uni283C dots34567-braille uni287C dots345678-braille uni28FC dots34568-braille uni28BC dots3457-braille uni285C dots34578-braille uni28DC dots3458-braille uni289C dots346-braille uni282C dots3467-braille uni286C dots34678-braille uni28EC dots3468-braille uni28AC dots347-braille uni284C dots3478-braille uni28CC dots348-braille uni288C dots35-braille uni2814 dots356-braille uni2834 dots3567-braille uni2874 dots35678-braille uni28F4 dots3568-braille uni28B4 dots357-braille uni2854 dots3578-braille uni28D4 dots358-braille uni2894 dots36-braille uni2824 dots367-braille uni2864 dots3678-braille uni28E4 dots368-braille uni28A4 dots37-braille uni2844 dots378-braille uni28C4 dots38-braille uni2884 dots4-braille uni2808 dots45-braille uni2818 dots456-braille uni2838 dots4567-braille uni2878 dots45678-braille uni28F8 dots4568-braille uni28B8 dots457-braille uni2858 dots4578-braille uni28D8 dots458-braille uni2898 dots46-braille uni2828 dots467-braille uni2868 dots4678-braille uni28E8 dots468-braille uni28A8 dots47-braille uni2848 dots478-braille uni28C8 dots48-braille uni2888 dots5-braille uni2810 dots56-braille uni2830 dots567-braille uni2870 dots5678-braille uni28F0 dots568-braille uni28B0 dots57-braille uni2850 dots578-braille uni28D0 dots58-braille uni2890 dots6-braille uni2820 dots67-braille uni2860 dots678-braille uni28E0 dots68-braille uni28A0 dots7-braille uni2840 dots78-braille uni28C0 dots8-braille uni2880 dottedCircle uni25CC dottedSquare uni2B1A downArrow arrowdown downBlackSmallTriangle uni25BE downBlackTriangle triagdn downTipLeftArrow uni21B2 downWhiteSmallTriangle uni25BF downWhiteTriangle uni25BD dtail uni0256 dze-cy uni0455 dzhe-cy uni045F e-cy uni0454 ecircumflexacute uni1EBF ecircumflexdotbelow uni1EC7 ecircumflexgrave uni1EC1 ecircumflexhookabove uni1EC3 ecircumflextilde uni1EC5 edotbelow uni1EB9 ef-cy uni0444 ehookabove uni1EBB eightinferior uni2088 eightsuperior uni2078 el-cy uni043B em-cy uni043C en-cy uni043D endOfMediumControl uni2419 endOfMediumControl.ss20 uni2419.ss20 endOfTextControl uni2403 endOfTextControl.ss20 uni2403.ss20 endOfTransmissionBlockControl uni2417 endOfTransmissionBlockControl.ss20 uni2417.ss20 endOfTransmissionControl uni2404 endOfTransmissionControl.ss20 uni2404.ss20 endescender-cy uni04A3 enquiryControl uni2405 enquiryControl.ss20 uni2405.ss20 eopen uni025B er-cy uni0440 ereversed-cy uni044D es-cy uni0441 escapeControl uni241B escapeControl.ss20 uni241B.ss20 esh uni0283 etilde uni1EBD eturned uni01DD euro Euro eurocurrency uni20A0 exclamdouble exclamdbl ezh uni0292 fileSeparatorControl uni241C filledRect filledrect firsttonechinese uni02C9 fisheye uni25C9 fiveinferior uni2085 fivesuperior uni2075 formFeedControl uni240C formFeedControl.ss20 uni240C.ss20 fourinferior uni2084 foursuperior uni2074 fullBlock block fullBlock.stypo block.stypo gamma-latin uni0263 gcommaaccent uni0123 ge-cy uni0433 ge-cy.loclSRB uni0433.loclSRB ghestroke-cy uni0493 gheupturn-cy uni0491 gje-cy uni0453 glottalstop uni0294 glottalstopmod uni02C0 glottalstopreversed uni0295 gravetonecomb uni0340 groupSeparatorControl uni241D gstroke uni01E5 guarani uni20B2 guillemetleft guillemotleft guillemetright guillemotright ha-cy uni0445 hadescender-cy uni04B3 hardsign-cy uni044A hcaron uni021F hdotbelow uni1E25 heartBlackSuit heart heavyleftpointinganglebracketornament uni2770 heavyleftpointinganglequotationmarkornament uni276E heavyrightpointinganglebracketornament uni2771 heavyrightpointinganglequotationmarkornament uni276F horizontalBlackHexagon uni2B23 horizontalFillSquare uni25A4 horizontalTabulationControl uni2409 horizontalTabulationControl.ss20 uni2409.ss20 horizontalbar uni2015 horizontallineextension uni23AF horncomb uni031B horncomb.case uni031B.case hryvnia uni20B4 hungarumlautcomb uni030B hungarumlautcomb.case uni030B.case hyphentwo uni2010 i-cy uni0456 ia-cy uni044F idotbelow uni1ECB idotless dotlessi ie-cy uni0435 iegrave-cy uni0450 ihookabove uni1EC9 ii-cy uni0438 iigrave-cy uni045D iishort-cy uni0439 imacron-cy uni04E3 increment uni2206 inverseBullet invbullet inverseWhiteCircle invcircle io-cy uni0451 iota-latin uni0269 iu-cy uni044E iu-cy.loclBGR uni044E.loclBGR iu-cy.loclBGR.alt uni044E.loclBGR.001 jacute uni006A0301 jcaron uni01F0 jdotless uni0237 je-cy uni0458 ka-cy uni043A ka-cy.loclBGR uni043A.loclBGR ka-cy.loclBGR.alt uni043A.loclBGR.001 kadescender-cy uni049B kaiSymbol uni03D7 kcommaaccent uni0137 kdotbelow uni1E33 kip uni20AD kje-cy uni045C klinebelow uni1E35 lambdastroke uni019B largeCircle uni25EF lari uni20BE lbar uni019A lbar.salt uni019A.salt lbelt uni026C lbelt.salt uni026C.salt lcommaaccent uni013C lcommaaccent.salt uni013C.001 ldotbelow uni1E37 ldotbelow.salt uni1E37.salt leftArrow arrowleft leftBlackPointer triaglf leftBlackSmallTriangle uni25C2 leftBlackTriangle uni25C0 leftBlock lfblock leftBlock.stypo lfblock.stypo leftFiveEighthsBlock uni258B leftFiveEighthsBlock.stypo uni258B.stypo leftHalfBlackCircle uni25D6 leftHalfBlackDiamond uni2B16 leftHalfBlackSquare uni25E7 leftHalfBlackWhiteCircle uni25D0 leftOneEighthBlock uni258F leftOneEighthBlock.stypo uni258F.stypo leftOneQuarterBlock uni258E leftOneQuarterBlock.stypo uni258E.stypo leftRightArrow arrowboth leftSevenEighthsBlock uni2589 leftSevenEighthsBlock.stypo uni2589.stypo leftThreeEighthsBlock uni258D leftThreeEighthsBlock.stypo uni258D.stypo leftThreeQuartersBlock uni258A leftThreeQuartersBlock.stypo uni258A.stypo leftWhitePointer uni25C5 leftWhiteSmallTriangle uni25C3 leftWhiteTriangle uni25C1 lineFeedControl uni240A lineFeedControl.ss20 uni240A.ss20 lineseparator uni2028 liraTurkish uni20BA literSign uni2113 lje-cy uni0459 llinebelow uni1E3B llinebelow.salt uni1E3B.salt lmiddletilde uni026B lmiddletilde.salt uni026B.salt logicalnotReversed revlogicalnot lowerFiveEighthsBlock uni2585 lowerFiveEighthsBlock.stypo uni2585.stypo lowerHalfArc uni25E1 lowerHalfBlackWhiteCircle uni25D2 lowerHalfBlock dnblock lowerHalfBlock.stypo dnblock.stypo lowerHalfInverseWhiteCircle uni25DB lowerHalfWhiteSquare uni2B12 lowerLeftArc uni25DF lowerLeftBlackTriangle uni25E3 lowerLeftBlock uni2596 lowerLeftBlock.stypo uni2596.stypo lowerLeftHalfWhiteSquare uni2B14 lowerLeftQuadrantWhiteCircle uni25F5 lowerLeftTriangle uni25FA lowerOneEighthBlock uni2581 lowerOneEighthBlock.stypo uni2581.stypo lowerOneQuarterBlock uni2582 lowerOneQuarterBlock.stypo uni2582.stypo lowerRightArc uni25DE lowerRightBlackTriangle uni25E2 lowerRightBlock uni2597 lowerRightBlock.stypo uni2597.stypo lowerRightDiagonalHalfBlackSquare uni25EA lowerRightQuadrantWhiteCircle uni25F6 lowerRightTriangle uni25FF lowerSevenEighthsBlock uni2587 lowerSevenEighthsBlock.stypo uni2587.stypo lowerThreeEighthsBlock uni2583 lowerThreeEighthsBlock.stypo uni2583.stypo lowerThreeQuartersBlock uni2586 lowerThreeQuartersBlock.stypo uni2586.stypo lowernumeral-greek uni0375 lowlinecomb uni0332 macronbelowcomb uni0331 macroncomb uni0304 macroncomb.case uni0304.case manat uni20BC mars male mediumBlackSmallSquare uni25FE mediumBlackSquare uni25FC mediumWhiteSmallSquare uni25FD mediumWhiteSquare uni25FB mediumleftpointinganglebracketornament uni276C mediumrightpointinganglebracketornament uni276D micro uni00B5 mu uni03BC naira uni20A6 nbspace uni00A0 ncommaaccent uni0146 negativeAcknowledgeControl uni2415 negativeAcknowledgeControl.ss20 uni2415.ss20 newlineControl uni2424 nhookleft uni0272 nineinferior uni2089 ninesuperior uni2079 nje-cy uni045A nlinebelow uni1E49 nmod uni207F nonbreakinghyphen uni2011 note-musical musicalnote notedbl-musical musicalnotedbl notidentical uni2262 nullControl uni2400 numeral-greek uni0374 numero uni2116 o-cy uni043E obarred-cy uni04E9 ocircumflexacute uni1ED1 ocircumflexdotbelow uni1ED9 ocircumflexgrave uni1ED3 ocircumflexhookabove uni1ED5 ocircumflextilde uni1ED7 odotbelow uni1ECD ogonekcomb uni0328 ohookabove uni1ECF ohornacute uni1EDB ohorndotbelow uni1EE3 ohorngrave uni1EDD ohornhookabove uni1EDF ohorntilde uni1EE1 omacronacute uni1E53 omacrongrave uni1E51 oneinferior uni2081 onesuperior uni00B9 oogonek uni01EB oopen uni0254 overline uni203E palochka-cy uni04CF pe-cy uni043F pe-cy.loclSRB uni0438.loclBGR.001 perispomenicomb uni0342 peso uni20B1 published uni2117 punctuationspace uni2008 questiongreek uni037E ratio uni2236 rcommaaccent uni0157 rcommaaccent.salt uni0157.001 rdotbelow uni1E5B rdotbelow.salt uni1E5B.salt recordSeparatorControl uni241E replacementCharacter uniFFFD returnsymbol uni23CE reversedRotatedFloralHeartBullet uni2619 rightArrow arrowright rightBlackPointer triagrt rightBlackSmallTriangle uni25B8 rightBlackTriangle uni25B6 rightBlock rtblock rightBlock.stypo rtblock.stypo rightHalfBlackCircle uni25D7 rightHalfBlackDiamond uni2B17 rightHalfBlackSquare uni25E8 rightHalfBlackWhiteCircle uni25D1 rightOneEighthBlock uni2595 rightOneEighthBlock.stypo uni2595.stypo rightWhitePointer uni25BB rightWhiteSmallTriangle uni25B9 rightWhiteTriangle uni25B7 ringbelowcomb uni0325 ringcomb uni030A ringcomb.case uni030A.case rotatedFloralHeartBullet uni2767 ruble uni20BD rupee uni20A8 rupeeIndian uni20B9 schwa uni0259 schwa-cy uni04D9 scommaaccent uni0219 scommaaccent.salt uni0219.001 sdotbelow uni1E63 sdotbelow.salt uni1E63.salt seveninferior uni2087 sevensuperior uni2077 sha-cy uni0448 shadedark dkshade shadedark.stypo dkshade.stypo shadelight ltshade shadelight.stypo ltshade.stypo shademedium shade shademedium.stypo shade.stypo shcha-cy uni0449 sheqel uni20AA shha-cy uni04BB shha-cy.alt uni04BB.001 shiftInControl uni240F shiftInControl.ss20 uni240F.ss20 shiftOutControl uni240E shiftOutControl.ss20 uni240E.ss20 sigmafinal uni03C2 sixinferior uni2086 sixsuperior uni2076 softhyphen uni00AD softsign-cy uni044C spaceControl uni2420 spadeBlackSuit spade startOfHeadingControl uni2401 startOfHeadingControl.ss20 uni2401.ss20 startOfTextControl uni2402 startOfTextControl.ss20 uni2402.ss20 strictlyequivalentto uni2263 substituteControl uni241A substituteControl.ss20 uni241A.ss20 substituteFormTwoControl uni2426 sunWithRays sun synchronousIdleControl uni2416 synchronousIdleControl.ss20 uni2416.ss20 tcedilla uni0163 tcommaaccent uni021B te-cy uni0442 te-cy.loclSRB uni0442.loclBGR.001 tenge uni20B8 tesh uni02A7 thetamod uni1DBF threeinferior uni2083 threesuperior uni00B3 topHalfBlackCircle uni2BCA topHalfBlackDiamond uni2B18 topHalfWhiteSquare uni2B13 topRightHalfWhiteSquare uni2B15 tse-cy uni0446 tshe-cy uni045B tugrik uni20AE twoinferior uni2082 twosuperior uni00B2 u-cy uni0443 udotbelow uni1EE5 uhookabove uni1EE7 uhornacute uni1EE9 uhorndotbelow uni1EF1 uhorngrave uni1EEB uhornhookabove uni1EED uhorntilde uni1EEF umacron-cy uni04EF unitSeparatorControl uni241F upArrow arrowup upBlackSmallTriangle uni25B4 upBlackTriangle triagup upDashArrow uni21E1 upDownArrow arrowupdn upDownbaseArrow arrowupdnbse upLeftHalfBlackTriangle uni25ED upRightHalfBlackTriangle uni25EE upWhiteSmallTriangle uni25B5 upWhiteTriangle uni25B3 upWhiteTriangleWithDot uni25EC upperHalfArc uni25E0 upperHalfBlackWhiteCircle uni25D3 upperHalfBlock upblock upperHalfBlock.stypo upblock.stypo upperHalfInverseWhiteCircle uni25DA upperLeftAndLowerLeftAndLowerRightBlock uni2599 upperLeftAndLowerLeftAndLowerRightBlock.stypo uni2599.stypo upperLeftAndLowerRightBlock uni259A upperLeftAndLowerRightBlock.stypo uni259A.stypo upperLeftAndUpperRightAndLowerLeftBlock uni259B upperLeftAndUpperRightAndLowerLeftBlock.stypo uni259B.stypo upperLeftAndUpperRightAndLowerRightBlock uni259C upperLeftAndUpperRightAndLowerRightBlock.stypo uni259C.stypo upperLeftArc uni25DC upperLeftBlackTriangle uni25E4 upperLeftBlock uni2598 upperLeftBlock.stypo uni2598.stypo upperLeftDiagonalHalfBlackSquare uni25E9 upperLeftQuadrantWhiteCircle uni25F4 upperLeftTriangle uni25F8 upperLeftWhiteCircle uni25D5 upperOneEighthBlock uni2594 upperOneEighthBlock.stypo uni2594.stypo upperRightAndLowerLeftAndLowerRightBlock uni259F upperRightAndLowerLeftAndLowerRightBlock.stypo uni259F.stypo upperRightAndLowerLeftBlock uni259E upperRightAndLowerLeftBlock.stypo uni259E.stypo upperRightArc uni25DD upperRightBlackCircle uni25D4 upperRightBlackTriangle uni25E5 upperRightBlock uni259D upperRightBlock.stypo uni259D.stypo upperRightQuadrantWhiteCircle uni25F7 upperRightTriangle uni25F9 upperlefttolowerrightFillSquare uni25A7 upperrighttolowerleftFillSquare uni25A8 upsilon-latin uni028A ushort-cy uni045E ustraight-cy uni04AF ustraightstroke-cy uni04B1 ve-cy uni0432 ve-cy.salt uni0432.001 vectorOrCrossProduct uni2A2F venus female verticalBisectingLineWhiteSquare uni25EB verticalFillCircle uni25CD verticalFillSquare uni25A5 verticalTabulationControl uni240B verticalTabulationControl.ss20 uni240B.ss20 vhook uni028B vturned uni028C whiteBullet openbullet whiteCircle circle whiteDiamond uni25C7 whiteHexagon uni2B21 whiteHorizontalEllipse uni2B2D whiteInBlackSquare uni25A3 whiteLargeSquare uni2B1C whiteLowerLeftQuadrantSquare uni25F1 whiteLowerRightQuadrantSquare uni25F2 whiteMediumDiamond uni2B26 whiteMediumLozenge uni2B28 whiteParallelogram uni25B1 whitePentagon uni2B20 whiteRect uni25AD whiteRoundedCornersSquare uni25A2 whiteSmallLozenge uni2B2B whiteSmallSquare uni25AB whiteSmilingFace smileface whiteSquare uni25A1 whiteUpperLeftQuadrantSquare uni25F0 whiteUpperRightQuadrantSquare uni25F3 whiteVerticalEllipse uni2B2F whiteVerticalRect uni25AF whiteVerysmallSquare uni2B1E wmod uni02B7 won uni20A9 ydotbelow uni1EF5 yeru-cy uni044B yhookabove uni1EF7 yi-cy uni0457 ymacron uni0233 ymod uni02B8 ytilde uni1EF9 ze-cy uni0437 ze-cy.loclBGR uni0437.loclBGR ze-cy.salt uni0437.001 zeroinferior uni2080 zerosuperior uni2070 zhe-cy uni0436 zhe-cy.loclBGR uni0436.loclBGR zhedescender-cy uni0497 zmod uni1DBB checkerBoardDeleteApple2 uni2427 checkerBoardDeleteTrs80 uni2428 checkerBoardDeleteAmstradCpc uni2429 checkerBoardDeleteAmstradCpc.stypo uni2429.stypo checkerBoardFill u1FB95 checkerBoardFill.stypo u1FB95.stypo checkerBoardFillInverse u1FB96 checkerBoardFillInverse.stypo u1FB96.stypo blockQuadrant-UC u1FBE4 blockQuadrant-UC.stypo u1FBE4.stypo blockQuadrant-LC u1FBE5 blockQuadrant-LC.stypo u1FBE5.stypo blockQuadrant-ML u1FBE6 blockQuadrant-ML.stypo u1FBE6.stypo blockQuadrant-MR u1FBE7 blockQuadrant-MR.stypo u1FBE7.stypo blockTriangle-1 u1FB6D blockTriangle-1.stypo u1FB6D.stypo blockTriangle-2 u1FB6C blockTriangle-2.stypo u1FB6C.stypo blockTriangle-3 u1FB6E blockTriangle-3.stypo u1FB6E.stypo blockTriangle-4 u1FB6F blockTriangle-4.stypo u1FB6F.stypo blockTriangle-14 u1FB9A blockTriangle-14.stypo u1FB9A.stypo blockTriangle-23 u1FB9B blockTriangle-23.stypo u1FB9B.stypo blockTriangle-123 u1FB6B blockTriangle-123.stypo u1FB6B.stypo blockTriangle-124 u1FB6A blockTriangle-124.stypo u1FB6A.stypo blockTriangle-134 u1FB68 blockTriangle-134.stypo u1FB68.stypo blockTriangle-234 u1FB69 blockTriangle-234.stypo u1FB69.stypo blockCircle-1 u1FBEF blockCircle-1.stypo u1FBEF.stypo blockCircle-2 u1FBEC blockCircle-2.stypo u1FBEC.stypo blockCircle-3 u1FBED blockCircle-3.stypo u1FBED.stypo blockCircle-4 u1FBEE blockCircle-4.stypo u1FBEE.stypo blockCircle-UC u1FBE8 blockCircle-UC.stypo u1FBE8.stypo blockCircle-LC u1FBEA blockCircle-LC.stypo u1FBEA.stypo blockCircle-ML u1FBEB blockCircle-ML.stypo u1FBEB.stypo blockCircle-MR u1FBE9 blockCircle-MR.stypo u1FBE9.stypo blockSextant-1 u1FB00 blockSextant-1.stypo u1FB00.stypo blockSextant-2 u1FB01 blockSextant-2.stypo u1FB01.stypo blockSextant-12 u1FB02 blockSextant-12.stypo u1FB02.stypo blockSextant-3 u1FB03 blockSextant-3.stypo u1FB03.stypo blockSextant-13 u1FB04 blockSextant-13.stypo u1FB04.stypo blockSextant-23 u1FB05 blockSextant-23.stypo u1FB05.stypo blockSextant-123 u1FB06 blockSextant-123.stypo u1FB06.stypo blockSextant-4 u1FB07 blockSextant-4.stypo u1FB07.stypo blockSextant-14 u1FB08 blockSextant-14.stypo u1FB08.stypo blockSextant-24 u1FB09 blockSextant-24.stypo u1FB09.stypo blockSextant-124 u1FB0A blockSextant-124.stypo u1FB0A.stypo blockSextant-34 u1FB0B blockSextant-34.stypo u1FB0B.stypo blockSextant-134 u1FB0C blockSextant-134.stypo u1FB0C.stypo blockSextant-234 u1FB0D blockSextant-234.stypo u1FB0D.stypo blockSextant-1234 u1FB0E blockSextant-1234.stypo u1FB0E.stypo blockSextant-5 u1FB0F blockSextant-5.stypo u1FB0F.stypo blockSextant-15 u1FB10 blockSextant-15.stypo u1FB10.stypo blockSextant-25 u1FB11 blockSextant-25.stypo u1FB11.stypo blockSextant-125 u1FB12 blockSextant-125.stypo u1FB12.stypo blockSextant-35 u1FB13 blockSextant-35.stypo u1FB13.stypo blockSextant-235 u1FB14 blockSextant-235.stypo u1FB14.stypo blockSextant-1235 u1FB15 blockSextant-1235.stypo u1FB15.stypo blockSextant-45 u1FB16 blockSextant-45.stypo u1FB16.stypo blockSextant-145 u1FB17 blockSextant-145.stypo u1FB17.stypo blockSextant-245 u1FB18 blockSextant-245.stypo u1FB18.stypo blockSextant-1245 u1FB19 blockSextant-1245.stypo u1FB19.stypo blockSextant-345 u1FB1A blockSextant-345.stypo u1FB1A.stypo blockSextant-1345 u1FB1B blockSextant-1345.stypo u1FB1B.stypo blockSextant-2345 u1FB1C blockSextant-2345.stypo u1FB1C.stypo blockSextant-12345 u1FB1D blockSextant-12345.stypo u1FB1D.stypo blockSextant-6 u1FB1E blockSextant-6.stypo u1FB1E.stypo blockSextant-16 u1FB1F blockSextant-16.stypo u1FB1F.stypo blockSextant-26 u1FB20 blockSextant-26.stypo u1FB20.stypo blockSextant-126 u1FB21 blockSextant-126.stypo u1FB21.stypo blockSextant-36 u1FB22 blockSextant-36.stypo u1FB22.stypo blockSextant-136 u1FB23 blockSextant-136.stypo u1FB23.stypo blockSextant-236 u1FB24 blockSextant-236.stypo u1FB24.stypo blockSextant-1236 u1FB25 blockSextant-1236.stypo u1FB25.stypo blockSextant-46 u1FB26 blockSextant-46.stypo u1FB26.stypo blockSextant-146 u1FB27 blockSextant-146.stypo u1FB27.stypo blockSextant-1246 u1FB28 blockSextant-1246.stypo u1FB28.stypo blockSextant-346 u1FB29 blockSextant-346.stypo u1FB29.stypo blockSextant-1346 u1FB2A blockSextant-1346.stypo u1FB2A.stypo blockSextant-2346 u1FB2B blockSextant-2346.stypo u1FB2B.stypo blockSextant-12346 u1FB2C blockSextant-12346.stypo u1FB2C.stypo blockSextant-56 u1FB2D blockSextant-56.stypo u1FB2D.stypo blockSextant-156 u1FB2E blockSextant-156.stypo u1FB2E.stypo blockSextant-256 u1FB2F blockSextant-256.stypo u1FB2F.stypo blockSextant-1256 u1FB30 blockSextant-1256.stypo u1FB30.stypo blockSextant-356 u1FB31 blockSextant-356.stypo u1FB31.stypo blockSextant-1356 u1FB32 blockSextant-1356.stypo u1FB32.stypo blockSextant-2356 u1FB33 blockSextant-2356.stypo u1FB33.stypo blockSextant-12356 u1FB34 blockSextant-12356.stypo u1FB34.stypo blockSextant-456 u1FB35 blockSextant-456.stypo u1FB35.stypo blockSextant-1456 u1FB36 blockSextant-1456.stypo u1FB36.stypo blockSextant-2456 u1FB37 blockSextant-2456.stypo u1FB37.stypo blockSextant-12456 u1FB38 blockSextant-12456.stypo u1FB38.stypo blockSextant-3456 u1FB39 blockSextant-3456.stypo u1FB39.stypo blockSextant-13456 u1FB3A blockSextant-13456.stypo u1FB3A.stypo blockSextant-23456 u1FB3B blockSextant-23456.stypo u1FB3B.stypo blockDiagonal-1FB3C u1FB3C blockDiagonal-1FB3C.stypo u1FB3C.stypo blockDiagonal-1FB3D u1FB3D blockDiagonal-1FB3D.stypo u1FB3D.stypo blockDiagonal-1FB3E u1FB3E blockDiagonal-1FB3E.stypo u1FB3E.stypo blockDiagonal-1FB3F u1FB3F blockDiagonal-1FB3F.stypo u1FB3F.stypo blockDiagonal-1FB40 u1FB40 blockDiagonal-1FB40.stypo u1FB40.stypo blockDiagonal-1FB41 u1FB41 blockDiagonal-1FB41.stypo u1FB41.stypo blockDiagonal-1FB42 u1FB42 blockDiagonal-1FB42.stypo u1FB42.stypo blockDiagonal-1FB43 u1FB43 blockDiagonal-1FB43.stypo u1FB43.stypo blockDiagonal-1FB44 u1FB44 blockDiagonal-1FB44.stypo u1FB44.stypo blockDiagonal-1FB45 u1FB45 blockDiagonal-1FB45.stypo u1FB45.stypo blockDiagonal-1FB46 u1FB46 blockDiagonal-1FB46.stypo u1FB46.stypo blockDiagonal-1FB47 u1FB47 blockDiagonal-1FB47.stypo u1FB47.stypo blockDiagonal-1FB48 u1FB48 blockDiagonal-1FB48.stypo u1FB48.stypo blockDiagonal-1FB49 u1FB49 blockDiagonal-1FB49.stypo u1FB49.stypo blockDiagonal-1FB4A u1FB4A blockDiagonal-1FB4A.stypo u1FB4A.stypo blockDiagonal-1FB4B u1FB4B blockDiagonal-1FB4B.stypo u1FB4B.stypo blockDiagonal-1FB4C u1FB4C blockDiagonal-1FB4C.stypo u1FB4C.stypo blockDiagonal-1FB4D u1FB4D blockDiagonal-1FB4D.stypo u1FB4D.stypo blockDiagonal-1FB4E u1FB4E blockDiagonal-1FB4E.stypo u1FB4E.stypo blockDiagonal-1FB4F u1FB4F blockDiagonal-1FB4F.stypo u1FB4F.stypo blockDiagonal-1FB50 u1FB50 blockDiagonal-1FB50.stypo u1FB50.stypo blockDiagonal-1FB51 u1FB51 blockDiagonal-1FB51.stypo u1FB51.stypo blockDiagonal-1FB52 u1FB52 blockDiagonal-1FB52.stypo u1FB52.stypo blockDiagonal-1FB53 u1FB53 blockDiagonal-1FB53.stypo u1FB53.stypo blockDiagonal-1FB54 u1FB54 blockDiagonal-1FB54.stypo u1FB54.stypo blockDiagonal-1FB55 u1FB55 blockDiagonal-1FB55.stypo u1FB55.stypo blockDiagonal-1FB56 u1FB56 blockDiagonal-1FB56.stypo u1FB56.stypo blockDiagonal-1FB57 u1FB57 blockDiagonal-1FB57.stypo u1FB57.stypo blockDiagonal-1FB58 u1FB58 blockDiagonal-1FB58.stypo u1FB58.stypo blockDiagonal-1FB59 u1FB59 blockDiagonal-1FB59.stypo u1FB59.stypo blockDiagonal-1FB5A u1FB5A blockDiagonal-1FB5A.stypo u1FB5A.stypo blockDiagonal-1FB5B u1FB5B blockDiagonal-1FB5B.stypo u1FB5B.stypo blockDiagonal-1FB5C u1FB5C blockDiagonal-1FB5C.stypo u1FB5C.stypo blockDiagonal-1FB5D u1FB5D blockDiagonal-1FB5D.stypo u1FB5D.stypo blockDiagonal-1FB5E u1FB5E blockDiagonal-1FB5E.stypo u1FB5E.stypo blockDiagonal-1FB5F u1FB5F blockDiagonal-1FB5F.stypo u1FB5F.stypo blockDiagonal-1FB60 u1FB60 blockDiagonal-1FB60.stypo u1FB60.stypo blockDiagonal-1FB61 u1FB61 blockDiagonal-1FB61.stypo u1FB61.stypo blockDiagonal-1FB62 u1FB62 blockDiagonal-1FB62.stypo u1FB62.stypo blockDiagonal-1FB63 u1FB63 blockDiagonal-1FB63.stypo u1FB63.stypo blockDiagonal-1FB64 u1FB64 blockDiagonal-1FB64.stypo u1FB64.stypo blockDiagonal-1FB65 u1FB65 blockDiagonal-1FB65.stypo u1FB65.stypo blockDiagonal-1FB66 u1FB66 blockDiagonal-1FB66.stypo u1FB66.stypo blockDiagonal-1FB67 u1FB67 blockDiagonal-1FB67.stypo u1FB67.stypo blockOctant-1 u1CEA8 blockOctant-1.stypo u1CEA8.stypo blockOctant-2 u1CEAB blockOctant-2.stypo u1CEAB.stypo blockOctant-12 u1FB82 blockOctant-12.stypo u1FB82.stypo blockOctant-3 u1CD00 blockOctant-3.stypo u1CD00.stypo blockOctant-23 u1CD01 blockOctant-23.stypo u1CD01.stypo blockOctant-123 u1CD02 blockOctant-123.stypo u1CD02.stypo blockOctant-4 u1CD03 blockOctant-4.stypo u1CD03.stypo blockOctant-14 u1CD04 blockOctant-14.stypo u1CD04.stypo blockOctant-124 u1CD05 blockOctant-124.stypo u1CD05.stypo blockOctant-34 u1CD06 blockOctant-34.stypo u1CD06.stypo blockOctant-134 u1CD07 blockOctant-134.stypo u1CD07.stypo blockOctant-234 u1CD08 blockOctant-234.stypo u1CD08.stypo blockOctant-5 u1CD09 blockOctant-5.stypo u1CD09.stypo blockOctant-15 u1CD0A blockOctant-15.stypo u1CD0A.stypo blockOctant-25 u1CD0B blockOctant-25.stypo u1CD0B.stypo blockOctant-125 u1CD0C blockOctant-125.stypo u1CD0C.stypo blockOctant-135 u1CD0D blockOctant-135.stypo u1CD0D.stypo blockOctant-235 u1CD0E blockOctant-235.stypo u1CD0E.stypo blockOctant-1235 u1CD0F blockOctant-1235.stypo u1CD0F.stypo blockOctant-45 u1CD10 blockOctant-45.stypo u1CD10.stypo blockOctant-145 u1CD11 blockOctant-145.stypo u1CD11.stypo blockOctant-245 u1CD12 blockOctant-245.stypo u1CD12.stypo blockOctant-1245 u1CD13 blockOctant-1245.stypo u1CD13.stypo blockOctant-345 u1CD14 blockOctant-345.stypo u1CD14.stypo blockOctant-1345 u1CD15 blockOctant-1345.stypo u1CD15.stypo blockOctant-2345 u1CD16 blockOctant-2345.stypo u1CD16.stypo blockOctant-12345 u1CD17 blockOctant-12345.stypo u1CD17.stypo blockOctant-6 u1CD18 blockOctant-6.stypo u1CD18.stypo blockOctant-16 u1CD19 blockOctant-16.stypo u1CD19.stypo blockOctant-26 u1CD1A blockOctant-26.stypo u1CD1A.stypo blockOctant-126 u1CD1B blockOctant-126.stypo u1CD1B.stypo blockOctant-36 u1CD1C blockOctant-36.stypo u1CD1C.stypo blockOctant-136 u1CD1D blockOctant-136.stypo u1CD1D.stypo blockOctant-236 u1CD1E blockOctant-236.stypo u1CD1E.stypo blockOctant-1236 u1CD1F blockOctant-1236.stypo u1CD1F.stypo blockOctant-146 u1CD20 blockOctant-146.stypo u1CD20.stypo blockOctant-246 u1CD21 blockOctant-246.stypo u1CD21.stypo blockOctant-1246 u1CD22 blockOctant-1246.stypo u1CD22.stypo blockOctant-346 u1CD23 blockOctant-346.stypo u1CD23.stypo blockOctant-1346 u1CD24 blockOctant-1346.stypo u1CD24.stypo blockOctant-2346 u1CD25 blockOctant-2346.stypo u1CD25.stypo blockOctant-12346 u1CD26 blockOctant-12346.stypo u1CD26.stypo blockOctant-56 u1CD27 blockOctant-56.stypo u1CD27.stypo blockOctant-156 u1CD28 blockOctant-156.stypo u1CD28.stypo blockOctant-256 u1CD29 blockOctant-256.stypo u1CD29.stypo blockOctant-1256 u1CD2A blockOctant-1256.stypo u1CD2A.stypo blockOctant-356 u1CD2B blockOctant-356.stypo u1CD2B.stypo blockOctant-1356 u1CD2C blockOctant-1356.stypo u1CD2C.stypo blockOctant-2356 u1CD2D blockOctant-2356.stypo u1CD2D.stypo blockOctant-12356 u1CD2E blockOctant-12356.stypo u1CD2E.stypo blockOctant-456 u1CD2F blockOctant-456.stypo u1CD2F.stypo blockOctant-1456 u1CD30 blockOctant-1456.stypo u1CD30.stypo blockOctant-2456 u1CD31 blockOctant-2456.stypo u1CD31.stypo blockOctant-12456 u1CD32 blockOctant-12456.stypo u1CD32.stypo blockOctant-3456 u1CD33 blockOctant-3456.stypo u1CD33.stypo blockOctant-13456 u1CD34 blockOctant-13456.stypo u1CD34.stypo blockOctant-23456 u1CD35 blockOctant-23456.stypo u1CD35.stypo blockOctant-123456 u1FB85 blockOctant-123456.stypo u1FB85.stypo blockOctant-7 u1CEA3 blockOctant-7.stypo u1CEA3.stypo blockOctant-17 u1CD36 blockOctant-17.stypo u1CD36.stypo blockOctant-27 u1CD37 blockOctant-27.stypo u1CD37.stypo blockOctant-127 u1CD38 blockOctant-127.stypo u1CD38.stypo blockOctant-37 u1CD39 blockOctant-37.stypo u1CD39.stypo blockOctant-137 u1CD3A blockOctant-137.stypo u1CD3A.stypo blockOctant-237 u1CD3B blockOctant-237.stypo u1CD3B.stypo blockOctant-1237 u1CD3C blockOctant-1237.stypo u1CD3C.stypo blockOctant-47 u1CD3D blockOctant-47.stypo u1CD3D.stypo blockOctant-147 u1CD3E blockOctant-147.stypo u1CD3E.stypo blockOctant-247 u1CD3F blockOctant-247.stypo u1CD3F.stypo blockOctant-1247 u1CD40 blockOctant-1247.stypo u1CD40.stypo blockOctant-347 u1CD41 blockOctant-347.stypo u1CD41.stypo blockOctant-1347 u1CD42 blockOctant-1347.stypo u1CD42.stypo blockOctant-2347 u1CD43 blockOctant-2347.stypo u1CD43.stypo blockOctant-12347 u1CD44 blockOctant-12347.stypo u1CD44.stypo blockOctant-157 u1CD45 blockOctant-157.stypo u1CD45.stypo blockOctant-257 u1CD46 blockOctant-257.stypo u1CD46.stypo blockOctant-1257 u1CD47 blockOctant-1257.stypo u1CD47.stypo blockOctant-357 u1CD48 blockOctant-357.stypo u1CD48.stypo blockOctant-2357 u1CD49 blockOctant-2357.stypo u1CD49.stypo blockOctant-12357 u1CD4A blockOctant-12357.stypo u1CD4A.stypo blockOctant-457 u1CD4B blockOctant-457.stypo u1CD4B.stypo blockOctant-1457 u1CD4C blockOctant-1457.stypo u1CD4C.stypo blockOctant-12457 u1CD4D blockOctant-12457.stypo u1CD4D.stypo blockOctant-3457 u1CD4E blockOctant-3457.stypo u1CD4E.stypo blockOctant-13457 u1CD4F blockOctant-13457.stypo u1CD4F.stypo blockOctant-23457 u1CD50 blockOctant-23457.stypo u1CD50.stypo blockOctant-67 u1CD51 blockOctant-67.stypo u1CD51.stypo blockOctant-167 u1CD52 blockOctant-167.stypo u1CD52.stypo blockOctant-267 u1CD53 blockOctant-267.stypo u1CD53.stypo blockOctant-1267 u1CD54 blockOctant-1267.stypo u1CD54.stypo blockOctant-367 u1CD55 blockOctant-367.stypo u1CD55.stypo blockOctant-1367 u1CD56 blockOctant-1367.stypo u1CD56.stypo blockOctant-2367 u1CD57 blockOctant-2367.stypo u1CD57.stypo blockOctant-12367 u1CD58 blockOctant-12367.stypo u1CD58.stypo blockOctant-467 u1CD59 blockOctant-467.stypo u1CD59.stypo blockOctant-1467 u1CD5A blockOctant-1467.stypo u1CD5A.stypo blockOctant-2467 u1CD5B blockOctant-2467.stypo u1CD5B.stypo blockOctant-12467 u1CD5C blockOctant-12467.stypo u1CD5C.stypo blockOctant-3467 u1CD5D blockOctant-3467.stypo u1CD5D.stypo blockOctant-13467 u1CD5E blockOctant-13467.stypo u1CD5E.stypo blockOctant-23467 u1CD5F blockOctant-23467.stypo u1CD5F.stypo blockOctant-123467 u1CD60 blockOctant-123467.stypo u1CD60.stypo blockOctant-567 u1CD61 blockOctant-567.stypo u1CD61.stypo blockOctant-1567 u1CD62 blockOctant-1567.stypo u1CD62.stypo blockOctant-2567 u1CD63 blockOctant-2567.stypo u1CD63.stypo blockOctant-12567 u1CD64 blockOctant-12567.stypo u1CD64.stypo blockOctant-3567 u1CD65 blockOctant-3567.stypo u1CD65.stypo blockOctant-13567 u1CD66 blockOctant-13567.stypo u1CD66.stypo blockOctant-23567 u1CD67 blockOctant-23567.stypo u1CD67.stypo blockOctant-123567 u1CD68 blockOctant-123567.stypo u1CD68.stypo blockOctant-4567 u1CD69 blockOctant-4567.stypo u1CD69.stypo blockOctant-14567 u1CD6A blockOctant-14567.stypo u1CD6A.stypo blockOctant-24567 u1CD6B blockOctant-24567.stypo u1CD6B.stypo blockOctant-124567 u1CD6C blockOctant-124567.stypo u1CD6C.stypo blockOctant-34567 u1CD6D blockOctant-34567.stypo u1CD6D.stypo blockOctant-134567 u1CD6E blockOctant-134567.stypo u1CD6E.stypo blockOctant-234567 u1CD6F blockOctant-234567.stypo u1CD6F.stypo blockOctant-1234567 u1CD70 blockOctant-1234567.stypo u1CD70.stypo blockOctant-8 u1CEA0 blockOctant-8.stypo u1CEA0.stypo blockOctant-18 u1CD71 blockOctant-18.stypo u1CD71.stypo blockOctant-28 u1CD72 blockOctant-28.stypo u1CD72.stypo blockOctant-128 u1CD73 blockOctant-128.stypo u1CD73.stypo blockOctant-38 u1CD74 blockOctant-38.stypo u1CD74.stypo blockOctant-138 u1CD75 blockOctant-138.stypo u1CD75.stypo blockOctant-238 u1CD76 blockOctant-238.stypo u1CD76.stypo blockOctant-1238 u1CD77 blockOctant-1238.stypo u1CD77.stypo blockOctant-48 u1CD78 blockOctant-48.stypo u1CD78.stypo blockOctant-148 u1CD79 blockOctant-148.stypo u1CD79.stypo blockOctant-248 u1CD7A blockOctant-248.stypo u1CD7A.stypo blockOctant-1248 u1CD7B blockOctant-1248.stypo u1CD7B.stypo blockOctant-348 u1CD7C blockOctant-348.stypo u1CD7C.stypo blockOctant-1348 u1CD7D blockOctant-1348.stypo u1CD7D.stypo blockOctant-2348 u1CD7E blockOctant-2348.stypo u1CD7E.stypo blockOctant-12348 u1CD7F blockOctant-12348.stypo u1CD7F.stypo blockOctant-58 u1CD80 blockOctant-58.stypo u1CD80.stypo blockOctant-158 u1CD81 blockOctant-158.stypo u1CD81.stypo blockOctant-258 u1CD82 blockOctant-258.stypo u1CD82.stypo blockOctant-1258 u1CD83 blockOctant-1258.stypo u1CD83.stypo blockOctant-358 u1CD84 blockOctant-358.stypo u1CD84.stypo blockOctant-1358 u1CD85 blockOctant-1358.stypo u1CD85.stypo blockOctant-2358 u1CD86 blockOctant-2358.stypo u1CD86.stypo blockOctant-12358 u1CD87 blockOctant-12358.stypo u1CD87.stypo blockOctant-458 u1CD88 blockOctant-458.stypo u1CD88.stypo blockOctant-1458 u1CD89 blockOctant-1458.stypo u1CD89.stypo blockOctant-2458 u1CD8A blockOctant-2458.stypo u1CD8A.stypo blockOctant-12458 u1CD8B blockOctant-12458.stypo u1CD8B.stypo blockOctant-3458 u1CD8C blockOctant-3458.stypo u1CD8C.stypo blockOctant-13458 u1CD8D blockOctant-13458.stypo u1CD8D.stypo blockOctant-23458 u1CD8E blockOctant-23458.stypo u1CD8E.stypo blockOctant-123458 u1CD8F blockOctant-123458.stypo u1CD8F.stypo blockOctant-168 u1CD90 blockOctant-168.stypo u1CD90.stypo blockOctant-268 u1CD91 blockOctant-268.stypo u1CD91.stypo blockOctant-1268 u1CD92 blockOctant-1268.stypo u1CD92.stypo blockOctant-368 u1CD93 blockOctant-368.stypo u1CD93.stypo blockOctant-2368 u1CD94 blockOctant-2368.stypo u1CD94.stypo blockOctant-12368 u1CD95 blockOctant-12368.stypo u1CD95.stypo blockOctant-468 u1CD96 blockOctant-468.stypo u1CD96.stypo blockOctant-1468 u1CD97 blockOctant-1468.stypo u1CD97.stypo blockOctant-12468 u1CD98 blockOctant-12468.stypo u1CD98.stypo blockOctant-3468 u1CD99 blockOctant-3468.stypo u1CD99.stypo blockOctant-13468 u1CD9A blockOctant-13468.stypo u1CD9A.stypo blockOctant-23468 u1CD9B blockOctant-23468.stypo u1CD9B.stypo blockOctant-568 u1CD9C blockOctant-568.stypo u1CD9C.stypo blockOctant-1568 u1CD9D blockOctant-1568.stypo u1CD9D.stypo blockOctant-2568 u1CD9E blockOctant-2568.stypo u1CD9E.stypo blockOctant-12568 u1CD9F blockOctant-12568.stypo u1CD9F.stypo blockOctant-3568 u1CDA0 blockOctant-3568.stypo u1CDA0.stypo blockOctant-13568 u1CDA1 blockOctant-13568.stypo u1CDA1.stypo blockOctant-23568 u1CDA2 blockOctant-23568.stypo u1CDA2.stypo blockOctant-123568 u1CDA3 blockOctant-123568.stypo u1CDA3.stypo blockOctant-4568 u1CDA4 blockOctant-4568.stypo u1CDA4.stypo blockOctant-14568 u1CDA5 blockOctant-14568.stypo u1CDA5.stypo blockOctant-24568 u1CDA6 blockOctant-24568.stypo u1CDA6.stypo blockOctant-124568 u1CDA7 blockOctant-124568.stypo u1CDA7.stypo blockOctant-34568 u1CDA8 blockOctant-34568.stypo u1CDA8.stypo blockOctant-134568 u1CDA9 blockOctant-134568.stypo u1CDA9.stypo blockOctant-234568 u1CDAA blockOctant-234568.stypo u1CDAA.stypo blockOctant-1234568 u1CDAB blockOctant-1234568.stypo u1CDAB.stypo blockOctant-178 u1CDAC blockOctant-178.stypo u1CDAC.stypo blockOctant-278 u1CDAD blockOctant-278.stypo u1CDAD.stypo blockOctant-1278 u1CDAE blockOctant-1278.stypo u1CDAE.stypo blockOctant-378 u1CDAF blockOctant-378.stypo u1CDAF.stypo blockOctant-1378 u1CDB0 blockOctant-1378.stypo u1CDB0.stypo blockOctant-2378 u1CDB1 blockOctant-2378.stypo u1CDB1.stypo blockOctant-12378 u1CDB2 blockOctant-12378.stypo u1CDB2.stypo blockOctant-478 u1CDB3 blockOctant-478.stypo u1CDB3.stypo blockOctant-1478 u1CDB4 blockOctant-1478.stypo u1CDB4.stypo blockOctant-2478 u1CDB5 blockOctant-2478.stypo u1CDB5.stypo blockOctant-12478 u1CDB6 blockOctant-12478.stypo u1CDB6.stypo blockOctant-3478 u1CDB7 blockOctant-3478.stypo u1CDB7.stypo blockOctant-13478 u1CDB8 blockOctant-13478.stypo u1CDB8.stypo blockOctant-23478 u1CDB9 blockOctant-23478.stypo u1CDB9.stypo blockOctant-123478 u1CDBA blockOctant-123478.stypo u1CDBA.stypo blockOctant-578 u1CDBB blockOctant-578.stypo u1CDBB.stypo blockOctant-1578 u1CDBC blockOctant-1578.stypo u1CDBC.stypo blockOctant-2578 u1CDBD blockOctant-2578.stypo u1CDBD.stypo blockOctant-12578 u1CDBE blockOctant-12578.stypo u1CDBE.stypo blockOctant-3578 u1CDBF blockOctant-3578.stypo u1CDBF.stypo blockOctant-13578 u1CDC0 blockOctant-13578.stypo u1CDC0.stypo blockOctant-23578 u1CDC1 blockOctant-23578.stypo u1CDC1.stypo blockOctant-123578 u1CDC2 blockOctant-123578.stypo u1CDC2.stypo blockOctant-4578 u1CDC3 blockOctant-4578.stypo u1CDC3.stypo blockOctant-14578 u1CDC4 blockOctant-14578.stypo u1CDC4.stypo blockOctant-24578 u1CDC5 blockOctant-24578.stypo u1CDC5.stypo blockOctant-124578 u1CDC6 blockOctant-124578.stypo u1CDC6.stypo blockOctant-34578 u1CDC7 blockOctant-34578.stypo u1CDC7.stypo blockOctant-134578 u1CDC8 blockOctant-134578.stypo u1CDC8.stypo blockOctant-234578 u1CDC9 blockOctant-234578.stypo u1CDC9.stypo blockOctant-1234578 u1CDCA blockOctant-1234578.stypo u1CDCA.stypo blockOctant-678 u1CDCB blockOctant-678.stypo u1CDCB.stypo blockOctant-1678 u1CDCC blockOctant-1678.stypo u1CDCC.stypo blockOctant-2678 u1CDCD blockOctant-2678.stypo u1CDCD.stypo blockOctant-12678 u1CDCE blockOctant-12678.stypo u1CDCE.stypo blockOctant-3678 u1CDCF blockOctant-3678.stypo u1CDCF.stypo blockOctant-13678 u1CDD0 blockOctant-13678.stypo u1CDD0.stypo blockOctant-23678 u1CDD1 blockOctant-23678.stypo u1CDD1.stypo blockOctant-123678 u1CDD2 blockOctant-123678.stypo u1CDD2.stypo blockOctant-4678 u1CDD3 blockOctant-4678.stypo u1CDD3.stypo blockOctant-14678 u1CDD4 blockOctant-14678.stypo u1CDD4.stypo blockOctant-24678 u1CDD5 blockOctant-24678.stypo u1CDD5.stypo blockOctant-124678 u1CDD6 blockOctant-124678.stypo u1CDD6.stypo blockOctant-34678 u1CDD7 blockOctant-34678.stypo u1CDD7.stypo blockOctant-134678 u1CDD8 blockOctant-134678.stypo u1CDD8.stypo blockOctant-234678 u1CDD9 blockOctant-234678.stypo u1CDD9.stypo blockOctant-1234678 u1CDDA blockOctant-1234678.stypo u1CDDA.stypo blockOctant-15678 u1CDDB blockOctant-15678.stypo u1CDDB.stypo blockOctant-25678 u1CDDC blockOctant-25678.stypo u1CDDC.stypo blockOctant-125678 u1CDDD blockOctant-125678.stypo u1CDDD.stypo blockOctant-35678 u1CDDE blockOctant-35678.stypo u1CDDE.stypo blockOctant-235678 u1CDDF blockOctant-235678.stypo u1CDDF.stypo blockOctant-1235678 u1CDE0 blockOctant-1235678.stypo u1CDE0.stypo blockOctant-45678 u1CDE1 blockOctant-45678.stypo u1CDE1.stypo blockOctant-145678 u1CDE2 blockOctant-145678.stypo u1CDE2.stypo blockOctant-1245678 u1CDE3 blockOctant-1245678.stypo u1CDE3.stypo blockOctant-1345678 u1CDE4 blockOctant-1345678.stypo u1CDE4.stypo blockOctant-2345678 u1CDE5 blockOctant-2345678.stypo u1CDE5.stypo blockSedecimant-1 u1CE90 blockSedecimant-1.stypo u1CE90.stypo blockSedecimant-2 u1CE91 blockSedecimant-2.stypo u1CE91.stypo blockSedecimant-3 u1CE92 blockSedecimant-3.stypo u1CE92.stypo blockSedecimant-4 u1CE93 blockSedecimant-4.stypo u1CE93.stypo blockSedecimant-5 u1CE94 blockSedecimant-5.stypo u1CE94.stypo blockSedecimant-6 u1CE95 blockSedecimant-6.stypo u1CE95.stypo blockSedecimant-7 u1CE96 blockSedecimant-7.stypo u1CE96.stypo blockSedecimant-8 u1CE97 blockSedecimant-8.stypo u1CE97.stypo blockSedecimant-9 u1CE98 blockSedecimant-9.stypo u1CE98.stypo blockSedecimant-A u1CE99 blockSedecimant-A.stypo u1CE99.stypo blockSedecimant-B u1CE9A blockSedecimant-B.stypo u1CE9A.stypo blockSedecimant-C u1CE9B blockSedecimant-C.stypo u1CE9B.stypo blockSedecimant-D u1CE9C blockSedecimant-D.stypo u1CE9C.stypo blockSedecimant-E u1CE9D blockSedecimant-E.stypo u1CE9D.stypo blockSedecimant-F u1CE9E blockSedecimant-F.stypo u1CE9E.stypo blockSedecimant-G u1CE9F blockSedecimant-G.stypo u1CE9F.stypo blockSedecimant-EFG u1CEA1 blockSedecimant-EFG.stypo u1CEA1.stypo blockSedecimant-DEF u1CEA2 blockSedecimant-DEF.stypo u1CEA2.stypo blockSedecimant-9D u1CEA4 blockSedecimant-9D.stypo u1CEA4.stypo blockSedecimant-59D u1CEA5 blockSedecimant-59D.stypo u1CEA5.stypo blockSedecimant-159 u1CEA6 blockSedecimant-159.stypo u1CEA6.stypo blockSedecimant-15 u1CEA7 blockSedecimant-15.stypo u1CEA7.stypo blockSedecimant-123 u1CEA9 blockSedecimant-123.stypo u1CEA9.stypo blockSedecimant-234 u1CEAA blockSedecimant-234.stypo u1CEAA.stypo blockSedecimant-48 u1CEAC blockSedecimant-48.stypo u1CEAC.stypo blockSedecimant-48C u1CEAD blockSedecimant-48C.stypo u1CEAD.stypo blockSedecimant-8CG u1CEAE blockSedecimant-8CG.stypo u1CEAE.stypo blockSedecimant-CG u1CEAF blockSedecimant-CG.stypo u1CEAF.stypo verticalOneEighthBlock-2 u1FB70 verticalOneEighthBlock-2.stypo u1FB70.stypo verticalOneEighthBlock-3 u1FB71 verticalOneEighthBlock-3.stypo u1FB71.stypo verticalOneEighthBlock-4 u1FB72 verticalOneEighthBlock-4.stypo u1FB72.stypo verticalOneEighthBlock-5 u1FB73 verticalOneEighthBlock-5.stypo u1FB73.stypo verticalOneEighthBlock-6 u1FB74 verticalOneEighthBlock-6.stypo u1FB74.stypo verticalOneEighthBlock-7 u1FB75 verticalOneEighthBlock-7.stypo u1FB75.stypo horizontalOneEightBlock-2 u1FB76 horizontalOneEightBlock-2.stypo u1FB76.stypo horizontalOneEightBlock-3 u1FB77 horizontalOneEightBlock-3.stypo u1FB77.stypo horizontalOneEightBlock-4 u1FB78 horizontalOneEightBlock-4.stypo u1FB78.stypo horizontalOneEightBlock-5 u1FB79 horizontalOneEightBlock-5.stypo u1FB79.stypo horizontalOneEightBlock-6 u1FB7A horizontalOneEightBlock-6.stypo u1FB7A.stypo horizontalOneEightBlock-7 u1FB7B horizontalOneEightBlock-7.stypo u1FB7B.stypo leftAndLowerOneEightBlock u1FB7C leftAndLowerOneEightBlock.stypo u1FB7C.stypo leftAndUpperOneEightBlock u1FB7D leftAndUpperOneEightBlock.stypo u1FB7D.stypo rightAndUpperOneEightBlock u1FB7E rightAndUpperOneEightBlock.stypo u1FB7E.stypo rightAndLowerOneEightBlock u1FB7F rightAndLowerOneEightBlock.stypo u1FB7F.stypo upperAndLowerOneEightBlock u1FB80 upperAndLowerOneEightBlock.stypo u1FB80.stypo upperThreeEighthsBlock u1FB83 upperThreeEighthsBlock.stypo u1FB83.stypo upperFiveEighthsBlock u1FB84 upperFiveEighthsBlock.stypo u1FB84.stypo upperSevenEighthsBlock u1FB86 upperSevenEighthsBlock.stypo u1FB86.stypo rightOneQuarterBlock u1FB87 rightOneQuarterBlock.stypo u1FB87.stypo rightThreeEighthsBlock u1FB88 rightThreeEighthsBlock.stypo u1FB88.stypo rightFiveEighthsBlock u1FB89 rightFiveEighthsBlock.stypo u1FB89.stypo rightThreeQuartersBlock u1FB8A rightThreeQuartersBlock.stypo u1FB8A.stypo rightSevenEighthsBlock u1FB8B rightSevenEighthsBlock.stypo u1FB8B.stypo leftTwoThirdsBlock u1FBCE leftTwoThirdsBlock.stypo u1FBCE.stypo leftOneThirdBlock u1FBCF leftOneThirdBlock.stypo u1FBCF.stypo heavyHorizontalFill u1FB97 heavyHorizontalFill.stypo u1FB97.stypo blockSeparatedQuadrant-1 u1CC21 blockSeparatedQuadrant-1.stypo u1CC21.stypo blockSeparatedQuadrant-2 u1CC22 blockSeparatedQuadrant-2.stypo u1CC22.stypo blockSeparatedQuadrant-12 u1CC23 blockSeparatedQuadrant-12.stypo u1CC23.stypo blockSeparatedQuadrant-3 u1CC24 blockSeparatedQuadrant-3.stypo u1CC24.stypo blockSeparatedQuadrant-13 u1CC25 blockSeparatedQuadrant-13.stypo u1CC25.stypo blockSeparatedQuadrant-23 u1CC26 blockSeparatedQuadrant-23.stypo u1CC26.stypo blockSeparatedQuadrant-123 u1CC27 blockSeparatedQuadrant-123.stypo u1CC27.stypo blockSeparatedQuadrant-4 u1CC28 blockSeparatedQuadrant-4.stypo u1CC28.stypo blockSeparatedQuadrant-14 u1CC29 blockSeparatedQuadrant-14.stypo u1CC29.stypo blockSeparatedQuadrant-24 u1CC2A blockSeparatedQuadrant-24.stypo u1CC2A.stypo blockSeparatedQuadrant-124 u1CC2B blockSeparatedQuadrant-124.stypo u1CC2B.stypo blockSeparatedQuadrant-34 u1CC2C blockSeparatedQuadrant-34.stypo u1CC2C.stypo blockSeparatedQuadrant-134 u1CC2D blockSeparatedQuadrant-134.stypo u1CC2D.stypo blockSeparatedQuadrant-234 u1CC2E blockSeparatedQuadrant-234.stypo u1CC2E.stypo blockSeparatedQuadrant-1234 u1CC2F blockSeparatedQuadrant-1234.stypo u1CC2F.stypo blockSeparatedSextant-1 u1CE51 blockSeparatedSextant-1.stypo u1CE51.stypo blockSeparatedSextant-2 u1CE52 blockSeparatedSextant-2.stypo u1CE52.stypo blockSeparatedSextant-12 u1CE53 blockSeparatedSextant-12.stypo u1CE53.stypo blockSeparatedSextant-3 u1CE54 blockSeparatedSextant-3.stypo u1CE54.stypo blockSeparatedSextant-13 u1CE55 blockSeparatedSextant-13.stypo u1CE55.stypo blockSeparatedSextant-23 u1CE56 blockSeparatedSextant-23.stypo u1CE56.stypo blockSeparatedSextant-123 u1CE57 blockSeparatedSextant-123.stypo u1CE57.stypo blockSeparatedSextant-4 u1CE58 blockSeparatedSextant-4.stypo u1CE58.stypo blockSeparatedSextant-14 u1CE59 blockSeparatedSextant-14.stypo u1CE59.stypo blockSeparatedSextant-24 u1CE5A blockSeparatedSextant-24.stypo u1CE5A.stypo blockSeparatedSextant-124 u1CE5B blockSeparatedSextant-124.stypo u1CE5B.stypo blockSeparatedSextant-34 u1CE5C blockSeparatedSextant-34.stypo u1CE5C.stypo blockSeparatedSextant-134 u1CE5D blockSeparatedSextant-134.stypo u1CE5D.stypo blockSeparatedSextant-234 u1CE5E blockSeparatedSextant-234.stypo u1CE5E.stypo blockSeparatedSextant-1234 u1CE5F blockSeparatedSextant-1234.stypo u1CE5F.stypo blockSeparatedSextant-5 u1CE60 blockSeparatedSextant-5.stypo u1CE60.stypo blockSeparatedSextant-15 u1CE61 blockSeparatedSextant-15.stypo u1CE61.stypo blockSeparatedSextant-25 u1CE62 blockSeparatedSextant-25.stypo u1CE62.stypo blockSeparatedSextant-125 u1CE63 blockSeparatedSextant-125.stypo u1CE63.stypo blockSeparatedSextant-35 u1CE64 blockSeparatedSextant-35.stypo u1CE64.stypo blockSeparatedSextant-135 u1CE65 blockSeparatedSextant-135.stypo u1CE65.stypo blockSeparatedSextant-235 u1CE66 blockSeparatedSextant-235.stypo u1CE66.stypo blockSeparatedSextant-1235 u1CE67 blockSeparatedSextant-1235.stypo u1CE67.stypo blockSeparatedSextant-45 u1CE68 blockSeparatedSextant-45.stypo u1CE68.stypo blockSeparatedSextant-145 u1CE69 blockSeparatedSextant-145.stypo u1CE69.stypo blockSeparatedSextant-245 u1CE6A blockSeparatedSextant-245.stypo u1CE6A.stypo blockSeparatedSextant-1245 u1CE6B blockSeparatedSextant-1245.stypo u1CE6B.stypo blockSeparatedSextant-345 u1CE6C blockSeparatedSextant-345.stypo u1CE6C.stypo blockSeparatedSextant-1345 u1CE6D blockSeparatedSextant-1345.stypo u1CE6D.stypo blockSeparatedSextant-2345 u1CE6E blockSeparatedSextant-2345.stypo u1CE6E.stypo blockSeparatedSextant-12345 u1CE6F blockSeparatedSextant-12345.stypo u1CE6F.stypo blockSeparatedSextant-6 u1CE70 blockSeparatedSextant-6.stypo u1CE70.stypo blockSeparatedSextant-16 u1CE71 blockSeparatedSextant-16.stypo u1CE71.stypo blockSeparatedSextant-26 u1CE72 blockSeparatedSextant-26.stypo u1CE72.stypo blockSeparatedSextant-126 u1CE73 blockSeparatedSextant-126.stypo u1CE73.stypo blockSeparatedSextant-36 u1CE74 blockSeparatedSextant-36.stypo u1CE74.stypo blockSeparatedSextant-136 u1CE75 blockSeparatedSextant-136.stypo u1CE75.stypo blockSeparatedSextant-236 u1CE76 blockSeparatedSextant-236.stypo u1CE76.stypo blockSeparatedSextant-1236 u1CE77 blockSeparatedSextant-1236.stypo u1CE77.stypo blockSeparatedSextant-46 u1CE78 blockSeparatedSextant-46.stypo u1CE78.stypo blockSeparatedSextant-146 u1CE79 blockSeparatedSextant-146.stypo u1CE79.stypo blockSeparatedSextant-246 u1CE7A blockSeparatedSextant-246.stypo u1CE7A.stypo blockSeparatedSextant-1246 u1CE7B blockSeparatedSextant-1246.stypo u1CE7B.stypo blockSeparatedSextant-346 u1CE7C blockSeparatedSextant-346.stypo u1CE7C.stypo blockSeparatedSextant-1346 u1CE7D blockSeparatedSextant-1346.stypo u1CE7D.stypo blockSeparatedSextant-2346 u1CE7E blockSeparatedSextant-2346.stypo u1CE7E.stypo blockSeparatedSextant-12346 u1CE7F blockSeparatedSextant-12346.stypo u1CE7F.stypo blockSeparatedSextant-56 u1CE80 blockSeparatedSextant-56.stypo u1CE80.stypo blockSeparatedSextant-156 u1CE81 blockSeparatedSextant-156.stypo u1CE81.stypo blockSeparatedSextant-256 u1CE82 blockSeparatedSextant-256.stypo u1CE82.stypo blockSeparatedSextant-1256 u1CE83 blockSeparatedSextant-1256.stypo u1CE83.stypo blockSeparatedSextant-356 u1CE84 blockSeparatedSextant-356.stypo u1CE84.stypo blockSeparatedSextant-1356 u1CE85 blockSeparatedSextant-1356.stypo u1CE85.stypo blockSeparatedSextant-2356 u1CE86 blockSeparatedSextant-2356.stypo u1CE86.stypo blockSeparatedSextant-12356 u1CE87 blockSeparatedSextant-12356.stypo u1CE87.stypo blockSeparatedSextant-456 u1CE88 blockSeparatedSextant-456.stypo u1CE88.stypo blockSeparatedSextant-1456 u1CE89 blockSeparatedSextant-1456.stypo u1CE89.stypo blockSeparatedSextant-2456 u1CE8A blockSeparatedSextant-2456.stypo u1CE8A.stypo blockSeparatedSextant-12456 u1CE8B blockSeparatedSextant-12456.stypo u1CE8B.stypo blockSeparatedSextant-3456 u1CE8C blockSeparatedSextant-3456.stypo u1CE8C.stypo blockSeparatedSextant-13456 u1CE8D blockSeparatedSextant-13456.stypo u1CE8D.stypo blockSeparatedSextant-23456 u1CE8E blockSeparatedSextant-23456.stypo u1CE8E.stypo blockSeparatedSextant-123456 u1CE8F blockSeparatedSextant-123456.stypo u1CE8F.stypo segmentedDigit0 u1FBF0 segmentedDigit1 u1FBF1 segmentedDigit2 u1FBF2 segmentedDigit3 u1FBF3 segmentedDigit4 u1FBF4 segmentedDigit5 u1FBF5 segmentedDigit6 u1FBF6 segmentedDigit7 u1FBF7 segmentedDigit8 u1FBF8 segmentedDigit9 u1FBF9 largeType-1CE1A u1CE1A largeType-1CE1A.stypo u1CE1A.stypo largeType-1CE1B u1CE1B largeType-1CE1B.stypo u1CE1B.stypo largeType-1CE1C u1CE1C largeType-1CE1C.stypo u1CE1C.stypo largeType-1CE1D u1CE1D largeType-1CE1D.stypo u1CE1D.stypo largeType-1CE1E u1CE1E largeType-1CE1E.stypo u1CE1E.stypo largeType-1CE1F u1CE1F largeType-1CE1F.stypo u1CE1F.stypo largeType-1CE20 u1CE20 largeType-1CE20.stypo u1CE20.stypo largeType-1CE21 u1CE21 largeType-1CE21.stypo u1CE21.stypo largeType-1CE22 u1CE22 largeType-1CE22.stypo u1CE22.stypo largeType-1CE23 u1CE23 largeType-1CE23.stypo u1CE23.stypo largeType-1CE24 u1CE24 largeType-1CE24.stypo u1CE24.stypo largeType-1CE25 u1CE25 largeType-1CE25.stypo u1CE25.stypo largeType-1CE26 u1CE26 largeType-1CE26.stypo u1CE26.stypo largeType-1CE27 u1CE27 largeType-1CE27.stypo u1CE27.stypo largeType-1CE28 u1CE28 largeType-1CE28.stypo u1CE28.stypo largeType-1CE29 u1CE29 largeType-1CE29.stypo u1CE29.stypo largeType-1CE2A u1CE2A largeType-1CE2A.stypo u1CE2A.stypo largeType-1CE2B u1CE2B largeType-1CE2B.stypo u1CE2B.stypo largeType-1CE2C u1CE2C largeType-1CE2C.stypo u1CE2C.stypo largeType-1CE2D u1CE2D largeType-1CE2D.stypo u1CE2D.stypo largeType-1CE2E u1CE2E largeType-1CE2E.stypo u1CE2E.stypo largeType-1CE2F u1CE2F largeType-1CE2F.stypo u1CE2F.stypo largeType-1CE30 u1CE30 largeType-1CE30.stypo u1CE30.stypo largeType-1CE31 u1CE31 largeType-1CE31.stypo u1CE31.stypo largeType-1CE32 u1CE32 largeType-1CE32.stypo u1CE32.stypo largeType-1CE33 u1CE33 largeType-1CE33.stypo u1CE33.stypo largeType-1CE34 u1CE34 largeType-1CE34.stypo u1CE34.stypo largeType-1CE35 u1CE35 largeType-1CE35.stypo u1CE35.stypo largeType-1CE36 u1CE36 largeType-1CE36.stypo u1CE36.stypo largeType-1CE37 u1CE37 largeType-1CE37.stypo u1CE37.stypo largeType-1CE38 u1CE38 largeType-1CE38.stypo u1CE38.stypo largeType-1CE39 u1CE39 largeType-1CE39.stypo u1CE39.stypo largeType-1CE3A u1CE3A largeType-1CE3A.stypo u1CE3A.stypo largeType-1CE3B u1CE3B largeType-1CE3B.stypo u1CE3B.stypo largeType-1CE3C u1CE3C largeType-1CE3C.stypo u1CE3C.stypo largeType-1CE3D u1CE3D largeType-1CE3D.stypo u1CE3D.stypo largeType-1CE3E u1CE3E largeType-1CE3E.stypo u1CE3E.stypo largeType-1CE3F u1CE3F largeType-1CE3F.stypo u1CE3F.stypo largeType-1CE40 u1CE40 largeType-1CE40.stypo u1CE40.stypo largeType-1CE41 u1CE41 largeType-1CE41.stypo u1CE41.stypo largeType-1CE42 u1CE42 largeType-1CE42.stypo u1CE42.stypo largeType-1CE43 u1CE43 largeType-1CE43.stypo u1CE43.stypo largeType-1CE44 u1CE44 largeType-1CE44.stypo u1CE44.stypo largeType-1CE45 u1CE45 largeType-1CE45.stypo u1CE45.stypo largeType-1CE46 u1CE46 largeType-1CE46.stypo u1CE46.stypo largeType-1CE47 u1CE47 largeType-1CE47.stypo u1CE47.stypo largeType-1CE48 u1CE48 largeType-1CE48.stypo u1CE48.stypo largeType-1CE49 u1CE49 largeType-1CE49.stypo u1CE49.stypo largeType-1CE4A u1CE4A largeType-1CE4A.stypo u1CE4A.stypo largeType-1CE4B u1CE4B largeType-1CE4B.stypo u1CE4B.stypo largeType-1CE4C u1CE4C largeType-1CE4C.stypo u1CE4C.stypo largeType-1CE4D u1CE4D largeType-1CE4D.stypo u1CE4D.stypo largeType-1CE4E u1CE4E largeType-1CE4E.stypo u1CE4E.stypo largeType-1CE4F u1CE4F largeType-1CE4F.stypo u1CE4F.stypo largeType-1CE50 u1CE50 largeType-1CE50.stypo u1CE50.stypo public.skipExportGlyphs A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half four.half one.half three.half two.half ================================================ FILE: sources/CascadiaCode-BoldItalic.ufo/metainfo.plist ================================================ creator com.github.fonttools.ufoLib formatVersion 3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/features.fea ================================================ # automatic @Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ]; # automatic @Lowercase = [ Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol ]; @OpeningBracket = [ bracketleft braceleft parenleft ]; @Digit = [ zero one two three four five six seven eight nine segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 ]; @HexDigit = [ @Digit a b c d e f A B C D E F ]; @ClosingBracket = [ bracketright braceright parenright ]; @Tall = [ @Uppercase @Digit @OpeningBracket @ClosingBracket bar ]; @NotSpace = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol thetamod zmod zero one two three four five six seven eight nine zero.zero zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq anoteleia questiongreek .notdef baht cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand strictlyequivalentto vectorOrCrossProduct greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga greater_equal.liga greater_greater.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC by blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo LIG ]; @NRW = [ behDotless-ar behDotless-ar.fina beh-ar beh-ar.fina peh-ar peh-ar.fina beeh-ar beeh-ar.fina beheh-ar beheh-ar.fina teh-ar teh-ar.fina tehRing-ar tehRing-ar.fina tehThreedotsdown-ar tehThreedotsdown-ar.fina theh-ar theh-ar.fina tteh-ar tteh-ar.fina tteheh-ar tteheh-ar.fina teheh-ar teheh-ar.fina behThreedotshorizontalbelow-ar behThreedotshorizontalbelow-ar.fina behThreedotsupabove-ar behThreedotsupabove-ar.fina behThreedotsupbelow-ar behThreedotsupbelow-ar.fina tehThreedotsupbelow-ar tehThreedotsupbelow-ar.fina behTwodotsbelowDotabove-ar behTwodotsbelowDotabove-ar.fina behVinvertedbelow-ar behVinvertedbelow-ar.fina behVabove-ar behVabove-ar.fina behVbelow-ar behVbelow-ar.fina behhamzaabove-ar behhamzaabove-ar.fina seen-ar seen-ar.fina seenDotbelowDotabove-ar seenDotbelowDotabove-ar.fina seenThreedotsbelow-ar seenThreedotsbelow-ar.fina sheen-ar sheen-ar.fina sheenDotbelow-ar sheenDotbelow-ar.fina seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedots-ar.fina sad-ar sad-ar.fina sadTwodotsbelow-ar sadTwodotsbelow-ar.fina sadThreedots-ar sadThreedots-ar.fina sadThreedotsbelow-ar sadThreedotsbelow-ar.fina dad-ar dad-ar.fina dadDotbelow-ar dadDotbelow-ar.fina feh-ar feh-ar.fina veh-ar veh-ar.fina fehDotless-ar fehDotless-ar.fina fehDotMovedbelow-ar fehDotbelow-ar fehDotbelow-ar.fina fehThreedotsbelow-ar fehThreedotsbelow-ar.fina fehDotbelowThreedotsabove-ar fehDotbelowThreedotsabove-ar.fina peheh-ar peheh-ar.fina seenFourdotsabove-ar seenFourdotsabove-ar.fina fehTwodotsbelow-ar fehTwodotsbelow-ar.fina fehThreedotsupbelow-ar fehThreedotsupbelow-ar.fina seenTwodotshorizontalabove-ar seenTwodotshorizontalabove-ar.fina seenTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar.fina seenFourabove-ar seenFourabove-ar.fina seenVinvertedabove-ar seenVinvertedabove-ar.fina seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedots-ar.fina behMeemabove-ar behMeemabove-ar.fina pehMeemabove-ar pehMeemabove-ar.fina tehTehabove-ar tehTehabove-ar.fina ]; @EXD = [ behDotless-ar.alt behDotless-ar.fina.alt beh-ar.alt beh-ar.fina.alt peh-ar.alt peh-ar.fina.alt beeh-ar.alt beeh-ar.fina.alt beheh-ar.alt beheh-ar.fina.alt teh-ar.alt teh-ar.fina.alt tehRing-ar.alt tehRing-ar.fina.alt tehThreedotsdown-ar.alt tehThreedotsdown-ar.fina.alt theh-ar.alt theh-ar.fina.alt tteh-ar.alt tteh-ar.fina.alt tteheh-ar.alt tteheh-ar.fina.alt teheh-ar.alt teheh-ar.fina.alt behThreedotshorizontalbelow-ar.alt behThreedotshorizontalbelow-ar.fina.alt behThreedotsupabove-ar.alt behThreedotsupabove-ar.fina.alt behThreedotsupbelow-ar.alt behThreedotsupbelow-ar.fina.alt tehThreedotsupbelow-ar.alt tehThreedotsupbelow-ar.fina.alt behTwodotsbelowDotabove-ar.alt behTwodotsbelowDotabove-ar.fina.alt behVinvertedbelow-ar.alt behVinvertedbelow-ar.fina.alt behVabove-ar.alt behVabove-ar.fina.alt behVbelow-ar.alt behVbelow-ar.fina.alt behhamzaabove-ar.alt behhamzaabove-ar.fina.alt seen-ar.alt seen-ar.fina.alt seenDotbelowDotabove-ar.alt seenDotbelowDotabove-ar.fina.alt seenThreedotsbelow-ar.alt seenThreedotsbelow-ar.fina.alt sheen-ar.alt sheen-ar.fina.alt sheenDotbelow-ar.alt sheenDotbelow-ar.fina.alt seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt sad-ar.alt sad-ar.fina.alt sadTwodotsbelow-ar.alt sadTwodotsbelow-ar.fina.alt sadThreedots-ar.alt sadThreedots-ar.fina.alt sadThreedotsbelow-ar.alt sadThreedotsbelow-ar.fina.alt dad-ar.alt dad-ar.fina.alt dadDotbelow-ar.alt dadDotbelow-ar.fina.alt feh-ar.alt feh-ar.fina.alt veh-ar.alt veh-ar.fina.alt fehDotless-ar.alt fehDotless-ar.fina.alt fehDotMovedbelow-ar.alt fehDotbelow-ar.alt fehDotbelow-ar.fina.alt fehThreedotsbelow-ar.alt fehThreedotsbelow-ar.fina.alt fehDotbelowThreedotsabove-ar.alt fehDotbelowThreedotsabove-ar.fina.alt peheh-ar.alt peheh-ar.fina.alt seenFourdotsabove-ar.alt seenFourdotsabove-ar.fina.alt fehTwodotsbelow-ar.alt fehTwodotsbelow-ar.fina.alt fehThreedotsupbelow-ar.alt fehThreedotsupbelow-ar.fina.alt seenTwodotsverticalabove-ar.alt seenTwodotsverticalabove-ar.fina.alt seenTahTwodotshorizontalabove-ar.alt seenTahTwodotshorizontalabove-ar.fina.alt seenFourabove-ar.alt seenFourabove-ar.fina.alt seenVinvertedabove-ar.alt seenVinvertedabove-ar.fina.alt seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt behMeemabove-ar.alt behMeemabove-ar.fina.alt pehMeemabove-ar.alt pehMeemabove-ar.fina.alt tehTehabove-ar.alt tehTehabove-ar.fina.alt ]; @beh1 = [ beh-ar.init peh-ar.init beeh-ar.init beheh-ar.init teh-ar.init tehRing-ar.init tehThreedotsdown-ar.init theh-ar.init tteh-ar.init tteheh-ar.init teheh-ar.init behThreedotshorizontalbelow-ar.init behThreedotsupabove-ar.init behThreedotsupbelow-ar.init behTwodotsbelowDotabove-ar.init behVinvertedbelow-ar.init behVabove-ar.init behVbelow-ar.init noon-ar.init noonghunna-ar.init noonAfrican-ar.init hehgoal-ar.init yeh-ar.init yehHamzaabove-ar.init yehVabove-ar.init yehTwodotsbelowHamzaabove-ar.init yehTwodotsbelowDotabove-ar.init yehVinverted-farsi.init yehTwodotsabove-farsi.init yehThreedotsabove-farsi.init yehTwoabove-farsi.init yehThreeabove-farsi.init yehFourbelow-farsi.init yehKashmiri-ar.init yehThreedotsbelow-ar.init yehbarreeTwoabove-ar.init yehbarreeThreeabove-ar.init highhamzaYeh-ar.init noonTwodotsbelow-ar.init noonTahabove-ar.init noonVabove-ar.init behMeemabove-ar.init pehMeemabove-ar.init tehTehabove-ar.init yehTwodotsbelowNoonabove-ar.init noonThreedotsabove-ar.init noonDotbelow-ar.init rnoon-ar.init noonRing-ar.init hehgoalHamzaabove-ar.init yeh-farsi.init e-ar.init ]; @beh2 = [ beh-ar.init.alt peh-ar.init.alt beeh-ar.init.alt beheh-ar.init.alt teh-ar.init.alt tehRing-ar.init.alt tehThreedotsdown-ar.init.alt theh-ar.init.alt tteh-ar.init.alt tteheh-ar.init.alt teheh-ar.init.alt behThreedotshorizontalbelow-ar.init.alt behThreedotsupabove-ar.init.alt behThreedotsupbelow-ar.init.alt behTwodotsbelowDotabove-ar.init.alt behVinvertedbelow-ar.init.alt behVabove-ar.init.alt behVbelow-ar.init.alt noon-ar.init.alt noonghunna-ar.init.alt noonAfrican-ar.init.alt hehgoal-ar.init.alt yeh-ar.init.alt yehHamzaabove-ar.init.alt yehVabove-ar.init.alt yehTwodotsbelowHamzaabove-ar.init.alt yehTwodotsbelowDotabove-ar.init.alt yehVinverted-farsi.init.alt yehTwodotsabove-farsi.init.alt yehThreedotsabove-farsi.init.alt yehTwoabove-farsi.init.alt yehThreeabove-farsi.init.alt yehFourbelow-farsi.init.alt yehKashmiri-ar.init.alt yehThreedotsbelow-ar.init.alt yehbarreeTwoabove-ar.init.alt yehbarreeThreeabove-ar.init.alt highhamzaYeh-ar.init.alt noonTwodotsbelow-ar.init.alt noonTahabove-ar.init.alt noonVabove-ar.init.alt behMeemabove-ar.init.alt pehMeemabove-ar.init.alt tehTehabove-ar.init.alt yehTwodotsbelowNoonabove-ar.init.alt noonThreedotsabove-ar.init.alt noonDotbelow-ar.init.alt rnoon-ar.init.alt noonRing-ar.init.alt hehgoalHamzaabove-ar.init.alt yeh-farsi.init.alt e-ar.init.alt ]; @alef1 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzabelow-ar.fina alefWavyhamzaabove-ar.fina ]; @alef2 = [ alef-ar.fina.alt alef-ar.fina.short.alt alefHamzaabove-ar.fina.alt alefHamzabelow-ar.fina.alt alefMadda-ar.fina.alt alefWasla-ar.fina.alt alefTwoabove-ar.fina.alt alefThreeabove-ar.fina.alt alefWavyhamzabelow-ar.fina.alt alefWavyhamzaabove-ar.fina.alt ]; @arlig1 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzaabove-ar.fina alefWavyhamzabelow-ar.fina highhamzaAlef-ar.fina alefFathatan-ar.fina lam-ar.init lamVabove-ar.init lamDotabove-ar.init lamThreedotsabove-ar.init lamThreedotsbelow-ar.init lamDoublebar-ar.init lamBar-ar.init ]; @arlig2 = [ _alef-ar.fina.rlig _alef-ar.fina.short.rlig _alefHamzaabove-ar.fina.rlig _alefHamzabelow-ar.fina.rlig _alefMadda-ar.fina.rlig _alefWasla-ar.fina.rlig _alefTwoabove-ar.fina.rlig _alefThreeabove-ar.fina.rlig _highhamzaAlef-ar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _alefWavyhamzabelow-ar.fina.rlig _alefFathatan-ar.fina.rlig lam-ar.init.rlig lamVabove-ar.init.rlig lamDotabove-ar.init.rlig lamThreedotsabove-ar.init.rlig lamThreedotsbelow-ar.init.rlig lamDoublebar-ar.init.rlig lamBar-ar.init.rlig ]; @arlig3 = [ alef-ar.fina alef-ar.fina.short alefHamzaabove-ar.fina alefHamzabelow-ar.fina alefMadda-ar.fina alefWasla-ar.fina alefTwoabove-ar.fina alefThreeabove-ar.fina alefWavyhamzaabove-ar.fina alefWavyhamzabelow-ar.fina highhamzaAlef-ar.fina alefFathatan-ar.fina lam-ar.medi lamVabove-ar.medi lamDotabove-ar.medi lamThreedotsabove-ar.medi lamThreedotsbelow-ar.medi lamDoublebar-ar.medi lamBar-ar.medi ]; @arlig4 = [ alef-ar.fina.rlig alef-ar.fina.short.rlig alefHamzaabove-ar.fina.rlig alefHamzabelow-ar.fina.rlig alefMadda-ar.fina.rlig alefWasla-ar.fina.rlig alefTwoabove-ar.fina.rlig alefThreeabove-ar.fina.rlig alefWavyhamzaabove-ar.fina.rlig alefWavyhamzabelow-ar.fina.rlig highhamzaAlef-ar.fina.rlig alefFathatan-ar.fina.rlig lam-ar.medi.rlig lamVabove-ar.medi.rlig lamDotabove-ar.medi.rlig lamThreedotsabove-ar.medi.rlig lamThreedotsbelow-ar.medi.rlig lamDoublebar-ar.medi.rlig lamBar-ar.medi.rlig ]; # Prefix: Languagesystems # automatic languagesystem DFLT dflt; languagesystem arab dflt; languagesystem latn dflt; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn PLK; languagesystem latn NLD; languagesystem cyrl dflt; languagesystem cyrl BGR; languagesystem cyrl SRB; languagesystem hebr dflt; feature aalt { # automatic feature calt; feature locl; feature subs; feature sinf; feature sups; feature numr; feature dnom; feature frac; feature ordn; feature case; feature ss02; feature zero; feature ss19; feature rclt; feature zero; feature ss20; } aalt; feature calt { ### Less - It is convenient to have this lookup set at the start. lookup less_asciitilde { ignore sub less less' asciitilde; ignore sub less' asciitilde asciitilde asciitilde; sub less_asciitilde.liga asciitilde' by LIG; sub less' asciitilde by less_asciitilde.liga; } less_asciitilde; lookup less_asciitilde_asciitilde { sub less_asciitilde_asciitilde.liga LIG asciitilde' by LIG; sub less_asciitilde.liga' LIG asciitilde by less_asciitilde_asciitilde.liga; } less_asciitilde_asciitilde; lookup less_asterisk { ignore sub less less' asterisk; ignore sub less' asterisk asterisk; sub less_asterisk.liga asterisk' by LIG; sub less' asterisk by less_asterisk.liga; } less_asterisk; lookup less_dollar { ignore sub less less' dollar; ignore sub less' dollar dollar; sub less_dollar.liga dollar' by LIG; sub less' dollar by less_dollar.liga; } less_dollar; lookup less_equal { ignore sub less less' equal; ignore sub less' equal equal; ignore sub parenleft question less' equal; ignore sub equal less' equal; ignore sub less' equal [less greater bar colon exclam slash]; sub less_equal.liga equal' by LIG; sub less' equal by less_equal.liga; } less_equal; lookup less_greater { ignore sub less less' greater; ignore sub less' greater greater; sub less_greater.liga greater' by LIG; sub less' greater by less_greater.liga; } less_greater; lookup less_plus { ignore sub less less' plus; ignore sub less' plus plus; sub less_plus.liga plus' by LIG; sub less' plus by less_plus.liga; } less_plus; lookup less_slash { ignore sub less less' slash; ignore sub less' slash slash; sub less_slash.liga slash' by LIG; sub less' slash by less_slash.liga; } less_slash; lookup less_bar { ignore sub less less' bar; ignore sub less' bar bar bar bar; ignore sub less' bar bar greater; sub less_bar.liga bar' by LIG; sub less' bar by less_bar.liga; } less_bar; lookup less_bar_bar { sub less_bar_bar.liga LIG bar' by LIG; sub less_bar.liga' LIG bar by less_bar_bar.liga; } less_bar_bar; lookup less_bar_bar_bar { sub less_bar_bar_bar.liga LIG LIG bar' by LIG; sub less_bar_bar.liga' LIG LIG bar by less_bar_bar_bar.liga; } less_bar_bar_bar; # generally it is useful to have the duplicating sequences in a row. This avoids potential badness. lookup less_less { ignore sub less less' less; ignore sub less' less less less; ignore sub less' less [asterisk plus dollar]; ignore sub [hyphen equal] less' less; ignore sub less' less hyphen; ignore sub less' less equal [equal less greater bar colon exclam slash]; ignore sub less' less less [asterisk plus dollar]; sub less_less.liga less' by LIG; sub less' less by less_less.liga; } less_less; lookup less_less_less { sub less_less_less.liga LIG less' by LIG; sub less_less.liga' LIG less by less_less_less.liga; } less_less_less; lookup less_asciitilde_greater { ignore sub less_asciitilde.liga' LIG greater greater; sub less_asciitilde_greater.liga LIG greater' by LIG; sub less_asciitilde.liga' LIG greater by less_asciitilde_greater.liga; } less_asciitilde_greater; lookup less_asterisk_greater { sub less_asterisk_greater.liga LIG greater' by LIG; sub less_asterisk.liga' LIG greater by less_asterisk_greater.liga; } less_asterisk_greater; lookup less_dollar_greater { sub less_dollar_greater.liga LIG greater' by LIG; sub less_dollar.liga' LIG greater by less_dollar_greater.liga; } less_dollar_greater; lookup less_plus_greater { sub less_plus_greater.liga LIG greater' by LIG; sub less_plus.liga' LIG greater by less_plus_greater.liga; } less_plus_greater; lookup less_slash_greater { ignore sub less_slash.liga' LIG greater greater; sub less_slash_greater.liga LIG greater' by LIG; sub less_slash.liga' LIG greater by less_slash_greater.liga; } less_slash_greater; lookup less_bar_greater { ignore sub less_bar.liga' LIG greater greater; sub less_bar_greater.liga LIG greater' by LIG; sub less_bar.liga' LIG greater by less_bar_greater.liga; } less_bar_greater; lookup less_exclam_hyphen_hyphen { ignore sub less less' exclam hyphen hyphen; ignore sub less' exclam hyphen hyphen hyphen; ignore sub parenleft question less' exclam hyphen hyphen; sub less_exclam_hyphen_hyphen.liga LIG LIG hyphen' by LIG; sub less_exclam_hyphen_hyphen.liga LIG hyphen' hyphen by LIG; sub less_exclam_hyphen_hyphen.liga exclam' hyphen hyphen by LIG; sub less' exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga; } less_exclam_hyphen_hyphen; ### Ampersand lookup ampersand_ampersand { ignore sub ampersand ampersand' ampersand; ignore sub ampersand' ampersand ampersand; sub ampersand_ampersand.liga ampersand' by LIG; sub ampersand' ampersand by ampersand_ampersand.liga; } ampersand_ampersand; ### Asciicircum lookup asciicircum_equal { ignore sub asciicircum asciicircum' equal; ignore sub asciicircum' equal equal; sub asciicircum_equal.liga equal' by LIG; sub asciicircum' equal by asciicircum_equal.liga; } asciicircum_equal; ### Asciitilde lookup asciitilde_asciitilde { ignore sub asciitilde asciitilde' asciitilde; ignore sub asciitilde' asciitilde asciitilde; sub asciitilde_asciitilde.liga asciitilde' by LIG; sub asciitilde' asciitilde by asciitilde_asciitilde.liga; } asciitilde_asciitilde; lookup asciitilde_at { ignore sub asciitilde asciitilde' at; ignore sub asciitilde' at at; sub asciitilde_at.liga at' by LIG; sub asciitilde' at by asciitilde_at.liga; } asciitilde_at; lookup asciitilde_greater { ignore sub asciitilde asciitilde' greater; ignore sub asciitilde' greater greater; sub asciitilde_greater.liga greater' by LIG; sub asciitilde' greater by asciitilde_greater.liga; } asciitilde_greater; lookup asciitilde_hyphen { ignore sub asciitilde asciitilde' hyphen; ignore sub asciitilde' hyphen hyphen; sub asciitilde_hyphen.liga hyphen' by LIG; sub asciitilde' hyphen by asciitilde_hyphen.liga; } asciitilde_hyphen; lookup asciitilde_asciitilde_greater { ignore sub asciitilde_asciitilde.liga' LIG greater greater; sub asciitilde_asciitilde_greater.liga LIG greater' by LIG; sub asciitilde_asciitilde.liga' LIG greater by asciitilde_asciitilde_greater.liga; } asciitilde_asciitilde_greater; lookup asciitilde_equal { ignore sub asciitilde asciitilde' equal; ignore sub asciitilde' equal equal; sub asciitilde_equal.liga equal' by LIG; sub asciitilde' equal by asciitilde_equal.liga; } asciitilde_equal; ### Asterisk lookup asterisk_asterisk { ignore sub asterisk asterisk' asterisk; ignore sub asterisk' asterisk asterisk asterisk; ignore sub slash asterisk' asterisk; ignore sub asterisk' asterisk slash; sub asterisk_asterisk.liga asterisk' by LIG; sub asterisk' asterisk by asterisk_asterisk.liga; } asterisk_asterisk; lookup asterisk_asterisk_asterisk { ignore sub asterisk_asterisk.liga' LIG asterisk slash; sub asterisk_asterisk_asterisk.liga LIG asterisk' by LIG; sub asterisk_asterisk.liga' LIG asterisk by asterisk_asterisk_asterisk.liga; } asterisk_asterisk_asterisk; lookup asterisk_greater { ignore sub asterisk asterisk' greater; ignore sub asterisk' greater greater; sub asterisk_greater.liga greater' by LIG; sub asterisk' greater by asterisk_greater.liga; } asterisk_greater; lookup asterisk_slash { ignore sub asterisk asterisk' slash; ignore sub asterisk' slash slash; ignore sub slash asterisk' slash; ignore sub asterisk' slash asterisk; sub asterisk_slash.liga slash' by LIG; sub asterisk' slash by asterisk_slash.liga; } asterisk_slash; lookup asterisk_parenright { ignore sub asterisk asterisk' parenright; ignore sub asterisk' parenright parenright; sub asterisk_parenright.liga parenright' by LIG; sub asterisk' parenright by asterisk_parenright.liga; } asterisk_parenright; ### Backslash lookup backslash_slash { ignore sub @NotSpace backslash' slash; ignore sub backslash' slash @NotSpace; sub backslash_slash.liga slash' by LIG; sub backslash' slash by backslash_slash.liga; } backslash_slash; lookup backslash_backslash { ignore sub backslash backslash' backslash; ignore sub backslash' backslash backslash; sub backslash_backslash.liga backslash' by LIG; sub backslash' backslash by backslash_backslash.liga; } backslash_backslash; ### Bar lookup bar_bar { ignore sub bar bar' bar; ignore sub bar' bar bar bar; ignore sub [hyphen equal] bar' bar; ignore sub bar' bar [hyphen equal]; ignore sub bar' bar bar [hyphen equal]; ignore sub bar' bar equal [equal less greater bar colon exclam slash]; ignore sub bar bar' bar greater; ignore sub [less greater] bar' bar [less greater]; ignore sub less bar' bar; ignore sub less bar bar'; sub bar_bar.liga bar' by LIG; sub bar' bar by bar_bar.liga; } bar_bar; lookup bar_bar_bar { sub bar_bar_bar.liga LIG bar' by LIG; sub bar_bar.liga' LIG bar by bar_bar_bar.liga; } bar_bar_bar; lookup bar_greater { ignore sub bar bar' greater; ignore sub bar' greater greater; ignore sub less bar bar' greater; sub bar_greater.liga greater' by LIG; sub bar' greater by bar_greater.liga; } bar_greater; lookup bar_braceright { ignore sub bar bar' braceright; ignore sub bar' braceright braceright; ignore sub braceleft bar' braceright; sub bar_braceright.liga braceright' by LIG; sub bar' braceright by bar_braceright.liga; } bar_braceright; lookup bar_bracketright { ignore sub bar bar' bracketright; ignore sub bar' bracketright bracketright; ignore sub bracketleft bar' bracketright; sub bar_bracketright.liga bracketright' by LIG; sub bar' bracketright by bar_bracketright.liga; } bar_bracketright; lookup bar_bar_greater { ignore sub bar_bar.liga' LIG greater greater; sub bar_bar_greater.liga LIG greater' by LIG; sub bar_bar.liga' LIG greater by bar_bar_greater.liga; } bar_bar_greater; lookup bar_bar_bar_greater { ignore sub bar_bar_bar.liga' LIG LIG greater greater; sub bar_bar_bar_greater.liga LIG LIG greater' by LIG; sub bar_bar_bar.liga' LIG LIG greater by bar_bar_bar_greater.liga; } bar_bar_bar_greater; ### Brace left lookup braceleft_bar { ignore sub braceleft braceleft' bar; ignore sub braceleft' bar bar; ignore sub braceleft' bar braceright; sub braceleft_bar.liga bar' by LIG; sub braceleft' bar by braceleft_bar.liga; } braceleft_bar; ### Brace right lookup braceright_numbersign { ignore sub braceright braceright' numbersign; ignore sub braceright' numbersign numbersign; sub braceright_numbersign.liga numbersign' by LIG; sub braceright' numbersign by braceright_numbersign.liga; } braceright_numbersign; ### Bracket left lookup bracketleft_bar { ignore sub bracketleft bracketleft' bar; ignore sub bracketleft' bar bar; ignore sub bracketleft' bar bracketright; sub bracketleft_bar.liga bar' by LIG; sub bracketleft' bar by bracketleft_bar.liga; } bracketleft_bar; ### Bracket right lookup bracketright_numbersign { ignore sub bracketright bracketright' numbersign; ignore sub bracketright' numbersign numbersign; sub bracketright_numbersign.liga numbersign' by LIG; sub bracketright' numbersign by bracketright_numbersign.liga; } bracketright_numbersign; ### Colon lookup colon_colon { ignore sub colon colon' colon; ignore sub colon' colon colon colon; ignore sub parenleft question colon' colon; ignore sub colon' colon [less greater]; ignore sub [less greater] colon' colon; sub colon_colon.liga colon' by LIG; sub colon' colon by colon_colon.liga; } colon_colon; lookup colon_colon_colon { sub colon_colon_colon.liga LIG colon' by LIG; sub colon_colon.liga' LIG colon by colon_colon_colon.liga; } colon_colon_colon; lookup colon_equal { ignore sub colon colon' equal; ignore sub colon' equal equal; ignore sub parenleft question colon' equal; ignore sub equal colon' equal; sub colon_equal.liga equal' by LIG; sub colon' equal by colon_equal.liga; } colon_equal; lookup colon_colon_equal { ignore sub colon_colon.liga' LIG equal equal; sub colon_colon_equal.liga LIG equal' by LIG; sub colon_colon.liga' LIG equal by colon_colon_equal.liga; } colon_colon_equal; lookup colon_slash_slash { ignore sub colon colon' slash slash; ignore sub colon' slash slash slash; sub colon_slash_slash.liga LIG slash' by LIG; sub colon_slash_slash.liga slash' slash by LIG; sub colon' slash slash by colon_slash_slash.liga; } colon_slash_slash; ## Dollar lookup dollar_greater { ignore sub dollar dollar' greater; ignore sub dollar' greater greater; sub dollar_greater.liga greater' by LIG; sub dollar' greater by dollar_greater.liga; } dollar_greater; ### Exclam (for equal see below) lookup exclam_equal { ignore sub exclam exclam' equal; ignore sub exclam' equal equal equal; ignore sub parenleft question exclam' equal; ignore sub parenleft question less exclam' equal; ignore sub equal exclam' equal; sub exclam_equal.liga equal' by LIG; sub exclam' equal by exclam_equal.liga; } exclam_equal; lookup exclam_equal_equal { sub exclam_equal_equal.liga LIG equal' by LIG; sub exclam_equal.liga' LIG equal by exclam_equal_equal.liga; } exclam_equal_equal; lookup exclam_exclam { ignore sub exclam exclam' exclam; ignore sub exclam' exclam exclam; ignore sub parenleft question exclam' exclam; ignore sub parenleft question less exclam' exclam; sub exclam_exclam.liga exclam' by LIG; sub exclam' exclam by exclam_exclam.liga; } exclam_exclam; lookup exclam_exclam_period { ignore sub exclam_exclam.liga' LIG period period; sub exclam_exclam_period.liga LIG period' by LIG; sub exclam_exclam.liga' LIG period by exclam_exclam_period.liga; } exclam_exclam_period; lookup exclam_period { ignore sub exclam exclam' period; ignore sub exclam' period period; sub exclam_period.liga period' by LIG; sub exclam' period by exclam_period.liga; } exclam_period; lookup exclam_colon { ignore sub exclam exclam' colon; ignore sub exclam' colon colon; sub exclam_colon.liga colon' by LIG; sub exclam' colon by exclam_colon.liga; } exclam_colon; ## Equal - Made sense to shift this below the exclam to avoid issues lookup equal_equal { ignore sub equal equal' equal; ignore sub equal' equal equal equal; ignore sub parenleft question equal' equal; ignore sub parenleft question less equal' equal; ignore sub less question equal' equal; ignore sub bracketleft equal' equal; ignore sub equal' equal bracketright; ignore sub equal [colon exclam] equal' equal; ignore sub [less greater bar slash] equal' equal; ignore sub equal' equal [less greater bar slash] ; ignore sub equal' equal [colon exclam] equal; sub equal_equal.liga equal' by LIG; sub equal' equal by equal_equal.liga; } equal_equal; lookup equal_equal_equal { sub equal_equal_equal.liga LIG equal' by LIG; sub equal_equal.liga' LIG equal by equal_equal_equal.liga; } equal_equal_equal; ### Hyphen lookup hyphen_asciitilde { ignore sub hyphen hyphen' asciitilde; ignore sub hyphen' asciitilde asciitilde; sub hyphen_asciitilde.liga asciitilde' by LIG; sub hyphen' asciitilde by hyphen_asciitilde.liga; } hyphen_asciitilde; lookup hyphen_hyphen { ignore sub hyphen hyphen' hyphen; ignore sub hyphen' hyphen hyphen hyphen; ignore sub [less greater bar] hyphen' hyphen; ignore sub hyphen' hyphen [less greater bar]; sub hyphen_hyphen.liga hyphen' by LIG; sub hyphen' hyphen by hyphen_hyphen.liga; } hyphen_hyphen; lookup hyphen_hyphen_hyphen { ignore sub hyphen_hyphen.liga' LIG hyphen [less greater bar]; sub hyphen_hyphen_hyphen.liga LIG hyphen' by LIG; sub hyphen_hyphen.liga' LIG hyphen by hyphen_hyphen_hyphen.liga; } hyphen_hyphen_hyphen; ### Greater lookup greater_greater { ignore sub greater greater' greater; ignore sub greater' greater greater greater; ignore sub [asterisk plus dollar] greater' greater; ignore sub [hyphen equal] greater' greater; ignore sub greater' greater hyphen; ignore sub greater' greater equal [equal less greater bar colon exclam slash]; sub greater_greater.liga greater' by LIG; sub greater' greater by greater_greater.liga; } greater_greater; lookup greater_greater_greater { sub greater_greater_greater.liga LIG greater' by LIG; sub greater_greater.liga' LIG greater by greater_greater_greater.liga; } greater_greater_greater; lookup greater_equal { ignore sub greater greater' equal; ignore sub greater' equal equal; ignore sub equal greater' equal; ignore sub greater' equal [less greater bar colon exclam slash]; sub greater_equal.liga equal' by LIG; sub greater' equal by greater_equal.liga; } greater_equal; ### Less moved to top of CALT ### Numbersign lookup numbersign_braceleft { ignore sub numbersign numbersign' braceleft; ignore sub numbersign' braceleft braceleft; sub numbersign_braceleft.liga braceleft' by LIG; sub numbersign' braceleft by numbersign_braceleft.liga; } numbersign_braceleft; lookup numbersign_bracketleft { ignore sub numbersign numbersign' bracketleft; ignore sub numbersign' bracketleft bracketleft; sub numbersign_bracketleft.liga bracketleft' by LIG; sub numbersign' bracketleft by numbersign_bracketleft.liga; } numbersign_bracketleft; lookup numbersign_colon { ignore sub numbersign numbersign' colon; ignore sub numbersign' colon colon; sub numbersign_colon.liga colon' by LIG; sub numbersign' colon by numbersign_colon.liga; } numbersign_colon; lookup numbersign_equal { ignore sub numbersign numbersign' equal; ignore sub numbersign' equal equal; sub numbersign_equal.liga equal' by LIG; sub numbersign' equal by numbersign_equal.liga; } numbersign_equal; lookup numbersign_exclam { ignore sub numbersign numbersign' exclam; ignore sub numbersign' exclam exclam; sub numbersign_exclam.liga exclam' by LIG; sub numbersign' exclam by numbersign_exclam.liga; } numbersign_exclam; lookup numbersign_parenleft { ignore sub numbersign numbersign' parenleft; ignore sub numbersign' parenleft parenleft; sub numbersign_parenleft.liga parenleft' by LIG; sub numbersign' parenleft by numbersign_parenleft.liga; } numbersign_parenleft; lookup numbersign_question { ignore sub numbersign numbersign' question; ignore sub numbersign' question question; sub numbersign_question.liga question' by LIG; sub numbersign' question by numbersign_question.liga; } numbersign_question; lookup numbersign_underscore { ignore sub numbersign numbersign' underscore; ignore sub numbersign' underscore underscore; sub numbersign_underscore.liga underscore' by LIG; sub numbersign' underscore by numbersign_underscore.liga; } numbersign_underscore; lookup numbersign_underscore_parenleft { ignore sub numbersign_underscore.liga' LIG parenleft parenleft; sub numbersign_underscore_parenleft.liga LIG parenleft' by LIG; sub numbersign_underscore.liga' LIG parenleft by numbersign_underscore_parenleft.liga; } numbersign_underscore_parenleft; ### Paren left lookup parenleft_asterisk { ignore sub parenleft parenleft' asterisk; ignore sub parenleft' asterisk asterisk; sub parenleft_asterisk.liga asterisk' by LIG; sub parenleft' asterisk by parenleft_asterisk.liga; } parenleft_asterisk; ### Percent lookup percent_percent { ignore sub percent percent' percent; ignore sub percent' percent percent; sub percent_percent.liga percent' by LIG; sub percent' percent by percent_percent.liga; } percent_percent; ### Period lookup period_equal { ignore sub period period' equal; ignore sub period' equal equal; sub period_equal.liga equal' by LIG; sub period' equal by period_equal.liga; } period_equal; lookup period_period { ignore sub period period' period; ignore sub period' period period period; sub period_period.liga period' by LIG; sub period' period by period_period.liga; } period_period; lookup period_period_period { sub period_period_period.liga LIG period' by LIG; sub period_period.liga' LIG period by period_period_period.liga; } period_period_period; lookup period_question { ignore sub period period' question; ignore sub period' question question; sub period_question.liga question' by LIG; sub period' question by period_question.liga; } period_question; lookup period_hyphen { ignore sub period period' hyphen; ignore sub period' hyphen hyphen; sub period_hyphen.liga hyphen' by LIG; sub period' hyphen by period_hyphen.liga; } period_hyphen; lookup period_period_equal { ignore sub period_period.liga' LIG equal equal; sub period_period_equal.liga LIG equal' by LIG; sub period_period.liga' LIG equal by period_period_equal.liga; } period_period_equal; lookup period_period_less { ignore sub period_period.liga' LIG less less; sub period_period_less.liga LIG less' by LIG; sub period_period.liga' LIG less by period_period_less.liga; } period_period_less; ### Plus lookup plus_greater { ignore sub plus plus' greater; ignore sub plus' greater greater; sub plus_greater.liga greater' by LIG; sub plus' greater by plus_greater.liga; } plus_greater; lookup plus_plus { ignore sub plus plus' plus; ignore sub plus' plus plus plus; sub plus_plus.liga plus' by LIG; sub plus' plus by plus_plus.liga; } plus_plus; lookup plus_plus_plus { ignore sub plus_plus.liga' LIG plus plus; sub plus_plus_plus.liga LIG plus' by LIG; sub plus_plus.liga' LIG plus by plus_plus_plus.liga; } plus_plus_plus; ### Question lookup question_equal { ignore sub question question' equal; ignore sub question' equal equal; ignore sub parenleft question' equal; ignore sub less question' equal; sub question_equal.liga equal' by LIG; sub question' equal by question_equal.liga; } question_equal; lookup question_period { ignore sub question question' period; ignore sub question' period period; sub question_period.liga period' by LIG; sub question' period by question_period.liga; } question_period; lookup question_question { ignore sub question question' question; ignore sub question' question question; sub question_question.liga question' by LIG; sub question' question by question_question.liga; } question_question; lookup question_question_equal { sub question_question_equal.liga LIG equal' by LIG; sub question_question.liga' LIG equal by question_question_equal.liga; } question_question_equal; lookup question_colon { ignore sub question question' colon; ignore sub question' colon colon; sub question_colon.liga colon' by LIG; sub question' colon by question_colon.liga; } question_colon; ### Semicolon lookup semicolon_semicolon { ignore sub semicolon semicolon' semicolon; ignore sub semicolon' semicolon semicolon; sub semicolon_semicolon.liga semicolon' by LIG; sub semicolon' semicolon by semicolon_semicolon.liga; } semicolon_semicolon; ### Slash lookup slash_asterisk { ignore sub slash slash' asterisk; ignore sub slash' asterisk asterisk; ignore sub slash' asterisk slash; ignore sub asterisk slash' asterisk; sub slash_asterisk.liga asterisk' by LIG; sub slash' asterisk by slash_asterisk.liga; } slash_asterisk; lookup slash_greater { ignore sub slash slash' greater; ignore sub slash' greater greater; sub slash_greater.liga greater' by LIG; sub slash' greater by slash_greater.liga; } slash_greater; lookup slash_slash { ignore sub slash slash' slash; ignore sub slash' slash slash slash; ignore sub equal slash' slash; ignore sub slash' slash equal; sub slash_slash.liga slash' by LIG; sub slash' slash by slash_slash.liga; } slash_slash; lookup slash_slash_slash { sub slash_slash_slash.liga LIG slash' by LIG; sub slash_slash.liga' LIG slash by slash_slash_slash.liga; } slash_slash_slash; lookup slash_backslash { ignore sub @NotSpace slash' backslash; ignore sub slash' backslash @NotSpace; sub slash_backslash.liga backslash' by LIG; sub slash' backslash by slash_backslash.liga; } slash_backslash; ### WWW lookup w_w_w { ignore sub w w' w w; ignore sub w' w w w; sub w_w_w.liga LIG w' by LIG; sub w_w_w.liga w' w by LIG; sub w' w w by w_w_w.liga; } w_w_w; ### Vertical-align colon/greater/less # :> :< >: <: # :>: :<: # <:> >:< <:< >:> # <::> <::< >::< >::> # <:::> <:::< >:::< >:::> # <::::> <::::< >::::< >::::> lookup center { #574 :>= :<= ignore sub colon' [less greater] [equal hyphen]; ignore sub colon colon' [less greater]; # ignores the :::< case # middles & ends sub [less.center greater.center colon.center] colon' by colon.center; sub colon.center [less greater]' by [less.center greater.center]; # starts sub [less greater]' colon by [less.center greater.center]; sub colon' [less greater] by colon.center; } center; lookup equal_arrows { # Disable ||| ignore sub bar bar' bar equal; ignore sub bar bar' equal; ignore sub [equal_start.seq equal_middle.seq] bar' bar bar; # equal middle & end sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' [equal less greater bar slash colon exclam] by equal_middle.seq; sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' [equal less greater bar slash colon exclam] by equal_middle.seq; sub [less_equal_start.seq less_equal_middle.seq greater_equal_start.seq greater_equal_middle.seq bar_equal_start.seq bar_equal_middle.seq slash_equal_start.seq slash_equal_middle.seq colon_equal_middle.seq exclam_equal_middle.seq equal_start.seq equal_middle.seq] equal' by equal_end.seq; sub [less_less_equal_start.seq less_less_equal_middle.seq greater_greater_equal_start.seq greater_greater_equal_middle.seq bar_bar_equal_start.seq bar_bar_equal_middle.seq slash_slash_equal_start.seq slash_slash_equal_middle.seq] LIG equal' by equal_end.seq; # double middles sub [equal_start.seq equal_middle.seq] less_less_equal_middle.seq less' equal by LIG; sub [equal_start.seq equal_middle.seq] less' less equal by less_less_equal_middle.seq; sub [equal_start.seq equal_middle.seq] greater_greater_equal_middle.seq greater' equal by LIG; sub [equal_start.seq equal_middle.seq] greater' greater equal by greater_greater_equal_middle.seq; sub [equal_start.seq equal_middle.seq] bar_bar_equal_middle.seq bar' equal by LIG; sub [equal_start.seq equal_middle.seq] bar' bar equal by bar_bar_equal_middle.seq; sub [equal_start.seq equal_middle.seq] slash_slash_equal_middle.seq slash' equal by LIG; sub [equal_start.seq equal_middle.seq] slash' slash equal by slash_slash_equal_middle.seq; # single middles sub [equal_start.seq equal_middle.seq] less' equal by less_equal_middle.seq; sub [equal_start.seq equal_middle.seq] greater' equal by greater_equal_middle.seq; sub [equal_start.seq equal_middle.seq] bar' equal by bar_equal_middle.seq; sub [equal_start.seq equal_middle.seq] slash' equal by slash_equal_middle.seq; sub [equal_start.seq equal_middle.seq] colon' equal by colon_equal_middle.seq; sub [equal_start.seq equal_middle.seq] exclam' equal by exclam_equal_middle.seq; # double ends sub [equal_start.seq equal_middle.seq] less_less_equal_end.seq less' by LIG; sub [equal_start.seq equal_middle.seq] less' less by less_less_equal_end.seq; sub [equal_start.seq equal_middle.seq] greater_greater_equal_end.seq greater' by LIG; sub [equal_start.seq equal_middle.seq] greater' greater by greater_greater_equal_end.seq; sub [equal_start.seq equal_middle.seq] bar_bar_equal_end.seq bar' by LIG; sub [equal_start.seq equal_middle.seq] bar' bar by bar_bar_equal_end.seq; sub [equal_start.seq equal_middle.seq] slash_slash_equal_end.seq slash' by LIG; sub [equal_start.seq equal_middle.seq] slash' slash by slash_slash_equal_end.seq; # single ends sub [equal_start.seq equal_middle.seq] less' by less_equal_end.seq; sub [equal_start.seq equal_middle.seq] greater' by greater_equal_end.seq; sub [equal_start.seq equal_middle.seq] bar' by bar_equal_end.seq; sub [equal_start.seq equal_middle.seq] slash' by slash_equal_end.seq; # double beginnings sub less_less_equal_start.seq less' equal by LIG; sub less' less equal by less_less_equal_start.seq; sub greater_greater_equal_start.seq greater' equal by LIG; sub greater' greater equal by greater_greater_equal_start.seq; sub bar_bar_equal_start.seq bar' equal by LIG; sub bar' bar equal by bar_bar_equal_start.seq; sub slash_slash_equal_start.seq slash' equal by LIG; sub slash' slash equal by slash_slash_equal_start.seq; # Disable >=< #548 sub greater' equal less [equal less] by greater_equal_start.seq; ignore sub greater' equal less; # Disable =< #479 #468 #424 #406 #355 #305 sub equal' less [equal less] by equal_start.seq; # Disable =/ #1056 sub equal' slash [equal slash] by equal_start.seq; # single beginnings sub less' equal [equal less greater bar slash colon exclam] by less_equal_start.seq; # disable >= <= as they're used in math sub greater' equal [equal less greater bar slash colon exclam] by greater_equal_start.seq; sub bar' equal [equal less greater bar slash colon exclam] by bar_equal_start.seq; # disable |= sub slash' equal by slash_equal_start.seq; sub equal' [equal greater bar colon exclam] by equal_start.seq; } equal_arrows; ### Arbitrary-length arrows #346 lookup hyphen_arrows { # Disable ||| ignore sub bar bar' bar hyphen; ignore sub bar bar' hyphen; ignore sub [hyphen_start.seq hyphen_middle.seq] bar' bar bar; # hyphen middle & end sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' [hyphen less greater bar] by hyphen_middle.seq; sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' [hyphen less greater bar] by hyphen_middle.seq; sub [less_hyphen_start.seq less_hyphen_middle.seq greater_hyphen_start.seq greater_hyphen_middle.seq bar_hyphen_start.seq bar_hyphen_middle.seq hyphen_start.seq hyphen_middle.seq] hyphen' by hyphen_end.seq; sub [less_less_hyphen_start.seq less_less_hyphen_middle.seq greater_greater_hyphen_start.seq greater_greater_hyphen_middle.seq bar_bar_hyphen_start.seq bar_bar_hyphen_middle.seq] LIG hyphen' by hyphen_end.seq; # double middles sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_middle.seq less' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] less' less hyphen by less_less_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_middle.seq greater' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] greater' greater hyphen by greater_greater_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_middle.seq bar' hyphen by LIG; sub [hyphen_start.seq hyphen_middle.seq] bar' bar hyphen by bar_bar_hyphen_middle.seq; # single middles sub [hyphen_start.seq hyphen_middle.seq] less' hyphen by less_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] greater' hyphen by greater_hyphen_middle.seq; sub [hyphen_start.seq hyphen_middle.seq] bar' hyphen by bar_hyphen_middle.seq; # double ends sub [hyphen_start.seq hyphen_middle.seq] less_less_hyphen_end.seq less' by LIG; sub [hyphen_start.seq hyphen_middle.seq] less' less by less_less_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] greater_greater_hyphen_end.seq greater' by LIG; sub [hyphen_start.seq hyphen_middle.seq] greater' greater by greater_greater_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] bar_bar_hyphen_end.seq bar' by LIG; sub [hyphen_start.seq hyphen_middle.seq] bar' bar by bar_bar_hyphen_end.seq; # single ends sub [hyphen_start.seq hyphen_middle.seq] less' by less_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] greater' by greater_hyphen_end.seq; sub [hyphen_start.seq hyphen_middle.seq] bar' by bar_hyphen_end.seq; # double beginnings sub less_less_hyphen_start.seq less' hyphen by LIG; sub less' less hyphen by less_less_hyphen_start.seq; sub greater_greater_hyphen_start.seq greater' hyphen by LIG; sub greater' greater hyphen by greater_greater_hyphen_start.seq; sub bar_bar_hyphen_start.seq bar' hyphen by LIG; sub bar' bar hyphen by bar_bar_hyphen_start.seq; # single beginnings sub less' hyphen by less_hyphen_start.seq; sub greater' hyphen by greater_hyphen_start.seq; sub bar' hyphen by bar_hyphen_start.seq; sub hyphen' [hyphen less greater bar] by hyphen_start.seq; } hyphen_arrows; lookup numbersigns { # middle parts sub [numbersign_start.seq numbersign_middle.seq] numbersign' numbersign by numbersign_middle.seq; # ends sub [numbersign_start.seq numbersign_middle.seq] numbersign' by numbersign_end.seq; # beginnings sub numbersign' numbersign by numbersign_start.seq; } numbersigns; lookup underscores { # middle parts sub [underscore_start.seq underscore_middle.seq] bar' underscore by bar_underscore_middle.seq; sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' bar underscore by underscore_middle.seq; sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' underscore by underscore_middle.seq; # ends sub [underscore_start.seq underscore_middle.seq bar_underscore_middle.seq] underscore' by underscore_end.seq; # beginnings sub underscore' bar underscore by underscore_start.seq; sub underscore' underscore by underscore_start.seq; } underscores; #Other non-ligature bits sub dcaron' [lacute lcaron lcommaaccent ldot lslash b h k l hbar hcircumflex kcommaaccent @Uppercase] by dcaron.alt; # Arabic test lookup arabiclong1 { script arab; lookupflag IgnoreMarks RightToLeft; sub @NRW' by @EXD; } arabiclong1; lookup arabiclong2 { script arab; lookupflag IgnoreMarks RightToLeft; sub @NRW' by @EXD; sub behDotless-ar.alt' by behDotless-ar.alt LIG; sub behDotless-ar.fina.alt' by behDotless-ar.fina.alt LIG; sub beh-ar.alt' by beh-ar.alt LIG; sub beh-ar.fina.alt' by beh-ar.fina.alt LIG; sub peh-ar.alt' by peh-ar.alt LIG; sub peh-ar.fina.alt' by peh-ar.fina.alt LIG; sub beeh-ar.alt' by beeh-ar.alt LIG; sub beeh-ar.fina.alt' by beeh-ar.fina.alt LIG; sub beheh-ar.alt' by beheh-ar.alt LIG; sub beheh-ar.fina.alt' by beheh-ar.fina.alt LIG; sub teh-ar.alt' by teh-ar.alt LIG; sub teh-ar.fina.alt' by teh-ar.fina.alt LIG; sub tehRing-ar.alt' by tehRing-ar.alt LIG; sub tehRing-ar.fina.alt' by tehRing-ar.fina.alt LIG; sub tehThreedotsdown-ar.alt' by tehThreedotsdown-ar.alt LIG; sub tehThreedotsdown-ar.fina.alt' by tehThreedotsdown-ar.fina.alt LIG; sub theh-ar.alt' by theh-ar.alt LIG; sub theh-ar.fina.alt' by theh-ar.fina.alt LIG; sub tteh-ar.alt' by tteh-ar.alt LIG; sub tteh-ar.fina.alt' by tteh-ar.fina.alt LIG; sub tteheh-ar.alt' by tteheh-ar.alt LIG; sub tteheh-ar.fina.alt' by tteheh-ar.fina.alt LIG; sub teheh-ar.alt' by teheh-ar.alt LIG; sub teheh-ar.fina.alt' by teheh-ar.fina.alt LIG; sub behThreedotshorizontalbelow-ar.alt' by behThreedotshorizontalbelow-ar.alt LIG; sub behThreedotshorizontalbelow-ar.fina.alt' by behThreedotshorizontalbelow-ar.fina.alt LIG; sub behThreedotsupabove-ar.alt' by behThreedotsupabove-ar.alt LIG; sub behThreedotsupabove-ar.fina.alt' by behThreedotsupabove-ar.fina.alt LIG; sub behThreedotsupbelow-ar.alt' by behThreedotsupbelow-ar.alt LIG; sub behThreedotsupbelow-ar.fina.alt' by behThreedotsupbelow-ar.fina.alt LIG; sub tehThreedotsupbelow-ar.alt' by tehThreedotsupbelow-ar.alt LIG; sub tehThreedotsupbelow-ar.fina.alt' by tehThreedotsupbelow-ar.fina.alt LIG; sub behTwodotsbelowDotabove-ar.alt' by behTwodotsbelowDotabove-ar.alt LIG; sub behTwodotsbelowDotabove-ar.fina.alt' by behTwodotsbelowDotabove-ar.fina.alt LIG; sub behVinvertedbelow-ar.alt' by behVinvertedbelow-ar.alt LIG; sub behVinvertedbelow-ar.fina.alt' by behVinvertedbelow-ar.fina.alt LIG; sub behVabove-ar.alt' by behVabove-ar.alt LIG; sub behVabove-ar.fina.alt' by behVabove-ar.fina.alt LIG; sub behVbelow-ar.alt' by behVbelow-ar.alt LIG; sub behVbelow-ar.fina.alt' by behVbelow-ar.fina.alt LIG; sub behhamzaabove-ar.alt' by behhamzaabove-ar.alt LIG; sub behhamzaabove-ar.fina.alt' by behhamzaabove-ar.fina.alt LIG; sub seen-ar.alt' by seen-ar.alt LIG; sub seen-ar.fina.alt' by seen-ar.fina.alt LIG; sub seenDotbelowDotabove-ar.alt' by seenDotbelowDotabove-ar.alt LIG; sub seenDotbelowDotabove-ar.fina.alt' by seenDotbelowDotabove-ar.fina.alt LIG; sub seenThreedotsbelow-ar.alt' by seenThreedotsbelow-ar.alt LIG; sub seenThreedotsbelow-ar.fina.alt' by seenThreedotsbelow-ar.fina.alt LIG; sub sheen-ar.alt' by sheen-ar.alt LIG; sub sheen-ar.fina.alt' by sheen-ar.fina.alt LIG; sub sheenDotbelow-ar.alt' by sheenDotbelow-ar.alt LIG; sub sheenDotbelow-ar.fina.alt' by sheenDotbelow-ar.fina.alt LIG; sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG; sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG; sub sad-ar.alt' by sad-ar.alt LIG; sub sad-ar.fina.alt' by sad-ar.fina.alt LIG; sub sadTwodotsbelow-ar.alt' by sadTwodotsbelow-ar.alt LIG; sub sadTwodotsbelow-ar.fina.alt' by sadTwodotsbelow-ar.fina.alt LIG; sub sadThreedots-ar.alt' by sadThreedots-ar.alt LIG; sub sadThreedots-ar.fina.alt' by sadThreedots-ar.fina.alt LIG; sub sadThreedotsbelow-ar.alt' by sadThreedotsbelow-ar.alt LIG; sub sadThreedotsbelow-ar.fina.alt' by sadThreedotsbelow-ar.fina.alt LIG; sub dad-ar.alt' by dad-ar.alt LIG; sub dad-ar.fina.alt' by dad-ar.fina.alt LIG; sub dadDotbelow-ar.alt' by dadDotbelow-ar.alt LIG; sub dadDotbelow-ar.fina.alt' by dadDotbelow-ar.fina.alt LIG; sub feh-ar.alt' by feh-ar.alt LIG; sub feh-ar.fina.alt' by feh-ar.fina.alt LIG; sub veh-ar.alt' by veh-ar.alt LIG; sub veh-ar.fina.alt' by veh-ar.fina.alt LIG; sub fehDotless-ar.alt' by fehDotless-ar.alt LIG; sub fehDotless-ar.fina.alt' by fehDotless-ar.fina.alt LIG; sub fehDotMovedbelow-ar.alt' by fehDotMovedbelow-ar.alt LIG; sub fehDotbelow-ar.alt' by fehDotbelow-ar.alt LIG; sub fehDotbelow-ar.fina.alt' by fehDotbelow-ar.fina.alt LIG; sub fehThreedotsbelow-ar.alt' by fehThreedotsbelow-ar.alt LIG; sub fehThreedotsbelow-ar.fina.alt' by fehThreedotsbelow-ar.fina.alt LIG; sub fehDotbelowThreedotsabove-ar.alt' by fehDotbelowThreedotsabove-ar.alt LIG; sub fehDotbelowThreedotsabove-ar.fina.alt' by fehDotbelowThreedotsabove-ar.fina.alt LIG; sub peheh-ar.alt' by peheh-ar.alt LIG; sub peheh-ar.fina.alt' by peheh-ar.fina.alt LIG; sub seenFourdotsabove-ar.alt' by seenFourdotsabove-ar.alt LIG; sub seenFourdotsabove-ar.fina.alt' by seenFourdotsabove-ar.fina.alt LIG; sub fehTwodotsbelow-ar.alt' by fehTwodotsbelow-ar.alt LIG; sub fehTwodotsbelow-ar.fina.alt' by fehTwodotsbelow-ar.fina.alt LIG; sub fehThreedotsupbelow-ar.alt' by fehThreedotsupbelow-ar.alt LIG; sub fehThreedotsupbelow-ar.fina.alt' by fehThreedotsupbelow-ar.fina.alt LIG; sub seenTwodotsverticalabove-ar.alt' by seenTwodotsverticalabove-ar.alt LIG; sub seenTwodotsverticalabove-ar.fina.alt' by seenTwodotsverticalabove-ar.fina.alt LIG; sub seenTahTwodotshorizontalabove-ar.alt' by seenTahTwodotshorizontalabove-ar.alt LIG; sub seenTahTwodotshorizontalabove-ar.fina.alt' by seenTahTwodotshorizontalabove-ar.fina.alt LIG; sub seenFourabove-ar.alt' by seenFourabove-ar.alt LIG; sub seenFourabove-ar.fina.alt' by seenFourabove-ar.fina.alt LIG; sub seenVinvertedabove-ar.alt' by seenVinvertedabove-ar.alt LIG; sub seenVinvertedabove-ar.fina.alt' by seenVinvertedabove-ar.fina.alt LIG; sub seenThreedotsbelowthreedots-ar.alt' by seenThreedotsbelowthreedots-ar.alt LIG; sub seenThreedotsbelowthreedots-ar.fina.alt' by seenThreedotsbelowthreedots-ar.fina.alt LIG; sub behMeemabove-ar.alt' by behMeemabove-ar.alt LIG; sub behMeemabove-ar.fina.alt' by behMeemabove-ar.fina.alt LIG; sub pehMeemabove-ar.alt' by pehMeemabove-ar.alt LIG; sub pehMeemabove-ar.fina.alt' by pehMeemabove-ar.fina.alt LIG; sub tehTehabove-ar.alt' by tehTehabove-ar.alt LIG; sub tehTehabove-ar.fina.alt' by tehTehabove-ar.fina.alt LIG; } arabiclong2; lookup condensedar { script arab; lookupflag IgnoreMarks RightToLeft; lookupflag IgnoreMarks RightToLeft; sub @beh1' @alef1 by @beh2; sub @beh2 @alef1' by @alef2; } condensedar; } calt; feature ccmp { lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb]; sub [i j i-cy je-cy]' @CombiningTopAccents by [idotless jdotless idotless jdotless]; sub iogonek' @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; sub [i j i-cy je-cy]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless idotless jdotless]; sub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; lookup ccmp_latn_1 { sub fi by f i; sub fl by f l; } ccmp_latn_1; script latn; lookup ccmp_latn_1; } ccmp; feature locl { lookup locl_latn_0 { script latn; language ROM; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language PLK; sub Cacute by Cacute.loclPLK; sub Nacute by Nacute.loclPLK; sub Oacute by Oacute.loclPLK; sub Sacute by Sacute.loclPLK; sub Zacute by Zacute.loclPLK; sub cacute by cacute.loclPLK; sub nacute by nacute.loclPLK; sub oacute by oacute.loclPLK; sub sacute by sacute.loclPLK; sub zacute by zacute.loclPLK; sub acutecomb by acutecomb.loclPLK; } locl_latn_1; lookup locl_latn_2 { script latn; language NLD; sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_2; lookup locl_cyrl_0 { script cyrl; language BGR; sub De-cy by De-cy.loclBGR; sub El-cy by El-cy.loclBGR; sub Ef-cy by Ef-cy.loclBGR; sub ve-cy by ve-cy.loclBGR; sub ge-cy by ge-cy.loclBGR; sub de-cy by de-cy.loclBGR; sub zhe-cy by zhe-cy.loclBGR; sub ze-cy by ze-cy.loclBGR; sub ii-cy by ii-cy.loclBGR; sub iishort-cy by iishort-cy.loclBGR; sub iigrave-cy by iigrave-cy.loclBGR; sub ka-cy by ka-cy.loclBGR; sub el-cy by el-cy.loclBGR; sub pe-cy by pe-cy.loclBGR; sub te-cy by te-cy.loclBGR; sub tse-cy by tse-cy.loclBGR; sub sha-cy by sha-cy.loclBGR; sub shcha-cy by shcha-cy.loclBGR; sub softsign-cy by softsign-cy.loclBGR; sub hardsign-cy by hardsign-cy.loclBGR; sub iu-cy by iu-cy.loclBGR; } locl_cyrl_0; lookup locl_cyrl_1 { script cyrl; language SRB; sub be-cy by be-cy.loclSRB; } locl_cyrl_1; } locl; feature subs { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } subs; feature sinf { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } sinf; feature sups { # automatic sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; } sups; feature numr { # automatic sub zero by zero.numr; sub one by one.numr; sub two by two.numr; sub three by three.numr; sub four by four.numr; sub five by five.numr; sub six by six.numr; sub seven by seven.numr; sub eight by eight.numr; sub nine by nine.numr; } numr; feature dnom { # automatic sub zero by zero.dnom; sub one by one.dnom; sub two by two.dnom; sub three by three.dnom; sub four by four.dnom; sub five by five.dnom; sub six by six.dnom; sub seven by seven.dnom; sub eight by eight.dnom; sub nine by nine.dnom; } dnom; feature frac { # automatic lookup FRAC { sub slash by fraction; } FRAC; lookup UP { sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; } UP; lookup DOWN { sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; } DOWN; } frac; feature ordn { # automatic sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; } ordn; feature case { # automatic sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub horncomb by horncomb.case; sub tonos by tonos.case; sub brevecomb-cy by brevecomb-cy.case; } case; feature liga { # disabled # } liga; feature ss02 { sub asciitilde_equal.liga by exclam_equal.liga; } ss02; feature zero { # automatic sub zero by zero.zero; } zero; feature ss19 { # notes: # Name: Slashed zero sub zero by zero.zero; } ss19; feature rclt { # this subs the GDI-centric versions of these symbols with DWrite-centric ones sub lowerOneEighthBlock by lowerOneEighthBlock.stypo; sub lowerOneQuarterBlock by lowerOneQuarterBlock.stypo; sub lowerThreeEighthsBlock by lowerThreeEighthsBlock.stypo; sub lowerHalfBlock by lowerHalfBlock.stypo; sub lowerFiveEighthsBlock by lowerFiveEighthsBlock.stypo; sub lowerThreeQuartersBlock by lowerThreeQuartersBlock.stypo; sub lowerSevenEighthsBlock by lowerSevenEighthsBlock.stypo; sub fullBlock by fullBlock.stypo; sub upperHalfBlock by upperHalfBlock.stypo; sub upperOneEighthBlock by upperOneEighthBlock.stypo; sub leftOneEighthBlock by leftOneEighthBlock.stypo; sub leftOneQuarterBlock by leftOneQuarterBlock.stypo; sub leftThreeEighthsBlock by leftThreeEighthsBlock.stypo; sub leftBlock by leftBlock.stypo; sub leftFiveEighthsBlock by leftFiveEighthsBlock.stypo; sub leftThreeQuartersBlock by leftThreeQuartersBlock.stypo; sub leftSevenEighthsBlock by leftSevenEighthsBlock.stypo; sub rightBlock by rightBlock.stypo; sub rightOneEighthBlock by rightOneEighthBlock.stypo; sub lowerLeftBlock by lowerLeftBlock.stypo; sub lowerRightBlock by lowerRightBlock.stypo; sub upperLeftBlock by upperLeftBlock.stypo; sub upperLeftAndLowerLeftAndLowerRightBlock by upperLeftAndLowerLeftAndLowerRightBlock.stypo; sub upperLeftAndLowerRightBlock by upperLeftAndLowerRightBlock.stypo; sub upperLeftAndUpperRightAndLowerLeftBlock by upperLeftAndUpperRightAndLowerLeftBlock.stypo; sub upperLeftAndUpperRightAndLowerRightBlock by upperLeftAndUpperRightAndLowerRightBlock.stypo; sub upperRightBlock by upperRightBlock.stypo; sub upperRightAndLowerLeftBlock by upperRightAndLowerLeftBlock.stypo; sub upperRightAndLowerLeftAndLowerRightBlock by upperRightAndLowerLeftAndLowerRightBlock.stypo; sub shadelight by shadelight.stypo; sub shademedium by shademedium.stypo; sub shadedark by shadedark.stypo; sub checkerBoardDeleteAmstradCpc by checkerBoardDeleteAmstradCpc.stypo; sub checkerBoardFill by checkerBoardFill.stypo; sub checkerBoardFillInverse by checkerBoardFillInverse.stypo; sub blockQuadrant-UC by blockQuadrant-UC.stypo; sub blockQuadrant-LC by blockQuadrant-LC.stypo; sub blockQuadrant-ML by blockQuadrant-ML.stypo; sub blockQuadrant-MR by blockQuadrant-MR.stypo; sub blockTriangle-1 by blockTriangle-1.stypo; sub blockTriangle-2 by blockTriangle-2.stypo; sub blockTriangle-3 by blockTriangle-3.stypo; sub blockTriangle-4 by blockTriangle-4.stypo; sub blockTriangle-14 by blockTriangle-14.stypo; sub blockTriangle-23 by blockTriangle-23.stypo; sub blockTriangle-123 by blockTriangle-123.stypo; sub blockTriangle-124 by blockTriangle-124.stypo; sub blockTriangle-134 by blockTriangle-134.stypo; sub blockTriangle-234 by blockTriangle-234.stypo; sub blockCircle-1 by blockCircle-1.stypo; sub blockCircle-2 by blockCircle-2.stypo; sub blockCircle-3 by blockCircle-3.stypo; sub blockCircle-4 by blockCircle-4.stypo; sub blockCircle-UC by blockCircle-UC.stypo; sub blockCircle-LC by blockCircle-LC.stypo; sub blockCircle-ML by blockCircle-ML.stypo; sub blockCircle-MR by blockCircle-MR.stypo; sub blockSextant-1 by blockSextant-1.stypo; sub blockSextant-2 by blockSextant-2.stypo; sub blockSextant-12 by blockSextant-12.stypo; sub blockSextant-3 by blockSextant-3.stypo; sub blockSextant-13 by blockSextant-13.stypo; sub blockSextant-23 by blockSextant-23.stypo; sub blockSextant-123 by blockSextant-123.stypo; sub blockSextant-4 by blockSextant-4.stypo; sub blockSextant-14 by blockSextant-14.stypo; sub blockSextant-24 by blockSextant-24.stypo; sub blockSextant-124 by blockSextant-124.stypo; sub blockSextant-34 by blockSextant-34.stypo; sub blockSextant-134 by blockSextant-134.stypo; sub blockSextant-234 by blockSextant-234.stypo; sub blockSextant-1234 by blockSextant-1234.stypo; sub blockSextant-5 by blockSextant-5.stypo; sub blockSextant-15 by blockSextant-15.stypo; sub blockSextant-25 by blockSextant-25.stypo; sub blockSextant-125 by blockSextant-125.stypo; sub blockSextant-35 by blockSextant-35.stypo; sub blockSextant-235 by blockSextant-235.stypo; sub blockSextant-1235 by blockSextant-1235.stypo; sub blockSextant-45 by blockSextant-45.stypo; sub blockSextant-145 by blockSextant-145.stypo; sub blockSextant-245 by blockSextant-245.stypo; sub blockSextant-1245 by blockSextant-1245.stypo; sub blockSextant-345 by blockSextant-345.stypo; sub blockSextant-1345 by blockSextant-1345.stypo; sub blockSextant-2345 by blockSextant-2345.stypo; sub blockSextant-12345 by blockSextant-12345.stypo; sub blockSextant-6 by blockSextant-6.stypo; sub blockSextant-16 by blockSextant-16.stypo; sub blockSextant-26 by blockSextant-26.stypo; sub blockSextant-126 by blockSextant-126.stypo; sub blockSextant-36 by blockSextant-36.stypo; sub blockSextant-136 by blockSextant-136.stypo; sub blockSextant-236 by blockSextant-236.stypo; sub blockSextant-1236 by blockSextant-1236.stypo; sub blockSextant-46 by blockSextant-46.stypo; sub blockSextant-146 by blockSextant-146.stypo; sub blockSextant-1246 by blockSextant-1246.stypo; sub blockSextant-346 by blockSextant-346.stypo; sub blockSextant-1346 by blockSextant-1346.stypo; sub blockSextant-2346 by blockSextant-2346.stypo; sub blockSextant-12346 by blockSextant-12346.stypo; sub blockSextant-56 by blockSextant-56.stypo; sub blockSextant-156 by blockSextant-156.stypo; sub blockSextant-256 by blockSextant-256.stypo; sub blockSextant-1256 by blockSextant-1256.stypo; sub blockSextant-356 by blockSextant-356.stypo; sub blockSextant-1356 by blockSextant-1356.stypo; sub blockSextant-2356 by blockSextant-2356.stypo; sub blockSextant-12356 by blockSextant-12356.stypo; sub blockSextant-456 by blockSextant-456.stypo; sub blockSextant-1456 by blockSextant-1456.stypo; sub blockSextant-2456 by blockSextant-2456.stypo; sub blockSextant-12456 by blockSextant-12456.stypo; sub blockSextant-3456 by blockSextant-3456.stypo; sub blockSextant-13456 by blockSextant-13456.stypo; sub blockSextant-23456 by blockSextant-23456.stypo; sub blockDiagonal-1FB3C by blockDiagonal-1FB3C.stypo; sub blockDiagonal-1FB3D by blockDiagonal-1FB3D.stypo; sub blockDiagonal-1FB3E by blockDiagonal-1FB3E.stypo; sub blockDiagonal-1FB3F by blockDiagonal-1FB3F.stypo; sub blockDiagonal-1FB40 by blockDiagonal-1FB40.stypo; sub blockDiagonal-1FB41 by blockDiagonal-1FB41.stypo; sub blockDiagonal-1FB42 by blockDiagonal-1FB42.stypo; sub blockDiagonal-1FB43 by blockDiagonal-1FB43.stypo; sub blockDiagonal-1FB44 by blockDiagonal-1FB44.stypo; sub blockDiagonal-1FB45 by blockDiagonal-1FB45.stypo; sub blockDiagonal-1FB46 by blockDiagonal-1FB46.stypo; sub blockDiagonal-1FB47 by blockDiagonal-1FB47.stypo; sub blockDiagonal-1FB48 by blockDiagonal-1FB48.stypo; sub blockDiagonal-1FB49 by blockDiagonal-1FB49.stypo; sub blockDiagonal-1FB4A by blockDiagonal-1FB4A.stypo; sub blockDiagonal-1FB4B by blockDiagonal-1FB4B.stypo; sub blockDiagonal-1FB4C by blockDiagonal-1FB4C.stypo; sub blockDiagonal-1FB4D by blockDiagonal-1FB4D.stypo; sub blockDiagonal-1FB4E by blockDiagonal-1FB4E.stypo; sub blockDiagonal-1FB4F by blockDiagonal-1FB4F.stypo; sub blockDiagonal-1FB50 by blockDiagonal-1FB50.stypo; sub blockDiagonal-1FB51 by blockDiagonal-1FB51.stypo; sub blockDiagonal-1FB52 by blockDiagonal-1FB52.stypo; sub blockDiagonal-1FB53 by blockDiagonal-1FB53.stypo; sub blockDiagonal-1FB54 by blockDiagonal-1FB54.stypo; sub blockDiagonal-1FB55 by blockDiagonal-1FB55.stypo; sub blockDiagonal-1FB56 by blockDiagonal-1FB56.stypo; sub blockDiagonal-1FB57 by blockDiagonal-1FB57.stypo; sub blockDiagonal-1FB58 by blockDiagonal-1FB58.stypo; sub blockDiagonal-1FB59 by blockDiagonal-1FB59.stypo; sub blockDiagonal-1FB5A by blockDiagonal-1FB5A.stypo; sub blockDiagonal-1FB5B by blockDiagonal-1FB5B.stypo; sub blockDiagonal-1FB5C by blockDiagonal-1FB5C.stypo; sub blockDiagonal-1FB5D by blockDiagonal-1FB5D.stypo; sub blockDiagonal-1FB5E by blockDiagonal-1FB5E.stypo; sub blockDiagonal-1FB5F by blockDiagonal-1FB5F.stypo; sub blockDiagonal-1FB60 by blockDiagonal-1FB60.stypo; sub blockDiagonal-1FB61 by blockDiagonal-1FB61.stypo; sub blockDiagonal-1FB62 by blockDiagonal-1FB62.stypo; sub blockDiagonal-1FB63 by blockDiagonal-1FB63.stypo; sub blockDiagonal-1FB64 by blockDiagonal-1FB64.stypo; sub blockDiagonal-1FB65 by blockDiagonal-1FB65.stypo; sub blockDiagonal-1FB66 by blockDiagonal-1FB66.stypo; sub blockDiagonal-1FB67 by blockDiagonal-1FB67.stypo; sub blockOctant-1 by blockOctant-1.stypo; sub blockOctant-2 by blockOctant-2.stypo; sub blockOctant-12 by blockOctant-12.stypo; sub blockOctant-3 by blockOctant-3.stypo; sub blockOctant-23 by blockOctant-23.stypo; sub blockOctant-123 by blockOctant-123.stypo; sub blockOctant-4 by blockOctant-4.stypo; sub blockOctant-14 by blockOctant-14.stypo; sub blockOctant-124 by blockOctant-124.stypo; sub blockOctant-34 by blockOctant-34.stypo; sub blockOctant-134 by blockOctant-134.stypo; sub blockOctant-234 by blockOctant-234.stypo; sub blockOctant-5 by blockOctant-5.stypo; sub blockOctant-15 by blockOctant-15.stypo; sub blockOctant-25 by blockOctant-25.stypo; sub blockOctant-125 by blockOctant-125.stypo; sub blockOctant-135 by blockOctant-135.stypo; sub blockOctant-235 by blockOctant-235.stypo; sub blockOctant-1235 by blockOctant-1235.stypo; sub blockOctant-45 by blockOctant-45.stypo; sub blockOctant-145 by blockOctant-145.stypo; sub blockOctant-245 by blockOctant-245.stypo; sub blockOctant-1245 by blockOctant-1245.stypo; sub blockOctant-345 by blockOctant-345.stypo; sub blockOctant-1345 by blockOctant-1345.stypo; sub blockOctant-2345 by blockOctant-2345.stypo; sub blockOctant-12345 by blockOctant-12345.stypo; sub blockOctant-6 by blockOctant-6.stypo; sub blockOctant-16 by blockOctant-16.stypo; sub blockOctant-26 by blockOctant-26.stypo; sub blockOctant-126 by blockOctant-126.stypo; sub blockOctant-36 by blockOctant-36.stypo; sub blockOctant-136 by blockOctant-136.stypo; sub blockOctant-236 by blockOctant-236.stypo; sub blockOctant-1236 by blockOctant-1236.stypo; sub blockOctant-146 by blockOctant-146.stypo; sub blockOctant-246 by blockOctant-246.stypo; sub blockOctant-1246 by blockOctant-1246.stypo; sub blockOctant-346 by blockOctant-346.stypo; sub blockOctant-1346 by blockOctant-1346.stypo; sub blockOctant-2346 by blockOctant-2346.stypo; sub blockOctant-12346 by blockOctant-12346.stypo; sub blockOctant-56 by blockOctant-56.stypo; sub blockOctant-156 by blockOctant-156.stypo; sub blockOctant-256 by blockOctant-256.stypo; sub blockOctant-1256 by blockOctant-1256.stypo; sub blockOctant-356 by blockOctant-356.stypo; sub blockOctant-1356 by blockOctant-1356.stypo; sub blockOctant-2356 by blockOctant-2356.stypo; sub blockOctant-12356 by blockOctant-12356.stypo; sub blockOctant-456 by blockOctant-456.stypo; sub blockOctant-1456 by blockOctant-1456.stypo; sub blockOctant-2456 by blockOctant-2456.stypo; sub blockOctant-12456 by blockOctant-12456.stypo; sub blockOctant-3456 by blockOctant-3456.stypo; sub blockOctant-13456 by blockOctant-13456.stypo; sub blockOctant-23456 by blockOctant-23456.stypo; sub blockOctant-123456 by blockOctant-123456.stypo; sub blockOctant-7 by blockOctant-7.stypo; sub blockOctant-17 by blockOctant-17.stypo; sub blockOctant-27 by blockOctant-27.stypo; sub blockOctant-127 by blockOctant-127.stypo; sub blockOctant-37 by blockOctant-37.stypo; sub blockOctant-137 by blockOctant-137.stypo; sub blockOctant-237 by blockOctant-237.stypo; sub blockOctant-1237 by blockOctant-1237.stypo; sub blockOctant-47 by blockOctant-47.stypo; sub blockOctant-147 by blockOctant-147.stypo; sub blockOctant-247 by blockOctant-247.stypo; sub blockOctant-1247 by blockOctant-1247.stypo; sub blockOctant-347 by blockOctant-347.stypo; sub blockOctant-1347 by blockOctant-1347.stypo; sub blockOctant-2347 by blockOctant-2347.stypo; sub blockOctant-12347 by blockOctant-12347.stypo; sub blockOctant-157 by blockOctant-157.stypo; sub blockOctant-257 by blockOctant-257.stypo; sub blockOctant-1257 by blockOctant-1257.stypo; sub blockOctant-357 by blockOctant-357.stypo; sub blockOctant-2357 by blockOctant-2357.stypo; sub blockOctant-12357 by blockOctant-12357.stypo; sub blockOctant-457 by blockOctant-457.stypo; sub blockOctant-1457 by blockOctant-1457.stypo; sub blockOctant-12457 by blockOctant-12457.stypo; sub blockOctant-3457 by blockOctant-3457.stypo; sub blockOctant-13457 by blockOctant-13457.stypo; sub blockOctant-23457 by blockOctant-23457.stypo; sub blockOctant-67 by blockOctant-67.stypo; sub blockOctant-167 by blockOctant-167.stypo; sub blockOctant-267 by blockOctant-267.stypo; sub blockOctant-1267 by blockOctant-1267.stypo; sub blockOctant-367 by blockOctant-367.stypo; sub blockOctant-1367 by blockOctant-1367.stypo; sub blockOctant-2367 by blockOctant-2367.stypo; sub blockOctant-12367 by blockOctant-12367.stypo; sub blockOctant-467 by blockOctant-467.stypo; sub blockOctant-1467 by blockOctant-1467.stypo; sub blockOctant-2467 by blockOctant-2467.stypo; sub blockOctant-12467 by blockOctant-12467.stypo; sub blockOctant-3467 by blockOctant-3467.stypo; sub blockOctant-13467 by blockOctant-13467.stypo; sub blockOctant-23467 by blockOctant-23467.stypo; sub blockOctant-123467 by blockOctant-123467.stypo; sub blockOctant-567 by blockOctant-567.stypo; sub blockOctant-1567 by blockOctant-1567.stypo; sub blockOctant-2567 by blockOctant-2567.stypo; sub blockOctant-12567 by blockOctant-12567.stypo; sub blockOctant-3567 by blockOctant-3567.stypo; sub blockOctant-13567 by blockOctant-13567.stypo; sub blockOctant-23567 by blockOctant-23567.stypo; sub blockOctant-123567 by blockOctant-123567.stypo; sub blockOctant-4567 by blockOctant-4567.stypo; sub blockOctant-14567 by blockOctant-14567.stypo; sub blockOctant-24567 by blockOctant-24567.stypo; sub blockOctant-124567 by blockOctant-124567.stypo; sub blockOctant-34567 by blockOctant-34567.stypo; sub blockOctant-134567 by blockOctant-134567.stypo; sub blockOctant-234567 by blockOctant-234567.stypo; sub blockOctant-1234567 by blockOctant-1234567.stypo; sub blockOctant-8 by blockOctant-8.stypo; sub blockOctant-18 by blockOctant-18.stypo; sub blockOctant-28 by blockOctant-28.stypo; sub blockOctant-128 by blockOctant-128.stypo; sub blockOctant-38 by blockOctant-38.stypo; sub blockOctant-138 by blockOctant-138.stypo; sub blockOctant-238 by blockOctant-238.stypo; sub blockOctant-1238 by blockOctant-1238.stypo; sub blockOctant-48 by blockOctant-48.stypo; sub blockOctant-148 by blockOctant-148.stypo; sub blockOctant-248 by blockOctant-248.stypo; sub blockOctant-1248 by blockOctant-1248.stypo; sub blockOctant-348 by blockOctant-348.stypo; sub blockOctant-1348 by blockOctant-1348.stypo; sub blockOctant-2348 by blockOctant-2348.stypo; sub blockOctant-12348 by blockOctant-12348.stypo; sub blockOctant-58 by blockOctant-58.stypo; sub blockOctant-158 by blockOctant-158.stypo; sub blockOctant-258 by blockOctant-258.stypo; sub blockOctant-1258 by blockOctant-1258.stypo; sub blockOctant-358 by blockOctant-358.stypo; sub blockOctant-1358 by blockOctant-1358.stypo; sub blockOctant-2358 by blockOctant-2358.stypo; sub blockOctant-12358 by blockOctant-12358.stypo; sub blockOctant-458 by blockOctant-458.stypo; sub blockOctant-1458 by blockOctant-1458.stypo; sub blockOctant-2458 by blockOctant-2458.stypo; sub blockOctant-12458 by blockOctant-12458.stypo; sub blockOctant-3458 by blockOctant-3458.stypo; sub blockOctant-13458 by blockOctant-13458.stypo; sub blockOctant-23458 by blockOctant-23458.stypo; sub blockOctant-123458 by blockOctant-123458.stypo; sub blockOctant-168 by blockOctant-168.stypo; sub blockOctant-268 by blockOctant-268.stypo; sub blockOctant-1268 by blockOctant-1268.stypo; sub blockOctant-368 by blockOctant-368.stypo; sub blockOctant-2368 by blockOctant-2368.stypo; sub blockOctant-12368 by blockOctant-12368.stypo; sub blockOctant-468 by blockOctant-468.stypo; sub blockOctant-1468 by blockOctant-1468.stypo; sub blockOctant-12468 by blockOctant-12468.stypo; sub blockOctant-3468 by blockOctant-3468.stypo; sub blockOctant-13468 by blockOctant-13468.stypo; sub blockOctant-23468 by blockOctant-23468.stypo; sub blockOctant-568 by blockOctant-568.stypo; sub blockOctant-1568 by blockOctant-1568.stypo; sub blockOctant-2568 by blockOctant-2568.stypo; sub blockOctant-12568 by blockOctant-12568.stypo; sub blockOctant-3568 by blockOctant-3568.stypo; sub blockOctant-13568 by blockOctant-13568.stypo; sub blockOctant-23568 by blockOctant-23568.stypo; sub blockOctant-123568 by blockOctant-123568.stypo; sub blockOctant-4568 by blockOctant-4568.stypo; sub blockOctant-14568 by blockOctant-14568.stypo; sub blockOctant-24568 by blockOctant-24568.stypo; sub blockOctant-124568 by blockOctant-124568.stypo; sub blockOctant-34568 by blockOctant-34568.stypo; sub blockOctant-134568 by blockOctant-134568.stypo; sub blockOctant-234568 by blockOctant-234568.stypo; sub blockOctant-1234568 by blockOctant-1234568.stypo; sub blockOctant-178 by blockOctant-178.stypo; sub blockOctant-278 by blockOctant-278.stypo; sub blockOctant-1278 by blockOctant-1278.stypo; sub blockOctant-378 by blockOctant-378.stypo; sub blockOctant-1378 by blockOctant-1378.stypo; sub blockOctant-2378 by blockOctant-2378.stypo; sub blockOctant-12378 by blockOctant-12378.stypo; sub blockOctant-478 by blockOctant-478.stypo; sub blockOctant-1478 by blockOctant-1478.stypo; sub blockOctant-2478 by blockOctant-2478.stypo; sub blockOctant-12478 by blockOctant-12478.stypo; sub blockOctant-3478 by blockOctant-3478.stypo; sub blockOctant-13478 by blockOctant-13478.stypo; sub blockOctant-23478 by blockOctant-23478.stypo; sub blockOctant-123478 by blockOctant-123478.stypo; sub blockOctant-578 by blockOctant-578.stypo; sub blockOctant-1578 by blockOctant-1578.stypo; sub blockOctant-2578 by blockOctant-2578.stypo; sub blockOctant-12578 by blockOctant-12578.stypo; sub blockOctant-3578 by blockOctant-3578.stypo; sub blockOctant-13578 by blockOctant-13578.stypo; sub blockOctant-23578 by blockOctant-23578.stypo; sub blockOctant-123578 by blockOctant-123578.stypo; sub blockOctant-4578 by blockOctant-4578.stypo; sub blockOctant-14578 by blockOctant-14578.stypo; sub blockOctant-24578 by blockOctant-24578.stypo; sub blockOctant-124578 by blockOctant-124578.stypo; sub blockOctant-34578 by blockOctant-34578.stypo; sub blockOctant-134578 by blockOctant-134578.stypo; sub blockOctant-234578 by blockOctant-234578.stypo; sub blockOctant-1234578 by blockOctant-1234578.stypo; sub blockOctant-678 by blockOctant-678.stypo; sub blockOctant-1678 by blockOctant-1678.stypo; sub blockOctant-2678 by blockOctant-2678.stypo; sub blockOctant-12678 by blockOctant-12678.stypo; sub blockOctant-3678 by blockOctant-3678.stypo; sub blockOctant-13678 by blockOctant-13678.stypo; sub blockOctant-23678 by blockOctant-23678.stypo; sub blockOctant-123678 by blockOctant-123678.stypo; sub blockOctant-4678 by blockOctant-4678.stypo; sub blockOctant-14678 by blockOctant-14678.stypo; sub blockOctant-24678 by blockOctant-24678.stypo; sub blockOctant-124678 by blockOctant-124678.stypo; sub blockOctant-34678 by blockOctant-34678.stypo; sub blockOctant-134678 by blockOctant-134678.stypo; sub blockOctant-234678 by blockOctant-234678.stypo; sub blockOctant-1234678 by blockOctant-1234678.stypo; sub blockOctant-15678 by blockOctant-15678.stypo; sub blockOctant-25678 by blockOctant-25678.stypo; sub blockOctant-125678 by blockOctant-125678.stypo; sub blockOctant-35678 by blockOctant-35678.stypo; sub blockOctant-235678 by blockOctant-235678.stypo; sub blockOctant-1235678 by blockOctant-1235678.stypo; sub blockOctant-45678 by blockOctant-45678.stypo; sub blockOctant-145678 by blockOctant-145678.stypo; sub blockOctant-1245678 by blockOctant-1245678.stypo; sub blockOctant-1345678 by blockOctant-1345678.stypo; sub blockOctant-2345678 by blockOctant-2345678.stypo; sub blockSedecimant-1 by blockSedecimant-1.stypo; sub blockSedecimant-2 by blockSedecimant-2.stypo; sub blockSedecimant-3 by blockSedecimant-3.stypo; sub blockSedecimant-4 by blockSedecimant-4.stypo; sub blockSedecimant-5 by blockSedecimant-5.stypo; sub blockSedecimant-6 by blockSedecimant-6.stypo; sub blockSedecimant-7 by blockSedecimant-7.stypo; sub blockSedecimant-8 by blockSedecimant-8.stypo; sub blockSedecimant-9 by blockSedecimant-9.stypo; sub blockSedecimant-A by blockSedecimant-A.stypo; sub blockSedecimant-B by blockSedecimant-B.stypo; sub blockSedecimant-C by blockSedecimant-C.stypo; sub blockSedecimant-D by blockSedecimant-D.stypo; sub blockSedecimant-E by blockSedecimant-E.stypo; sub blockSedecimant-F by blockSedecimant-F.stypo; sub blockSedecimant-G by blockSedecimant-G.stypo; sub blockSedecimant-EFG by blockSedecimant-EFG.stypo; sub blockSedecimant-DEF by blockSedecimant-DEF.stypo; sub blockSedecimant-9D by blockSedecimant-9D.stypo; sub blockSedecimant-59D by blockSedecimant-59D.stypo; sub blockSedecimant-159 by blockSedecimant-159.stypo; sub blockSedecimant-15 by blockSedecimant-15.stypo; sub blockSedecimant-123 by blockSedecimant-123.stypo; sub blockSedecimant-234 by blockSedecimant-234.stypo; sub blockSedecimant-48 by blockSedecimant-48.stypo; sub blockSedecimant-48C by blockSedecimant-48C.stypo; sub blockSedecimant-8CG by blockSedecimant-8CG.stypo; sub blockSedecimant-CG by blockSedecimant-CG.stypo; sub verticalOneEighthBlock-2 by verticalOneEighthBlock-2.stypo; sub verticalOneEighthBlock-3 by verticalOneEighthBlock-3.stypo; sub verticalOneEighthBlock-4 by verticalOneEighthBlock-4.stypo; sub verticalOneEighthBlock-5 by verticalOneEighthBlock-5.stypo; sub verticalOneEighthBlock-6 by verticalOneEighthBlock-6.stypo; sub verticalOneEighthBlock-7 by verticalOneEighthBlock-7.stypo; sub horizontalOneEightBlock-2 by horizontalOneEightBlock-2.stypo; sub horizontalOneEightBlock-3 by horizontalOneEightBlock-3.stypo; sub horizontalOneEightBlock-4 by horizontalOneEightBlock-4.stypo; sub horizontalOneEightBlock-5 by horizontalOneEightBlock-5.stypo; sub horizontalOneEightBlock-6 by horizontalOneEightBlock-6.stypo; sub horizontalOneEightBlock-7 by horizontalOneEightBlock-7.stypo; sub leftAndLowerOneEightBlock by leftAndLowerOneEightBlock.stypo; sub leftAndUpperOneEightBlock by leftAndUpperOneEightBlock.stypo; sub rightAndUpperOneEightBlock by rightAndUpperOneEightBlock.stypo; sub rightAndLowerOneEightBlock by rightAndLowerOneEightBlock.stypo; sub upperAndLowerOneEightBlock by upperAndLowerOneEightBlock.stypo; sub upperThreeEighthsBlock by upperThreeEighthsBlock.stypo; sub upperFiveEighthsBlock by upperFiveEighthsBlock.stypo; sub upperSevenEighthsBlock by upperSevenEighthsBlock.stypo; sub rightOneQuarterBlock by rightOneQuarterBlock.stypo; sub rightThreeEighthsBlock by rightThreeEighthsBlock.stypo; sub rightFiveEighthsBlock by rightFiveEighthsBlock.stypo; sub rightThreeQuartersBlock by rightThreeQuartersBlock.stypo; sub rightSevenEighthsBlock by rightSevenEighthsBlock.stypo; sub leftTwoThirdsBlock by leftTwoThirdsBlock.stypo; sub leftOneThirdBlock by leftOneThirdBlock.stypo; sub heavyHorizontalFill by heavyHorizontalFill.stypo; sub blockSeparatedQuadrant-1 by blockSeparatedQuadrant-1.stypo; sub blockSeparatedQuadrant-2 by blockSeparatedQuadrant-2.stypo; sub blockSeparatedQuadrant-12 by blockSeparatedQuadrant-12.stypo; sub blockSeparatedQuadrant-3 by blockSeparatedQuadrant-3.stypo; sub blockSeparatedQuadrant-13 by blockSeparatedQuadrant-13.stypo; sub blockSeparatedQuadrant-23 by blockSeparatedQuadrant-23.stypo; sub blockSeparatedQuadrant-123 by blockSeparatedQuadrant-123.stypo; sub blockSeparatedQuadrant-4 by blockSeparatedQuadrant-4.stypo; sub blockSeparatedQuadrant-14 by blockSeparatedQuadrant-14.stypo; sub blockSeparatedQuadrant-24 by blockSeparatedQuadrant-24.stypo; sub blockSeparatedQuadrant-124 by blockSeparatedQuadrant-124.stypo; sub blockSeparatedQuadrant-34 by blockSeparatedQuadrant-34.stypo; sub blockSeparatedQuadrant-134 by blockSeparatedQuadrant-134.stypo; sub blockSeparatedQuadrant-234 by blockSeparatedQuadrant-234.stypo; sub blockSeparatedQuadrant-1234 by blockSeparatedQuadrant-1234.stypo; sub blockSeparatedSextant-1 by blockSeparatedSextant-1.stypo; sub blockSeparatedSextant-2 by blockSeparatedSextant-2.stypo; sub blockSeparatedSextant-12 by blockSeparatedSextant-12.stypo; sub blockSeparatedSextant-3 by blockSeparatedSextant-3.stypo; sub blockSeparatedSextant-13 by blockSeparatedSextant-13.stypo; sub blockSeparatedSextant-23 by blockSeparatedSextant-23.stypo; sub blockSeparatedSextant-123 by blockSeparatedSextant-123.stypo; sub blockSeparatedSextant-4 by blockSeparatedSextant-4.stypo; sub blockSeparatedSextant-14 by blockSeparatedSextant-14.stypo; sub blockSeparatedSextant-24 by blockSeparatedSextant-24.stypo; sub blockSeparatedSextant-124 by blockSeparatedSextant-124.stypo; sub blockSeparatedSextant-34 by blockSeparatedSextant-34.stypo; sub blockSeparatedSextant-134 by blockSeparatedSextant-134.stypo; sub blockSeparatedSextant-234 by blockSeparatedSextant-234.stypo; sub blockSeparatedSextant-1234 by blockSeparatedSextant-1234.stypo; sub blockSeparatedSextant-5 by blockSeparatedSextant-5.stypo; sub blockSeparatedSextant-15 by blockSeparatedSextant-15.stypo; sub blockSeparatedSextant-25 by blockSeparatedSextant-25.stypo; sub blockSeparatedSextant-125 by blockSeparatedSextant-125.stypo; sub blockSeparatedSextant-35 by blockSeparatedSextant-35.stypo; sub blockSeparatedSextant-135 by blockSeparatedSextant-135.stypo; sub blockSeparatedSextant-235 by blockSeparatedSextant-235.stypo; sub blockSeparatedSextant-1235 by blockSeparatedSextant-1235.stypo; sub blockSeparatedSextant-45 by blockSeparatedSextant-45.stypo; sub blockSeparatedSextant-145 by blockSeparatedSextant-145.stypo; sub blockSeparatedSextant-245 by blockSeparatedSextant-245.stypo; sub blockSeparatedSextant-1245 by blockSeparatedSextant-1245.stypo; sub blockSeparatedSextant-345 by blockSeparatedSextant-345.stypo; sub blockSeparatedSextant-1345 by blockSeparatedSextant-1345.stypo; sub blockSeparatedSextant-2345 by blockSeparatedSextant-2345.stypo; sub blockSeparatedSextant-12345 by blockSeparatedSextant-12345.stypo; sub blockSeparatedSextant-6 by blockSeparatedSextant-6.stypo; sub blockSeparatedSextant-16 by blockSeparatedSextant-16.stypo; sub blockSeparatedSextant-26 by blockSeparatedSextant-26.stypo; sub blockSeparatedSextant-126 by blockSeparatedSextant-126.stypo; sub blockSeparatedSextant-36 by blockSeparatedSextant-36.stypo; sub blockSeparatedSextant-136 by blockSeparatedSextant-136.stypo; sub blockSeparatedSextant-236 by blockSeparatedSextant-236.stypo; sub blockSeparatedSextant-1236 by blockSeparatedSextant-1236.stypo; sub blockSeparatedSextant-46 by blockSeparatedSextant-46.stypo; sub blockSeparatedSextant-146 by blockSeparatedSextant-146.stypo; sub blockSeparatedSextant-246 by blockSeparatedSextant-246.stypo; sub blockSeparatedSextant-1246 by blockSeparatedSextant-1246.stypo; sub blockSeparatedSextant-346 by blockSeparatedSextant-346.stypo; sub blockSeparatedSextant-1346 by blockSeparatedSextant-1346.stypo; sub blockSeparatedSextant-2346 by blockSeparatedSextant-2346.stypo; sub blockSeparatedSextant-12346 by blockSeparatedSextant-12346.stypo; sub blockSeparatedSextant-56 by blockSeparatedSextant-56.stypo; sub blockSeparatedSextant-156 by blockSeparatedSextant-156.stypo; sub blockSeparatedSextant-256 by blockSeparatedSextant-256.stypo; sub blockSeparatedSextant-1256 by blockSeparatedSextant-1256.stypo; sub blockSeparatedSextant-356 by blockSeparatedSextant-356.stypo; sub blockSeparatedSextant-1356 by blockSeparatedSextant-1356.stypo; sub blockSeparatedSextant-2356 by blockSeparatedSextant-2356.stypo; sub blockSeparatedSextant-12356 by blockSeparatedSextant-12356.stypo; sub blockSeparatedSextant-456 by blockSeparatedSextant-456.stypo; sub blockSeparatedSextant-1456 by blockSeparatedSextant-1456.stypo; sub blockSeparatedSextant-2456 by blockSeparatedSextant-2456.stypo; sub blockSeparatedSextant-12456 by blockSeparatedSextant-12456.stypo; sub blockSeparatedSextant-3456 by blockSeparatedSextant-3456.stypo; sub blockSeparatedSextant-13456 by blockSeparatedSextant-13456.stypo; sub blockSeparatedSextant-23456 by blockSeparatedSextant-23456.stypo; sub blockSeparatedSextant-123456 by blockSeparatedSextant-123456.stypo; sub largeType-1CE1A by largeType-1CE1A.stypo; sub largeType-1CE1B by largeType-1CE1B.stypo; sub largeType-1CE1C by largeType-1CE1C.stypo; sub largeType-1CE1D by largeType-1CE1D.stypo; sub largeType-1CE1E by largeType-1CE1E.stypo; sub largeType-1CE1F by largeType-1CE1F.stypo; sub largeType-1CE20 by largeType-1CE20.stypo; sub largeType-1CE21 by largeType-1CE21.stypo; sub largeType-1CE22 by largeType-1CE22.stypo; sub largeType-1CE23 by largeType-1CE23.stypo; sub largeType-1CE24 by largeType-1CE24.stypo; sub largeType-1CE25 by largeType-1CE25.stypo; sub largeType-1CE26 by largeType-1CE26.stypo; sub largeType-1CE27 by largeType-1CE27.stypo; sub largeType-1CE28 by largeType-1CE28.stypo; sub largeType-1CE29 by largeType-1CE29.stypo; sub largeType-1CE2A by largeType-1CE2A.stypo; sub largeType-1CE2B by largeType-1CE2B.stypo; sub largeType-1CE2C by largeType-1CE2C.stypo; sub largeType-1CE2D by largeType-1CE2D.stypo; sub largeType-1CE2E by largeType-1CE2E.stypo; sub largeType-1CE2F by largeType-1CE2F.stypo; sub largeType-1CE30 by largeType-1CE30.stypo; sub largeType-1CE31 by largeType-1CE31.stypo; sub largeType-1CE32 by largeType-1CE32.stypo; sub largeType-1CE33 by largeType-1CE33.stypo; sub largeType-1CE34 by largeType-1CE34.stypo; sub largeType-1CE35 by largeType-1CE35.stypo; sub largeType-1CE36 by largeType-1CE36.stypo; sub largeType-1CE37 by largeType-1CE37.stypo; sub largeType-1CE38 by largeType-1CE38.stypo; sub largeType-1CE39 by largeType-1CE39.stypo; sub largeType-1CE3A by largeType-1CE3A.stypo; sub largeType-1CE3B by largeType-1CE3B.stypo; sub largeType-1CE3C by largeType-1CE3C.stypo; sub largeType-1CE3D by largeType-1CE3D.stypo; sub largeType-1CE3E by largeType-1CE3E.stypo; sub largeType-1CE3F by largeType-1CE3F.stypo; sub largeType-1CE40 by largeType-1CE40.stypo; sub largeType-1CE41 by largeType-1CE41.stypo; sub largeType-1CE42 by largeType-1CE42.stypo; sub largeType-1CE43 by largeType-1CE43.stypo; sub largeType-1CE44 by largeType-1CE44.stypo; sub largeType-1CE45 by largeType-1CE45.stypo; sub largeType-1CE46 by largeType-1CE46.stypo; sub largeType-1CE47 by largeType-1CE47.stypo; sub largeType-1CE48 by largeType-1CE48.stypo; sub largeType-1CE49 by largeType-1CE49.stypo; sub largeType-1CE4A by largeType-1CE4A.stypo; sub largeType-1CE4B by largeType-1CE4B.stypo; sub largeType-1CE4C by largeType-1CE4C.stypo; sub largeType-1CE4D by largeType-1CE4D.stypo; sub largeType-1CE4E by largeType-1CE4E.stypo; sub largeType-1CE4F by largeType-1CE4F.stypo; sub largeType-1CE50 by largeType-1CE50.stypo; } rclt; feature zero { # automatic sub zero by zero.zero; } zero; feature ss20 { # notes: # Name: sub acknowledgeControl by acknowledgeControl.ss20; sub backspaceControl by backspaceControl.ss20; sub bellControl by bellControl.ss20; sub cancelControl by cancelControl.ss20; sub carriageReturnControl by carriageReturnControl.ss20; sub dataLinkEscapeControl by dataLinkEscapeControl.ss20; sub deleteControl by deleteFormTwoControl; sub deviceControlFourControl by upperLeftQuadrantWhiteCircle; sub deviceControlOneControl by upperRightQuadrantWhiteCircle; sub deviceControlThreeControl by lowerLeftQuadrantWhiteCircle; sub deviceControlTwoControl by lowerRightQuadrantWhiteCircle; sub endOfMediumControl by endOfMediumControl.ss20; sub endOfTextControl by endOfTextControl.ss20; sub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20; sub endOfTransmissionControl by endOfTransmissionControl.ss20; sub enquiryControl by enquiryControl.ss20; sub escapeControl by escapeControl.ss20; sub fileSeparatorControl by whiteUpperLeftQuadrantSquare; sub formFeedControl by formFeedControl.ss20; sub groupSeparatorControl by whiteLowerLeftQuadrantSquare; sub horizontalTabulationControl by horizontalTabulationControl.ss20; sub lineFeedControl by lineFeedControl.ss20; sub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20; sub nullControl by whiteSquare; sub recordSeparatorControl by whiteLowerRightQuadrantSquare; sub shiftInControl by shiftInControl.ss20; sub shiftOutControl by shiftOutControl.ss20; sub spaceControl by upWhiteTriangle; sub startOfHeadingControl by startOfHeadingControl.ss20; sub startOfTextControl by startOfTextControl.ss20; sub substituteControl by substituteControl.ss20; sub synchronousIdleControl by synchronousIdleControl.ss20; sub unitSeparatorControl by whiteUpperRightQuadrantSquare; sub verticalTabulationControl by verticalTabulationControl.ss20; sub newlineControl by returnsymbol; } ss20; ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/fontinfo.plist ================================================ ascender 1568 capHeight 1420 copyright © 2021 Microsoft Corporation. All Rights Reserved. descender -480 familyName Cascadia Code guidelines angle 0 name [locked] x 1050 y 330 angle 0 name [locked] x 1276 y 1440 angle 0 name [locked] x 440 y -460 angle 90 name [locked] x 280 y 416 angle 0 name [locked] x 2160 y 332 angle 0 name [locked] x 2120 y 342 angle 90 name [locked] x 240 y 390 angle 90 name [locked] x 148 y 190 angle 90 name [locked] x 2004 y 52 angle 90 name [locked] x 3360 y 466 angle 90 name [locked] x 3320 y 306 angle 90 name [locked] x 3208 y 146 angle 0 x 958 y 2226 angle 0 name [locked] x 1105 y 1040 angle 0 name [locked] x 1076 y 914 angle 0 x 1555 y 1901 angle 0 x 1376 y -480 italicAngle 0 openTypeHeadCreated 2019/04/07 17:18:29 openTypeNameDesigner Aaron Bell openTypeNameDesignerURL http://sajatypeworks.com openTypeNameLicense Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited. The following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE). 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. 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. openTypeNameLicenseURL https://scripts.sil.org/OFL openTypeNameManufacturer Saja Typeworks openTypeNameManufacturerURL http://sajatypeworks.com openTypeOS2Panose 2 11 6 9 2 0 0 2 0 4 openTypeOS2Selection 7 openTypeOS2Type openTypeOS2VendorID SAJA postscriptBlueValues -20 0 1060 1080 1420 1440 1500 1520 postscriptIsFixedPitch postscriptOtherBlues -480 -460 postscriptStemSnapH 200 210 212 220 postscriptStemSnapV 190 180 postscriptUnderlinePosition -100 postscriptUnderlineThickness 100 styleName ExtraLight trademark Cascadia Code is a trademark of the Microsoft group of companies. unitsPerEm 2048 versionMajor 4 versionMinor 300 xHeight 1060 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_breveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_brevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_lphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/A_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/B_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/B_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/B_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/C_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_african.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_croat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_elta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_je-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_ze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/D_zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_f-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_l-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_m-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_n-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ndescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ng.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_r-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_reversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_reversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_s-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_sh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_ta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_tatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_th.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/E_zh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/F_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/F_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/F_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_amma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_ammaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_ermandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_hestroke-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_heupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/G_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_adescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_ardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/H_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_J__acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name acutecomb.case alignment -1 index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_egrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_igrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_ota.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_otatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/I_u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/J_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/J_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/J_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_adescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_aiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_appa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/K_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_I_G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_ambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_dot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_middletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/L_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/M_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/M_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/M_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_hookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/N_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_barred-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hm.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_macrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_mega.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_megatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_micron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_microntonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_slashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/O_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_alochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/P_si.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Q_.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Q_.half.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O.half ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/R_ho.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_chwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_chwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_hcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_hha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_igma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/S_oftsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_au.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_diagonalstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_heta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_se-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/T_she-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilonafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_short-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_straight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_straightstroke-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/U_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/V_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/V_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/V_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/V_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/V_turned.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/W_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/W_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/W_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/W_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/W_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/X_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/X_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/X_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_eru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Y_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_e-cy.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/Z_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alef-ar.fina.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alef-ar.fina.short.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefF_athatan-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefH_amzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.rlig alignment 1 anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefM_adda-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefT_hreeabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefT_woabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alef-ar.fina.rlig anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_alefabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_bar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_cuberoot_fourthroot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_damma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_dot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_dotV_I_nvertedabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_dotV_above.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 0 name dotabove-ar alignment -1 anchor top index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_dots.horz.below.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_doublebar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _bar alignment -1 index 1 name _bar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_fatha-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_four-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_fourdotscenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotbelow-ar alignment -1 index 2 name dotbelow-ar alignment -1 index 3 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_fourthroot-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_hamzasmall-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_hamzawavy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_hehgoalcomma.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_highhamzaA_lef-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_invertedstroke.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_notdef.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_onedotstah.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_ringA_rabic.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_stroke.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_tahabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_tahabovesmall.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_threedots-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotshorizontal-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotstah.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove alignment -1 index 1 name _twodotshorizontal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_twodotsverticalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_vabove.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_vbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_vinvertedbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_yehR_ohingya-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/_yehR_ohingya-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/a.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/aacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abreveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/abrevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name A.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/acutetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/adieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/adotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ae-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ae-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ae.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/aeacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/afghani-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/agrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ahookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ain-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedots-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_hreedotsdownabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ainT_wodotsverticalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.fina.short.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-ar.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alef-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name fathatan-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefF_athatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name fathatan-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.rlig anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefH_amzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name hamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt alignment 1 anchor top.dot index 1 name madda-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_adda-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.init.alt.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.init.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksura-ar.medi.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alefMaksura-ar.fina.alt anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 alignment -1 index 1 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_hreeabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 alignment -1 index 1 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 alignment -1 index 1 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_asla-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.short.rlig public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alef-ar.fina.rlig anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefW_avyhamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name wavyhamzabelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alefabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _alefabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefpatah-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alefqamats-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/allah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam_lam_heh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/alphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/amacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ampersand.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/anoteleia.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/aogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/apostrophemod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/approxequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/aring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/aringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciicircum.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciicircum_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_at.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asteriskA_rt-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_parenright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/asterisk_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/at.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/atilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ayin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/b.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/backslash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/backspaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/baht.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_braceright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_bracketright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/be-cy.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behD_otless-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name meemStopabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behM_eemabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name meemStopabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor bottom.dot index 1 name _dots.horz.below public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotshorizontalbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _dots.horz.below com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_hreedotsupbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behT_wodotsbelowD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_below-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behV_invertedbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/behhamzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bellC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/beta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/betdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bitcoin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackC_ircle.glif ================================================ H18533 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackD_iamond.glif ================================================ uni25C6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackH_exagon.glif ================================================ uni2B22 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ uni2B2C ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ uni25C8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackL_argeC_ircle.glif ================================================ uni2B24 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackL_argeS_quare.glif ================================================ uni2B1B ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ uni2B25 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ uni2BC6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ uni2BC7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ uni2B27 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ uni2BC8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ uni2BC5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackP_arallelogram.glif ================================================ uni25B0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackP_entagon.glif ================================================ uni2B1F ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallD_iamond.glif ================================================ uni2B29 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ uni2B2A ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_mallS_quare.glif ================================================ H18543 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackS_quare.glif ================================================ filledbox ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ uni2B2E ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erticalR_ect.glif ================================================ uni25AE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ uni2B1D ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blank-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blank.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blankS_ymbol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1237.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1238.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1247.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1248.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1257.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1258.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1267.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1268.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-127.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1278.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-128.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-137.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-138.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-147.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-148.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-157.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-158.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-167.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-168.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-17.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-178.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-18.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-237.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-238.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-247.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-248.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-257.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-258.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-267.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-268.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-27.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-278.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-28.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-35678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-37.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-38.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-58.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-67.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-159.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-59D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-G.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ uni2BCB ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ uni2B19 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/braceleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb-cy.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb-cy.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/brevecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/brokenbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bulletoperator.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/bullseye.glif ================================================ uni25CE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/c.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cancelC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name N.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/careof.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/caroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/caroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name R.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ccaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ccedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ccircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cedi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cedillacomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/che-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/checkmark.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/chedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/chi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflexcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/circumflexcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/clubB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colon_slash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colonsign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/colontriangularmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/comma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/comma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/commaabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/commaaboverightcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/commaaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/commaturnedabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/commaturnedmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/contents.plist ================================================ .notdef _notdef.glif A A_.glif A-cy A_-cy.glif A.half A_.half.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehookabove A_brevehookabove.glif Abrevetilde A_brevetilde.glif Acaron A_caron.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhookabove A_circumflexhookabove.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahookabove A_hookabove.glif Alpha A_lpha.glif Alpha-latin A_lpha-latin.glif Alphatonos A_lphatonos.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Asmall A_small.glif Astroke A_stroke.glif Atilde A_tilde.glif B B_.glif B.half B_.half.glif Be-cy B_e-cy.glif Beta B_eta.glif C C_.glif C.half C_.half.glif CR C_R_.glif Cacute C_acute.glif Cacute.loclPLK C_acute.loclP_L_K_.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif Che-cy C_he-cy.glif Chedescender-cy C_hedescender-cy.glif Chi C_hi.glif Cstroke C_stroke.glif D D_.glif D.half D_.half.glif Dafrican D_african.glif Dcaron D_caron.glif Dcroat D_croat.glif De-cy D_e-cy.glif De-cy.loclBGR D_e-cy.loclB_G_R_.glif Delta D_elta.glif Dje-cy D_je-cy.glif Dze-cy D_ze-cy.glif Dzhe-cy D_zhe-cy.glif E E_.glif E-cy E_-cy.glif E.half E_.half.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhookabove E_circumflexhookabove.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Ef-cy E_f-cy.glif Ef-cy.loclBGR E_f-cy.loclB_G_R_.glif Egrave E_grave.glif Ehookabove E_hookabove.glif El-cy E_l-cy.glif El-cy.loclBGR E_l-cy.loclB_G_R_.glif Em-cy E_m-cy.glif Emacron E_macron.glif En-cy E_n-cy.glif Endescender-cy E_ndescender-cy.glif Eng E_ng.glif Eogonek E_ogonek.glif Eopen E_open.glif Epsilon E_psilon.glif Epsilontonos E_psilontonos.glif Er-cy E_r-cy.glif Ereversed E_reversed.glif Ereversed-cy E_reversed-cy.glif Es-cy E_s-cy.glif Esh E_sh.glif Eta E_ta.glif Etatonos E_tatonos.glif Eth E_th.glif Etilde E_tilde.glif Ezh E_zh.glif F F_.glif F.half F_.half.glif Fhook F_hook.glif G G_.glif G.half G_.half.glif Gamma G_amma.glif Gammaafrican G_ammaafrican.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Ge-cy G_e-cy.glif Germandbls G_ermandbls.glif Ghestroke-cy G_hestroke-cy.glif Gheupturn-cy G_heupturn-cy.glif Gje-cy G_je-cy.glif Gsmall G_small.glif Gstroke G_stroke.glif H H_.glif H.half H_.half.glif Ha-cy H_a-cy.glif Hadescender-cy H_adescender-cy.glif Hardsign-cy H_ardsign-cy.glif Hbar H_bar.glif Hcaron H_caron.glif Hcircumflex H_circumflex.glif Hdotbelow H_dotbelow.glif I I_.glif I-cy I_-cy.glif I.half I_.half.glif IJ I_J_.glif IJ_acute I_J__acute.glif Ia-cy I_a-cy.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Ie-cy I_e-cy.glif Iegrave-cy I_egrave-cy.glif Igrave I_grave.glif Ihookabove I_hookabove.glif Ii-cy I_i-cy.glif Iigrave-cy I_igrave-cy.glif Iishort-cy I_ishort-cy.glif Imacron I_macron.glif Imacron-cy I_macron-cy.glif Io-cy I_o-cy.glif Iogonek I_ogonek.glif Iota I_ota.glif Iotaafrican I_otaafrican.glif Iotadieresis I_otadieresis.glif Iotatonos I_otatonos.glif Ismall I_small.glif Itilde I_tilde.glif Iu-cy I_u-cy.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif Je-cy J_e-cy.glif K K_.glif K.half K_.half.glif Ka-cy K_a-cy.glif Kacute K_acute.glif Kadescender-cy K_adescender-cy.glif KaiSymbol K_aiS_ymbol.glif Kappa K_appa.glif Kcommaaccent K_commaaccent.glif Kdotbelow K_dotbelow.glif Kje-cy K_je-cy.glif Klinebelow K_linebelow.glif L L_.glif L.half L_.half.glif LIG L_I_G_.glif Lacute L_acute.glif Lambda L_ambda.glif Lbar L_bar.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Ldotbelow L_dotbelow.glif Lje-cy L_je-cy.glif Llinebelow L_linebelow.glif Lmiddletilde L_middletilde.glif Lslash L_slash.glif Lsmall L_small.glif M M_.glif M.half M_.half.glif Mu M_u.glif N N_.glif N.half N_.half.glif Nacute N_acute.glif Nacute.loclPLK N_acute.loclP_L_K_.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Nhookleft N_hookleft.glif Nje-cy N_je-cy.glif Nlinebelow N_linebelow.glif Ntilde N_tilde.glif Nu N_u.glif O O_.glif O-cy O_-cy.glif O.half O_.half.glif OE O_E_.glif Oacute O_acute.glif Oacute.loclPLK O_acute.loclP_L_K_.glif Obarred-cy O_barred-cy.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhookabove O_circumflexhookabove.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohm O_hm.glif Ohookabove O_hookabove.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhookabove O_hornhookabove.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omacronacute O_macronacute.glif Omacrongrave O_macrongrave.glif Omega O_mega.glif Omegatonos O_megatonos.glif Omicron O_micron.glif Omicrontonos O_microntonos.glif Oogonek O_ogonek.glif Oopen O_open.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif P.half P_.half.glif Palochka-cy P_alochka-cy.glif Pe-cy P_e-cy.glif Phi P_hi.glif Pi P_i.glif Psi P_si.glif Q Q_.glif Q.half Q_.half.glif R R_.glif R.half R_.half.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif Rdotbelow R_dotbelow.glif Rho R_ho.glif S S_.glif S.half S_.half.glif Sacute S_acute.glif Sacute.loclPLK S_acute.loclP_L_K_.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Schwa-cy S_chwa-cy.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif Sdotbelow S_dotbelow.glif Sha-cy S_ha-cy.glif Shcha-cy S_hcha-cy.glif Shha-cy S_hha-cy.glif Sigma S_igma.glif Softsign-cy S_oftsign-cy.glif T T_.glif T.half T_.half.glif Tau T_au.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Tdiagonalstroke T_diagonalstroke.glif Te-cy T_e-cy.glif Theta T_heta.glif Thorn T_horn.glif Tlinebelow T_linebelow.glif Tse-cy T_se-cy.glif Tshe-cy T_she-cy.glif U U_.glif U-cy U_-cy.glif U.half U_.half.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhookabove U_hookabove.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhookabove U_hornhookabove.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Umacron-cy U_macron-cy.glif Uogonek U_ogonek.glif Upsilon U_psilon.glif Upsilonafrican U_psilonafrican.glif Upsilondieresis U_psilondieresis.glif Upsilontonos U_psilontonos.glif Uring U_ring.glif Ushort-cy U_short-cy.glif Ustraight-cy U_straight-cy.glif Ustraightstroke-cy U_straightstroke-cy.glif Utilde U_tilde.glif V V_.glif V.half V_.half.glif Ve-cy V_e-cy.glif Vhook V_hook.glif Vturned V_turned.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif X.half X_.half.glif Xi X_i.glif Y Y_.glif Y.half Y_.half.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Yeru-cy Y_eru-cy.glif Ygrave Y_grave.glif Yhookabove Y_hookabove.glif Yi-cy Y_i-cy.glif Ymacron Y_macron.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zacute.loclPLK Z_acute.loclP_L_K_.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif Ze-cy Z_e-cy.glif Zeta Z_eta.glif Zhe-cy Z_he-cy.glif Zhedescender-cy Z_hedescender-cy.glif _alef-ar.fina.rlig _alef-ar.fina.rlig.glif _alef-ar.fina.short.rlig _alef-ar.fina.short.rlig.glif _alefFathatan-ar.fina.rlig _alefF_athatan-ar.fina.rlig.glif _alefHamzaabove-ar.fina.rlig _alefH_amzaabove-ar.fina.rlig.glif _alefHamzabelow-ar.fina.rlig _alefH_amzabelow-ar.fina.rlig.glif _alefMadda-ar.fina.rlig _alefM_adda-ar.fina.rlig.glif _alefThreeabove-ar.fina.rlig _alefT_hreeabove-ar.fina.rlig.glif _alefTwoabove-ar.fina.rlig _alefT_woabove-ar.fina.rlig.glif _alefWasla-ar.fina.rlig _alefW_asla-ar.fina.rlig.glif _alefWavyhamzaabove-ar.fina.rlig _alefW_avyhamzaabove-ar.fina.rlig.glif _alefWavyhamzabelow-ar.fina.rlig _alefW_avyhamzabelow-ar.fina.rlig.glif _alefabove _alefabove.glif _bar _bar.glif _cuberoot_fourthroot-ar _cuberoot_fourthroot-ar.glif _damma-ar _damma-ar.glif _dot-ar _dot-ar.glif _dotVInvertedabove _dotV_I_nvertedabove.glif _dotVabove _dotV_above.glif _dots.horz.below _dots.horz.below.glif _doublebar _doublebar.glif _fatha-ar _fatha-ar.glif _four-persian.small01 _four-persian.small01.glif _fourdotscenter-ar _fourdotscenter-ar.glif _fourthroot-ar _fourthroot-ar.glif _hamzasmall-ar _hamzasmall-ar.glif _hamzawavy _hamzawavy.glif _hehgoalcomma _hehgoalcomma.glif _highhamzaAlef-ar.fina.rlig _highhamzaA_lef-ar.fina.rlig.glif _invertedstroke _invertedstroke.glif _onedotstah _onedotstah.glif _ringArabic _ringA_rabic.glif _stroke _stroke.glif _tahabove _tahabove.glif _tahabovesmall _tahabovesmall.glif _threedots-ar _threedots-ar.glif _twodotshorizontal-ar _twodotshorizontal-ar.glif _twodotstah _twodotstah.glif _twodotsverticalabove-ar _twodotsverticalabove-ar.glif _vabove _vabove.glif _vbelow-ar _vbelow-ar.glif _vinvertedbelow-ar _vinvertedbelow-ar.glif _yehRohingya-ar _yehR_ohingya-ar.glif _yehRohingya-ar.fina _yehR_ohingya-ar.fina.glif a a.glif a-cy a-cy.glif aacute aacute.glif abreve abreve.glif abreveacute abreveacute.glif abrevedotbelow abrevedotbelow.glif abrevegrave abrevegrave.glif abrevehookabove abrevehookabove.glif abrevetilde abrevetilde.glif acaron acaron.glif acircumflex acircumflex.glif acircumflexacute acircumflexacute.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexgrave acircumflexgrave.glif acircumflexhookabove acircumflexhookabove.glif acircumflextilde acircumflextilde.glif acknowledgeControl acknowledgeC_ontrol.glif acknowledgeControl.ss20 acknowledgeC_ontrol.ss20.glif acute acute.glif acutecomb acutecomb.glif acutecomb.case acutecomb.case.glif acutecomb.case.loclPLK acutecomb.case.loclP_L_K_.glif acutecomb.loclPLK acutecomb.loclP_L_K_.glif acutetonecomb acutetonecomb.glif adieresis adieresis.glif adotbelow adotbelow.glif ae ae.glif ae-ar ae-ar.glif ae-ar.fina ae-ar.fina.glif aeacute aeacute.glif afghani-ar afghani-ar.glif agrave agrave.glif ahookabove ahookabove.glif ain-ar ain-ar.glif ain-ar.fina ain-ar.fina.glif ain-ar.init ain-ar.init.glif ain-ar.medi ain-ar.medi.glif ainThreedots-ar ainT_hreedots-ar.glif ainThreedots-ar.fina ainT_hreedots-ar.fina.glif ainThreedots-ar.init ainT_hreedots-ar.init.glif ainThreedots-ar.medi ainT_hreedots-ar.medi.glif ainThreedotsdownabove-ar ainT_hreedotsdownabove-ar.glif ainThreedotsdownabove-ar.fina ainT_hreedotsdownabove-ar.fina.glif ainThreedotsdownabove-ar.init ainT_hreedotsdownabove-ar.init.glif ainThreedotsdownabove-ar.medi ainT_hreedotsdownabove-ar.medi.glif ainTwodotshorizontalabove-ar ainT_wodotshorizontalabove-ar.glif ainTwodotshorizontalabove-ar.fina ainT_wodotshorizontalabove-ar.fina.glif ainTwodotshorizontalabove-ar.init ainT_wodotshorizontalabove-ar.init.glif ainTwodotshorizontalabove-ar.medi ainT_wodotshorizontalabove-ar.medi.glif ainTwodotsverticalabove-ar ainT_wodotsverticalabove-ar.glif ainTwodotsverticalabove-ar.fina ainT_wodotsverticalabove-ar.fina.glif ainTwodotsverticalabove-ar.init ainT_wodotsverticalabove-ar.init.glif ainTwodotsverticalabove-ar.medi ainT_wodotsverticalabove-ar.medi.glif alef-ar alef-ar.glif alef-ar.fina alef-ar.fina.glif alef-ar.fina.alt alef-ar.fina.alt.glif alef-ar.fina.rlig alef-ar.fina.rlig.glif alef-ar.fina.short alef-ar.fina.short.glif alef-ar.fina.short.alt alef-ar.fina.short.alt.glif alef-ar.fina.short.rlig alef-ar.fina.short.rlig.glif alef-ar.short alef-ar.short.glif alef-hb alef-hb.glif alefFathatan-ar alefF_athatan-ar.glif alefFathatan-ar.fina alefF_athatan-ar.fina.glif alefFathatan-ar.fina.rlig alefF_athatan-ar.fina.rlig.glif alefHamzaabove-ar alefH_amzaabove-ar.glif alefHamzaabove-ar.fina alefH_amzaabove-ar.fina.glif alefHamzaabove-ar.fina.alt alefH_amzaabove-ar.fina.alt.glif alefHamzaabove-ar.fina.rlig alefH_amzaabove-ar.fina.rlig.glif alefHamzabelow-ar alefH_amzabelow-ar.glif alefHamzabelow-ar.fina alefH_amzabelow-ar.fina.glif alefHamzabelow-ar.fina.alt alefH_amzabelow-ar.fina.alt.glif alefHamzabelow-ar.fina.rlig alefH_amzabelow-ar.fina.rlig.glif alefMadda-ar alefM_adda-ar.glif alefMadda-ar.fina alefM_adda-ar.fina.glif alefMadda-ar.fina.alt alefM_adda-ar.fina.alt.glif alefMadda-ar.fina.rlig alefM_adda-ar.fina.rlig.glif alefMaksura-ar alefM_aksura-ar.glif alefMaksura-ar.fina alefM_aksura-ar.fina.glif alefMaksura-ar.fina.alt alefM_aksura-ar.fina.alt.glif alefMaksura-ar.init alefM_aksura-ar.init.glif alefMaksura-ar.init.alt alefM_aksura-ar.init.alt.glif alefMaksura-ar.medi alefM_aksura-ar.medi.glif alefMaksuraAlefabove-ar alefM_aksuraA_lefabove-ar.glif alefMaksuraAlefabove-ar.fina alefM_aksuraA_lefabove-ar.fina.glif alefMaksuraAlefabove-ar.fina.alt alefM_aksuraA_lefabove-ar.fina.alt.glif alefThreeabove-ar alefT_hreeabove-ar.glif alefThreeabove-ar.fina alefT_hreeabove-ar.fina.glif alefThreeabove-ar.fina.alt alefT_hreeabove-ar.fina.alt.glif alefThreeabove-ar.fina.rlig alefT_hreeabove-ar.fina.rlig.glif alefTwoabove-ar alefT_woabove-ar.glif alefTwoabove-ar.fina alefT_woabove-ar.fina.glif alefTwoabove-ar.fina.alt alefT_woabove-ar.fina.alt.glif alefTwoabove-ar.fina.rlig alefT_woabove-ar.fina.rlig.glif alefWasla-ar alefW_asla-ar.glif alefWasla-ar.fina alefW_asla-ar.fina.glif alefWasla-ar.fina.alt alefW_asla-ar.fina.alt.glif alefWasla-ar.fina.rlig alefW_asla-ar.fina.rlig.glif alefWavyhamzaabove-ar alefW_avyhamzaabove-ar.glif alefWavyhamzaabove-ar.fina alefW_avyhamzaabove-ar.fina.glif alefWavyhamzaabove-ar.fina.alt alefW_avyhamzaabove-ar.fina.alt.glif alefWavyhamzaabove-ar.fina.rlig alefW_avyhamzaabove-ar.fina.rlig.glif alefWavyhamzabelow-ar alefW_avyhamzabelow-ar.glif alefWavyhamzabelow-ar.fina alefW_avyhamzabelow-ar.fina.glif alefWavyhamzabelow-ar.fina.alt alefW_avyhamzabelow-ar.fina.alt.glif alefWavyhamzabelow-ar.fina.rlig alefW_avyhamzabelow-ar.fina.rlig.glif alefabove-ar alefabove-ar.glif alefbelow-ar alefbelow-ar.glif alefdagesh-hb alefdagesh-hb.glif alefdagesh-hb.BRACKET.500 alefdagesh-hb.B_R_A_C_K_E_T_.500.glif alefpatah-hb alefpatah-hb.glif alefqamats-hb alefqamats-hb.glif allah-ar allah-ar.glif alpha alpha.glif alpha-latin alpha-latin.glif alphatonos alphatonos.glif amacron amacron.glif ampersand ampersand.glif ampersand_ampersand.liga ampersand_ampersand.liga.glif anoteleia anoteleia.glif aogonek aogonek.glif apostrophemod apostrophemod.glif approxequal approxequal.glif aring aring.glif aringacute aringacute.glif asciicircum asciicircum.glif asciicircum_equal.liga asciicircum_equal.liga.glif asciitilde asciitilde.glif asciitilde_asciitilde.liga asciitilde_asciitilde.liga.glif asciitilde_asciitilde_greater.liga asciitilde_asciitilde_greater.liga.glif asciitilde_at.liga asciitilde_at.liga.glif asciitilde_equal.liga asciitilde_equal.liga.glif asciitilde_greater.liga asciitilde_greater.liga.glif asciitilde_hyphen.liga asciitilde_hyphen.liga.glif asterisk asterisk.glif asterisk-ar asterisk-ar.glif asteriskArt-ar asteriskA_rt-ar.glif asterisk_asterisk.liga asterisk_asterisk.liga.glif asterisk_asterisk_asterisk.liga asterisk_asterisk_asterisk.liga.glif asterisk_greater.liga asterisk_greater.liga.glif asterisk_parenright.liga asterisk_parenright.liga.glif asterisk_slash.liga asterisk_slash.liga.glif at at.glif atilde atilde.glif ayin-hb ayin-hb.glif b b.glif backslash backslash.glif backslash_backslash.liga backslash_backslash.liga.glif backslash_slash.liga backslash_slash.liga.glif backspaceControl backspaceC_ontrol.glif backspaceControl.ss20 backspaceC_ontrol.ss20.glif baht baht.glif baht.BRACKET.600 baht.B_R_A_C_K_E_T_.600.glif bar bar.glif bar_bar.liga bar_bar.liga.glif bar_bar_bar.liga bar_bar_bar.liga.glif bar_bar_bar_greater.liga bar_bar_bar_greater.liga.glif bar_bar_equal_end.seq bar_bar_equal_end.seq.glif bar_bar_equal_middle.seq bar_bar_equal_middle.seq.glif bar_bar_equal_start.seq bar_bar_equal_start.seq.glif bar_bar_greater.liga bar_bar_greater.liga.glif bar_bar_hyphen_end.seq bar_bar_hyphen_end.seq.glif bar_bar_hyphen_middle.seq bar_bar_hyphen_middle.seq.glif bar_bar_hyphen_start.seq bar_bar_hyphen_start.seq.glif bar_braceright.liga bar_braceright.liga.glif bar_bracketright.liga bar_bracketright.liga.glif bar_equal_end.seq bar_equal_end.seq.glif bar_equal_middle.seq bar_equal_middle.seq.glif bar_equal_start.seq bar_equal_start.seq.glif bar_greater.liga bar_greater.liga.glif bar_hyphen_end.seq bar_hyphen_end.seq.glif bar_hyphen_middle.seq bar_hyphen_middle.seq.glif bar_hyphen_start.seq bar_hyphen_start.seq.glif bar_underscore_middle.seq bar_underscore_middle.seq.glif be-cy be-cy.glif be-cy.loclSRB be-cy.loclS_R_B_.glif beeh-ar beeh-ar.glif beeh-ar.alt beeh-ar.alt.glif beeh-ar.fina beeh-ar.fina.glif beeh-ar.fina.alt beeh-ar.fina.alt.glif beeh-ar.init beeh-ar.init.glif beeh-ar.init.alt beeh-ar.init.alt.glif beeh-ar.medi beeh-ar.medi.glif beh-ar beh-ar.glif beh-ar.alt beh-ar.alt.glif beh-ar.fina beh-ar.fina.glif beh-ar.fina.alt beh-ar.fina.alt.glif beh-ar.init beh-ar.init.glif beh-ar.init.alt beh-ar.init.alt.glif beh-ar.medi beh-ar.medi.glif behDotless-ar behD_otless-ar.glif behDotless-ar.alt behD_otless-ar.alt.glif behDotless-ar.fina behD_otless-ar.fina.glif behDotless-ar.fina.alt behD_otless-ar.fina.alt.glif behDotless-ar.init behD_otless-ar.init.glif behDotless-ar.init.alt behD_otless-ar.init.alt.glif behDotless-ar.medi behD_otless-ar.medi.glif behMeemabove-ar behM_eemabove-ar.glif behMeemabove-ar.alt behM_eemabove-ar.alt.glif behMeemabove-ar.fina behM_eemabove-ar.fina.glif behMeemabove-ar.fina.alt behM_eemabove-ar.fina.alt.glif behMeemabove-ar.init behM_eemabove-ar.init.glif behMeemabove-ar.init.alt behM_eemabove-ar.init.alt.glif behMeemabove-ar.medi behM_eemabove-ar.medi.glif behThreedotshorizontalbelow-ar behT_hreedotshorizontalbelow-ar.glif behThreedotshorizontalbelow-ar.alt behT_hreedotshorizontalbelow-ar.alt.glif behThreedotshorizontalbelow-ar.fina behT_hreedotshorizontalbelow-ar.fina.glif behThreedotshorizontalbelow-ar.fina.alt behT_hreedotshorizontalbelow-ar.fina.alt.glif behThreedotshorizontalbelow-ar.init behT_hreedotshorizontalbelow-ar.init.glif behThreedotshorizontalbelow-ar.init.alt behT_hreedotshorizontalbelow-ar.init.alt.glif behThreedotshorizontalbelow-ar.medi behT_hreedotshorizontalbelow-ar.medi.glif behThreedotsupabove-ar behT_hreedotsupabove-ar.glif behThreedotsupabove-ar.alt behT_hreedotsupabove-ar.alt.glif behThreedotsupabove-ar.fina behT_hreedotsupabove-ar.fina.glif behThreedotsupabove-ar.fina.alt behT_hreedotsupabove-ar.fina.alt.glif behThreedotsupabove-ar.init behT_hreedotsupabove-ar.init.glif behThreedotsupabove-ar.init.alt behT_hreedotsupabove-ar.init.alt.glif behThreedotsupabove-ar.medi behT_hreedotsupabove-ar.medi.glif behThreedotsupbelow-ar behT_hreedotsupbelow-ar.glif behThreedotsupbelow-ar.alt behT_hreedotsupbelow-ar.alt.glif behThreedotsupbelow-ar.fina behT_hreedotsupbelow-ar.fina.glif behThreedotsupbelow-ar.fina.alt behT_hreedotsupbelow-ar.fina.alt.glif behThreedotsupbelow-ar.init behT_hreedotsupbelow-ar.init.glif behThreedotsupbelow-ar.init.alt behT_hreedotsupbelow-ar.init.alt.glif behThreedotsupbelow-ar.medi behT_hreedotsupbelow-ar.medi.glif behTwodotsbelowDotabove-ar behT_wodotsbelowD_otabove-ar.glif behTwodotsbelowDotabove-ar.alt behT_wodotsbelowD_otabove-ar.alt.glif behTwodotsbelowDotabove-ar.fina behT_wodotsbelowD_otabove-ar.fina.glif behTwodotsbelowDotabove-ar.fina.alt behT_wodotsbelowD_otabove-ar.fina.alt.glif behTwodotsbelowDotabove-ar.init behT_wodotsbelowD_otabove-ar.init.glif behTwodotsbelowDotabove-ar.init.alt behT_wodotsbelowD_otabove-ar.init.alt.glif behTwodotsbelowDotabove-ar.medi behT_wodotsbelowD_otabove-ar.medi.glif behVabove-ar behV_above-ar.glif behVabove-ar.alt behV_above-ar.alt.glif behVabove-ar.fina behV_above-ar.fina.glif behVabove-ar.fina.alt behV_above-ar.fina.alt.glif behVabove-ar.init behV_above-ar.init.glif behVabove-ar.init.alt behV_above-ar.init.alt.glif behVabove-ar.medi behV_above-ar.medi.glif behVbelow-ar behV_below-ar.glif behVbelow-ar.alt behV_below-ar.alt.glif behVbelow-ar.fina behV_below-ar.fina.glif behVbelow-ar.fina.alt behV_below-ar.fina.alt.glif behVbelow-ar.init behV_below-ar.init.glif behVbelow-ar.init.alt behV_below-ar.init.alt.glif behVbelow-ar.medi behV_below-ar.medi.glif behVinvertedbelow-ar behV_invertedbelow-ar.glif behVinvertedbelow-ar.alt behV_invertedbelow-ar.alt.glif behVinvertedbelow-ar.fina behV_invertedbelow-ar.fina.glif behVinvertedbelow-ar.fina.alt behV_invertedbelow-ar.fina.alt.glif behVinvertedbelow-ar.init behV_invertedbelow-ar.init.glif behVinvertedbelow-ar.init.alt behV_invertedbelow-ar.init.alt.glif behVinvertedbelow-ar.medi behV_invertedbelow-ar.medi.glif beheh-ar beheh-ar.glif beheh-ar.alt beheh-ar.alt.glif beheh-ar.fina beheh-ar.fina.glif beheh-ar.fina.alt beheh-ar.fina.alt.glif beheh-ar.init beheh-ar.init.glif beheh-ar.init.alt beheh-ar.init.alt.glif beheh-ar.medi beheh-ar.medi.glif behhamzaabove-ar behhamzaabove-ar.glif behhamzaabove-ar.alt behhamzaabove-ar.alt.glif behhamzaabove-ar.fina behhamzaabove-ar.fina.glif behhamzaabove-ar.fina.alt behhamzaabove-ar.fina.alt.glif behhamzaabove-ar.init behhamzaabove-ar.init.glif behhamzaabove-ar.medi behhamzaabove-ar.medi.glif bellControl bellC_ontrol.glif bellControl.ss20 bellC_ontrol.ss20.glif bet-hb bet-hb.glif beta beta.glif betdagesh-hb betdagesh-hb.glif bitcoin bitcoin.glif blackCircle blackC_ircle.glif blackDiamond blackD_iamond.glif blackHexagon blackH_exagon.glif blackHorizontalEllipse blackH_orizontalE_llipse.glif blackInWhiteDiamond blackI_nW_hiteD_iamond.glif blackLargeCircle blackL_argeC_ircle.glif blackLargeSquare blackL_argeS_quare.glif blackMediumDiamond blackM_ediumD_iamond.glif blackMediumDownTriangleCentred blackM_ediumD_ownT_riangleC_entred.glif blackMediumLeftTriangleCentred blackM_ediumL_eftT_riangleC_entred.glif blackMediumLozenge blackM_ediumL_ozenge.glif blackMediumRightTriangleCentred blackM_ediumR_ightT_riangleC_entred.glif blackMediumUpTriangleCentred blackM_ediumU_pT_riangleC_entred.glif blackParallelogram blackP_arallelogram.glif blackPentagon blackP_entagon.glif blackSmallDiamond blackS_mallD_iamond.glif blackSmallLozenge blackS_mallL_ozenge.glif blackSmallSquare blackS_mallS_quare.glif blackSmilingFace blackS_milingF_ace.glif blackSquare blackS_quare.glif blackVerticalEllipse blackV_erticalE_llipse.glif blackVerticalRect blackV_erticalR_ect.glif blackVerysmallSquare blackV_erysmallS_quare.glif blank blank.glif blank-braille blank-braille.glif blankSymbol blankS_ymbol.glif bottomHalfBlackCircle bottomH_alfB_lackC_ircle.glif bottomHalfBlackDiamond bottomH_alfB_lackD_iamond.glif boxDoubleDownAndHorizontal boxD_oubleD_ownA_ndH_orizontal.glif boxDoubleDownAndHorizontal.stypo boxD_oubleD_ownA_ndH_orizontal.stypo.glif boxDoubleDownAndLeft boxD_oubleD_ownA_ndL_eft.glif boxDoubleDownAndLeft.stypo boxD_oubleD_ownA_ndL_eft.stypo.glif boxDoubleDownAndRight boxD_oubleD_ownA_ndR_ight.glif boxDoubleDownAndRight.stypo boxD_oubleD_ownA_ndR_ight.stypo.glif boxDoubleHorizontal boxD_oubleH_orizontal.glif boxDoubleHorizontal.stypo boxD_oubleH_orizontal.stypo.glif boxDoubleUpAndHorizontal boxD_oubleU_pA_ndH_orizontal.glif boxDoubleUpAndHorizontal.stypo boxD_oubleU_pA_ndH_orizontal.stypo.glif boxDoubleUpAndLeft boxD_oubleU_pA_ndL_eft.glif boxDoubleUpAndLeft.stypo boxD_oubleU_pA_ndL_eft.stypo.glif boxDoubleUpAndRight boxD_oubleU_pA_ndR_ight.glif boxDoubleUpAndRight.stypo boxD_oubleU_pA_ndR_ight.stypo.glif boxDoubleVertical boxD_oubleV_ertical.glif boxDoubleVertical.stypo boxD_oubleV_ertical.stypo.glif boxDoubleVerticalAndHorizontal boxD_oubleV_erticalA_ndH_orizontal.glif boxDoubleVerticalAndHorizontal.stypo boxD_oubleV_erticalA_ndH_orizontal.stypo.glif boxDoubleVerticalAndLeft boxD_oubleV_erticalA_ndL_eft.glif boxDoubleVerticalAndLeft.stypo boxD_oubleV_erticalA_ndL_eft.stypo.glif boxDoubleVerticalAndRight boxD_oubleV_erticalA_ndR_ight.glif boxDoubleVerticalAndRight.stypo boxD_oubleV_erticalA_ndR_ight.stypo.glif boxDownDoubleAndHorizontalSingle boxD_ownD_oubleA_ndH_orizontalS_ingle.glif boxDownDoubleAndHorizontalSingle.stypo boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif boxDownDoubleAndLeftSingle boxD_ownD_oubleA_ndL_eftS_ingle.glif boxDownDoubleAndLeftSingle.stypo boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif boxDownDoubleAndRightSingle boxD_ownD_oubleA_ndR_ightS_ingle.glif boxDownDoubleAndRightSingle.stypo boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif boxDownHeavyAndHorizontalLight boxD_ownH_eavyA_ndH_orizontalL_ight.glif boxDownHeavyAndHorizontalLight.stypo boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif boxDownHeavyAndLeftLight boxD_ownH_eavyA_ndL_eftL_ight.glif boxDownHeavyAndLeftLight.stypo boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif boxDownHeavyAndLeftUpLight boxD_ownH_eavyA_ndL_eftU_pL_ight.glif boxDownHeavyAndLeftUpLight.stypo boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxDownHeavyAndRightLight boxD_ownH_eavyA_ndR_ightL_ight.glif boxDownHeavyAndRightLight.stypo boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif boxDownHeavyAndRightUpLight boxD_ownH_eavyA_ndR_ightU_pL_ight.glif boxDownHeavyAndRightUpLight.stypo boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxDownHeavyAndUpHorizontalLight boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif boxDownHeavyAndUpHorizontalLight.stypo boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif boxDownLightAndHorizontalHeavy boxD_ownL_ightA_ndH_orizontalH_eavy.glif boxDownLightAndHorizontalHeavy.stypo boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif boxDownLightAndLeftHeavy boxD_ownL_ightA_ndL_eftH_eavy.glif boxDownLightAndLeftHeavy.stypo boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif boxDownLightAndLeftUpHeavy boxD_ownL_ightA_ndL_eftU_pH_eavy.glif boxDownLightAndLeftUpHeavy.stypo boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif boxDownLightAndRightHeavy boxD_ownL_ightA_ndR_ightH_eavy.glif boxDownLightAndRightHeavy.stypo boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif boxDownLightAndRightUpHeavy boxD_ownL_ightA_ndR_ightU_pH_eavy.glif boxDownLightAndRightUpHeavy.stypo boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif boxDownLightAndUpHorizontalHeavy boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif boxDownLightAndUpHorizontalHeavy.stypo boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif boxDownSingleAndHorizontalDouble boxD_ownS_ingleA_ndH_orizontalD_ouble.glif boxDownSingleAndHorizontalDouble.stypo boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif boxDownSingleAndLeftDouble boxD_ownS_ingleA_ndL_eftD_ouble.glif boxDownSingleAndLeftDouble.stypo boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif boxDownSingleAndRightDouble boxD_ownS_ingleA_ndR_ightD_ouble.glif boxDownSingleAndRightDouble.stypo boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif boxHeavyDoubleDashHorizontal boxH_eavyD_oubleD_ashH_orizontal.glif boxHeavyDoubleDashHorizontal.stypo boxH_eavyD_oubleD_ashH_orizontal.stypo.glif boxHeavyDoubleDashVertical boxH_eavyD_oubleD_ashV_ertical.glif boxHeavyDoubleDashVertical.stypo boxH_eavyD_oubleD_ashV_ertical.stypo.glif boxHeavyDown boxH_eavyD_own.glif boxHeavyDown.stypo boxH_eavyD_own.stypo.glif boxHeavyDownAndHorizontal boxH_eavyD_ownA_ndH_orizontal.glif boxHeavyDownAndHorizontal.stypo boxH_eavyD_ownA_ndH_orizontal.stypo.glif boxHeavyDownAndLeft boxH_eavyD_ownA_ndL_eft.glif boxHeavyDownAndLeft.stypo boxH_eavyD_ownA_ndL_eft.stypo.glif boxHeavyDownAndRight boxH_eavyD_ownA_ndR_ight.glif boxHeavyDownAndRight.stypo boxH_eavyD_ownA_ndR_ight.stypo.glif boxHeavyHorizontal boxH_eavyH_orizontal.glif boxHeavyHorizontal.stypo boxH_eavyH_orizontal.stypo.glif boxHeavyLeft boxH_eavyL_eft.glif boxHeavyLeft.stypo boxH_eavyL_eft.stypo.glif boxHeavyLeftAndLightRight boxH_eavyL_eftA_ndL_ightR_ight.glif boxHeavyLeftAndLightRight.stypo boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif boxHeavyQuadrupleDashHorizontal boxH_eavyQ_uadrupleD_ashH_orizontal.glif boxHeavyQuadrupleDashHorizontal.stypo boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif boxHeavyQuadrupleDashVertical boxH_eavyQ_uadrupleD_ashV_ertical.glif boxHeavyQuadrupleDashVertical.stypo boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif boxHeavyRight boxH_eavyR_ight.glif boxHeavyRight.stypo boxH_eavyR_ight.stypo.glif boxHeavyTripleDashHorizontal boxH_eavyT_ripleD_ashH_orizontal.glif boxHeavyTripleDashHorizontal.stypo boxH_eavyT_ripleD_ashH_orizontal.stypo.glif boxHeavyTripleDashVertical boxH_eavyT_ripleD_ashV_ertical.glif boxHeavyTripleDashVertical.stypo boxH_eavyT_ripleD_ashV_ertical.stypo.glif boxHeavyUp boxH_eavyU_p.glif boxHeavyUp.stypo boxH_eavyU_p.stypo.glif boxHeavyUpAndHorizontal boxH_eavyU_pA_ndH_orizontal.glif boxHeavyUpAndHorizontal.stypo boxH_eavyU_pA_ndH_orizontal.stypo.glif boxHeavyUpAndLeft boxH_eavyU_pA_ndL_eft.glif boxHeavyUpAndLeft.stypo boxH_eavyU_pA_ndL_eft.stypo.glif boxHeavyUpAndLightDown boxH_eavyU_pA_ndL_ightD_own.glif boxHeavyUpAndLightDown.stypo boxH_eavyU_pA_ndL_ightD_own.stypo.glif boxHeavyUpAndRight boxH_eavyU_pA_ndR_ight.glif boxHeavyUpAndRight.stypo boxH_eavyU_pA_ndR_ight.stypo.glif boxHeavyVertical boxH_eavyV_ertical.glif boxHeavyVertical.stypo boxH_eavyV_ertical.stypo.glif boxHeavyVerticalAndHorizontal boxH_eavyV_erticalA_ndH_orizontal.glif boxHeavyVerticalAndHorizontal.stypo boxH_eavyV_erticalA_ndH_orizontal.stypo.glif boxHeavyVerticalAndLeft boxH_eavyV_erticalA_ndL_eft.glif boxHeavyVerticalAndLeft.stypo boxH_eavyV_erticalA_ndL_eft.stypo.glif boxHeavyVerticalAndRight boxH_eavyV_erticalA_ndR_ight.glif boxHeavyVerticalAndRight.stypo boxH_eavyV_erticalA_ndR_ight.stypo.glif boxLeftDownHeavyAndRightUpLight boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif boxLeftDownHeavyAndRightUpLight.stypo boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightDownLight boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif boxLeftHeavyAndRightDownLight.stypo boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLeftHeavyAndRightUpLight boxL_eftH_eavyA_ndR_ightU_pL_ight.glif boxLeftHeavyAndRightUpLight.stypo boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightVerticalLight boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif boxLeftHeavyAndRightVerticalLight.stypo boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif boxLeftLightAndRightDownHeavy boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif boxLeftLightAndRightDownHeavy.stypo boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxLeftLightAndRightUpHeavy boxL_eftL_ightA_ndR_ightU_pH_eavy.glif boxLeftLightAndRightUpHeavy.stypo boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif boxLeftLightAndRightVerticalHeavy boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif boxLeftLightAndRightVerticalHeavy.stypo boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif boxLeftUpHeavyAndRightDownLight boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif boxLeftUpHeavyAndRightDownLight.stypo boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLightArcDownAndLeft boxL_ightA_rcD_ownA_ndL_eft.glif boxLightArcDownAndLeft.stypo boxL_ightA_rcD_ownA_ndL_eft.stypo.glif boxLightArcDownAndRight boxL_ightA_rcD_ownA_ndR_ight.glif boxLightArcDownAndRight.stypo boxL_ightA_rcD_ownA_ndR_ight.stypo.glif boxLightArcUpAndLeft boxL_ightA_rcU_pA_ndL_eft.glif boxLightArcUpAndLeft.stypo boxL_ightA_rcU_pA_ndL_eft.stypo.glif boxLightArcUpAndRight boxL_ightA_rcU_pA_ndR_ight.glif boxLightArcUpAndRight.stypo boxL_ightA_rcU_pA_ndR_ight.stypo.glif boxLightDiagonalCross boxL_ightD_iagonalC_ross.glif boxLightDiagonalCross.stypo boxL_ightD_iagonalC_ross.stypo.glif boxLightDiagonalUpperLeftToLowerRight boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif boxLightDiagonalUpperLeftToLowerRight.stypo boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif boxLightDiagonalUpperRightToLowerLeft boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif boxLightDiagonalUpperRightToLowerLeft.stypo boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif boxLightDoubleDashHorizontal boxL_ightD_oubleD_ashH_orizontal.glif boxLightDoubleDashHorizontal.stypo boxL_ightD_oubleD_ashH_orizontal.stypo.glif boxLightDoubleDashVertical boxL_ightD_oubleD_ashV_ertical.glif boxLightDoubleDashVertical.stypo boxL_ightD_oubleD_ashV_ertical.stypo.glif boxLightDown boxL_ightD_own.glif boxLightDown.stypo boxL_ightD_own.stypo.glif boxLightDownAndHorizontal boxL_ightD_ownA_ndH_orizontal.glif boxLightDownAndHorizontal.stypo boxL_ightD_ownA_ndH_orizontal.stypo.glif boxLightDownAndLeft boxL_ightD_ownA_ndL_eft.glif boxLightDownAndLeft.stypo boxL_ightD_ownA_ndL_eft.stypo.glif boxLightDownAndRight boxL_ightD_ownA_ndR_ight.glif boxLightDownAndRight.stypo boxL_ightD_ownA_ndR_ight.stypo.glif boxLightHorizontal boxL_ightH_orizontal.glif boxLightHorizontal.stypo boxL_ightH_orizontal.stypo.glif boxLightLeft boxL_ightL_eft.glif boxLightLeft.stypo boxL_ightL_eft.stypo.glif boxLightLeftAndHeavyRight boxL_ightL_eftA_ndH_eavyR_ight.glif boxLightLeftAndHeavyRight.stypo boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif boxLightQuadrupleDashHorizontal boxL_ightQ_uadrupleD_ashH_orizontal.glif boxLightQuadrupleDashHorizontal.stypo boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif boxLightQuadrupleDashVertical boxL_ightQ_uadrupleD_ashV_ertical.glif boxLightQuadrupleDashVertical.stypo boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif boxLightRight boxL_ightR_ight.glif boxLightRight.stypo boxL_ightR_ight.stypo.glif boxLightTripleDashHorizontal boxL_ightT_ripleD_ashH_orizontal.glif boxLightTripleDashHorizontal.stypo boxL_ightT_ripleD_ashH_orizontal.stypo.glif boxLightTripleDashVertical boxL_ightT_ripleD_ashV_ertical.glif boxLightTripleDashVertical.stypo boxL_ightT_ripleD_ashV_ertical.stypo.glif boxLightUp boxL_ightU_p.glif boxLightUp.stypo boxL_ightU_p.stypo.glif boxLightUpAndHeavyDown boxL_ightU_pA_ndH_eavyD_own.glif boxLightUpAndHeavyDown.stypo boxL_ightU_pA_ndH_eavyD_own.stypo.glif boxLightUpAndHorizontal boxL_ightU_pA_ndH_orizontal.glif boxLightUpAndHorizontal.stypo boxL_ightU_pA_ndH_orizontal.stypo.glif boxLightUpAndLeft boxL_ightU_pA_ndL_eft.glif boxLightUpAndLeft.stypo boxL_ightU_pA_ndL_eft.stypo.glif boxLightUpAndRight boxL_ightU_pA_ndR_ight.glif boxLightUpAndRight.stypo boxL_ightU_pA_ndR_ight.stypo.glif boxLightVertical boxL_ightV_ertical.glif boxLightVertical.stypo boxL_ightV_ertical.stypo.glif boxLightVerticalAndHorizontal boxL_ightV_erticalA_ndH_orizontal.glif boxLightVerticalAndHorizontal.stypo boxL_ightV_erticalA_ndH_orizontal.stypo.glif boxLightVerticalAndLeft boxL_ightV_erticalA_ndL_eft.glif boxLightVerticalAndLeft.stypo boxL_ightV_erticalA_ndL_eft.stypo.glif boxLightVerticalAndRight boxL_ightV_erticalA_ndR_ight.glif boxLightVerticalAndRight.stypo boxL_ightV_erticalA_ndR_ight.stypo.glif boxRightDownHeavyAndLeftUpLight boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif boxRightDownHeavyAndLeftUpLight.stypo boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftDownLight boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif boxRightHeavyAndLeftDownLight.stypo boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxRightHeavyAndLeftUpLight boxR_ightH_eavyA_ndL_eftU_pL_ight.glif boxRightHeavyAndLeftUpLight.stypo boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftVerticalLight boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif boxRightHeavyAndLeftVerticalLight.stypo boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif boxRightLightAndLeftDownHeavy boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif boxRightLightAndLeftDownHeavy.stypo boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxRightLightAndLeftUpHeavy boxR_ightL_ightA_ndL_eftU_pH_eavy.glif boxRightLightAndLeftUpHeavy.stypo boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif boxRightLightAndLeftVerticalHeavy boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif boxRightLightAndLeftVerticalHeavy.stypo boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif boxRightUpHeavyAndLeftDownLight boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif boxRightUpHeavyAndLeftDownLight.stypo boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpDoubleAndHorizontalSingle boxU_pD_oubleA_ndH_orizontalS_ingle.glif boxUpDoubleAndHorizontalSingle.stypo boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif boxUpDoubleAndLeftSingle boxU_pD_oubleA_ndL_eftS_ingle.glif boxUpDoubleAndLeftSingle.stypo boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif boxUpDoubleAndRightSingle boxU_pD_oubleA_ndR_ightS_ingle.glif boxUpDoubleAndRightSingle.stypo boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif boxUpHeavyAndDownHorizontalLight boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif boxUpHeavyAndDownHorizontalLight.stypo boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif boxUpHeavyAndHorizontalLight boxU_pH_eavyA_ndH_orizontalL_ight.glif boxUpHeavyAndHorizontalLight.stypo boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif boxUpHeavyAndLeftDownLight boxU_pH_eavyA_ndL_eftD_ownL_ight.glif boxUpHeavyAndLeftDownLight.stypo boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpHeavyAndLeftLight boxU_pH_eavyA_ndL_eftL_ight.glif boxUpHeavyAndLeftLight.stypo boxU_pH_eavyA_ndL_eftL_ight.stypo.glif boxUpHeavyAndRightDownLight boxU_pH_eavyA_ndR_ightD_ownL_ight.glif boxUpHeavyAndRightDownLight.stypo boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxUpHeavyAndRightLight boxU_pH_eavyA_ndR_ightL_ight.glif boxUpHeavyAndRightLight.stypo boxU_pH_eavyA_ndR_ightL_ight.stypo.glif boxUpLightAndDownHorizontalHeavy boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif boxUpLightAndDownHorizontalHeavy.stypo boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif boxUpLightAndHorizontalHeavy boxU_pL_ightA_ndH_orizontalH_eavy.glif boxUpLightAndHorizontalHeavy.stypo boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif boxUpLightAndLeftDownHeavy boxU_pL_ightA_ndL_eftD_ownH_eavy.glif boxUpLightAndLeftDownHeavy.stypo boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxUpLightAndLeftHeavy boxU_pL_ightA_ndL_eftH_eavy.glif boxUpLightAndLeftHeavy.stypo boxU_pL_ightA_ndL_eftH_eavy.stypo.glif boxUpLightAndRightDownHeavy boxU_pL_ightA_ndR_ightD_ownH_eavy.glif boxUpLightAndRightDownHeavy.stypo boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxUpLightAndRightHeavy boxU_pL_ightA_ndR_ightH_eavy.glif boxUpLightAndRightHeavy.stypo boxU_pL_ightA_ndR_ightH_eavy.stypo.glif boxUpSingleAndHorizontalDouble boxU_pS_ingleA_ndH_orizontalD_ouble.glif boxUpSingleAndHorizontalDouble.stypo boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif boxUpSingleAndLeftDouble boxU_pS_ingleA_ndL_eftD_ouble.glif boxUpSingleAndLeftDouble.stypo boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif boxUpSingleAndRightDouble boxU_pS_ingleA_ndR_ightD_ouble.glif boxUpSingleAndRightDouble.stypo boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif boxVerticalDoubleAndHorizontalSingle boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif boxVerticalDoubleAndHorizontalSingle.stypo boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif boxVerticalDoubleAndLeftSingle boxV_erticalD_oubleA_ndL_eftS_ingle.glif boxVerticalDoubleAndLeftSingle.stypo boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif boxVerticalDoubleAndRightSingle boxV_erticalD_oubleA_ndR_ightS_ingle.glif boxVerticalDoubleAndRightSingle.stypo boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif boxVerticalHeavyAndHorizontalLight boxV_erticalH_eavyA_ndH_orizontalL_ight.glif boxVerticalHeavyAndHorizontalLight.stypo boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif boxVerticalHeavyAndLeftLight boxV_erticalH_eavyA_ndL_eftL_ight.glif boxVerticalHeavyAndLeftLight.stypo boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif boxVerticalHeavyAndRightLight boxV_erticalH_eavyA_ndR_ightL_ight.glif boxVerticalHeavyAndRightLight.stypo boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif boxVerticalLightAndHorizontalHeavy boxV_erticalL_ightA_ndH_orizontalH_eavy.glif boxVerticalLightAndHorizontalHeavy.stypo boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif boxVerticalLightAndLeftHeavy boxV_erticalL_ightA_ndL_eftH_eavy.glif boxVerticalLightAndLeftHeavy.stypo boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif boxVerticalLightAndRightHeavy boxV_erticalL_ightA_ndR_ightH_eavy.glif boxVerticalLightAndRightHeavy.stypo boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif boxVerticalSingleAndHorizontalDouble boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif boxVerticalSingleAndHorizontalDouble.stypo boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif boxVerticalSingleAndLeftDouble boxV_erticalS_ingleA_ndL_eftD_ouble.glif boxVerticalSingleAndLeftDouble.stypo boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif boxVerticalSingleAndRightDouble boxV_erticalS_ingleA_ndR_ightD_ouble.glif boxVerticalSingleAndRightDouble.stypo boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif braceleft braceleft.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif bracketleft bracketleft.glif bracketleft_bar.liga bracketleft_bar.liga.glif bracketright bracketright.glif bracketright_numbersign.liga bracketright_numbersign.liga.glif breve breve.glif brevecomb brevecomb.glif brevecomb-cy brevecomb-cy.glif brevecomb-cy.case brevecomb-cy.case.glif brevecomb.case brevecomb.case.glif brokenbar brokenbar.glif bullet bullet.glif bulletoperator bulletoperator.glif bullseye bullseye.glif c c.glif cacute cacute.glif cacute.loclPLK cacute.loclP_L_K_.glif cancelControl cancelC_ontrol.glif cancelControl.ss20 cancelC_ontrol.ss20.glif careof careof.glif caron caron.glif caroncomb caroncomb.glif caroncomb.case caroncomb.case.glif carriageReturnControl carriageR_eturnC_ontrol.glif carriageReturnControl.ss20 carriageR_eturnC_ontrol.ss20.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif cent cent.glif che-cy che-cy.glif checkmark checkmark.glif chedescender-cy chedescender-cy.glif chi chi.glif circumflex circumflex.glif circumflexcomb circumflexcomb.glif circumflexcomb.case circumflexcomb.case.glif clubBlackSuit clubB_lackS_uit.glif colon colon.glif colon.center colon.center.glif colon_colon.liga colon_colon.liga.glif colon_colon_colon.liga colon_colon_colon.liga.glif colon_colon_equal.liga colon_colon_equal.liga.glif colon_equal.liga colon_equal.liga.glif colon_equal_middle.seq colon_equal_middle.seq.glif colon_slash_slash.liga colon_slash_slash.liga.glif colonsign colonsign.glif colontriangularmod colontriangularmod.glif comma comma.glif comma-ar comma-ar.glif commaabovecomb commaabovecomb.glif commaaboverightcomb commaaboverightcomb.glif commaaccentcomb commaaccentcomb.glif commaturnedabovecomb commaturnedabovecomb.glif commaturnedmod commaturnedmod.glif copyright copyright.glif crosshatchFillSquare crosshatchF_illS_quare.glif cuberoot-ar cuberoot-ar.glif currency currency.glif d d.glif dad-ar dad-ar.glif dad-ar.alt dad-ar.alt.glif dad-ar.fina dad-ar.fina.glif dad-ar.fina.alt dad-ar.fina.alt.glif dad-ar.init dad-ar.init.glif dad-ar.medi dad-ar.medi.glif dadDotbelow-ar dadD_otbelow-ar.glif dadDotbelow-ar.alt dadD_otbelow-ar.alt.glif dadDotbelow-ar.fina dadD_otbelow-ar.fina.glif dadDotbelow-ar.fina.alt dadD_otbelow-ar.fina.alt.glif dadDotbelow-ar.init dadD_otbelow-ar.init.glif dadDotbelow-ar.medi dadD_otbelow-ar.medi.glif dagesh-hb dagesh-hb.glif dagger dagger.glif daggerdbl daggerdbl.glif dahal-ar dahal-ar.glif dahal-ar.fina dahal-ar.fina.glif dal-ar dal-ar.glif dal-ar.fina dal-ar.fina.glif dalDotbelow-ar dalD_otbelow-ar.glif dalDotbelow-ar.fina dalD_otbelow-ar.fina.glif dalDotbelowTah-ar dalD_otbelowT_ah-ar.glif dalDotbelowTah-ar.fina dalD_otbelowT_ah-ar.fina.glif dalFourdots-ar dalF_ourdots-ar.glif dalFourdots-ar.fina dalF_ourdots-ar.fina.glif dalRing-ar dalR_ing-ar.glif dalRing-ar.fina dalR_ing-ar.fina.glif dalThreedotsbelow-ar dalT_hreedotsbelow-ar.glif dalThreedotsbelow-ar.fina dalT_hreedotsbelow-ar.fina.glif dalThreedotsdown-ar dalT_hreedotsdown-ar.glif dalThreedotsdown-ar.fina dalT_hreedotsdown-ar.fina.glif dalTwodotsverticalbelowTahabove-ar dalT_wodotsverticalbelowT_ahabove-ar.glif dalTwodotsverticalbelowTahabove-ar.fina dalT_wodotsverticalbelowT_ahabove-ar.fina.glif dalVinvertedabove-ar dalV_invertedabove-ar.glif dalVinvertedabove-ar.fina dalV_invertedabove-ar.fina.glif dalVinvertedbelow-ar dalV_invertedbelow-ar.glif dalVinvertedbelow-ar.fina dalV_invertedbelow-ar.fina.glif dalet-hb dalet-hb.glif daletdagesh-hb daletdagesh-hb.glif damma-ar damma-ar.glif dammatan-ar dammatan-ar.glif dashdownArrow dashdownA_rrow.glif dataLinkEscapeControl dataL_inkE_scapeC_ontrol.glif dataLinkEscapeControl.ss20 dataL_inkE_scapeC_ontrol.ss20.glif dateseparator-ar dateseparator-ar.glif dcaron dcaron.glif dcaron.alt dcaron.alt.glif dcroat dcroat.glif ddahal-ar ddahal-ar.glif ddahal-ar.fina ddahal-ar.fina.glif ddal-ar ddal-ar.glif ddal-ar.fina ddal-ar.fina.glif de-cy de-cy.glif de-cy.loclBGR de-cy.loclB_G_R_.glif decimalseparator-ar decimalseparator-ar.glif degree degree.glif deleteControl deleteC_ontrol.glif deleteFormTwoControl deleteF_ormT_woC_ontrol.glif delta delta.glif deviceControlFourControl deviceC_ontrolF_ourC_ontrol.glif deviceControlOneControl deviceC_ontrolO_neC_ontrol.glif deviceControlThreeControl deviceC_ontrolT_hreeC_ontrol.glif deviceControlTwoControl deviceC_ontrolT_woC_ontrol.glif diagonalcrosshatchFillSquare diagonalcrosshatchF_illS_quare.glif diamondBlackSuit diamondB_lackS_uit.glif dieresis dieresis.glif dieresiscomb dieresiscomb.glif dieresiscomb.case dieresiscomb.case.glif dieresistonos dieresistonos.glif divide divide.glif divisionslash divisionslash.glif dje-cy dje-cy.glif dollar dollar.glif dollar.BRACKET.600 dollar.B_R_A_C_K_E_T_.600.glif dollar_greater.liga dollar_greater.liga.glif dollar_greater.liga.BRACKET.600 dollar_greater.liga.B_R_A_C_K_E_T_.600.glif dong dong.glif dotabove-ar dotabove-ar.glif dotaccent dotaccent.glif dotaccentcomb dotaccentcomb.glif dotaccentcomb.case dotaccentcomb.case.glif dotbelow-ar dotbelow-ar.glif dotbelowcomb dotbelowcomb.glif dotcenter-ar dotcenter-ar.glif dots1-braille dots1-braille.glif dots12-braille dots12-braille.glif dots123-braille dots123-braille.glif dots1234-braille dots1234-braille.glif dots12345-braille dots12345-braille.glif dots123456-braille dots123456-braille.glif dots1234567-braille dots1234567-braille.glif dots12345678-braille dots12345678-braille.glif dots1234568-braille dots1234568-braille.glif dots123457-braille dots123457-braille.glif dots1234578-braille dots1234578-braille.glif dots123458-braille dots123458-braille.glif dots12346-braille dots12346-braille.glif dots123467-braille dots123467-braille.glif dots1234678-braille dots1234678-braille.glif dots123468-braille dots123468-braille.glif dots12347-braille dots12347-braille.glif dots123478-braille dots123478-braille.glif dots12348-braille dots12348-braille.glif dots1235-braille dots1235-braille.glif dots12356-braille dots12356-braille.glif dots123567-braille dots123567-braille.glif dots1235678-braille dots1235678-braille.glif dots123568-braille dots123568-braille.glif dots12357-braille dots12357-braille.glif dots123578-braille dots123578-braille.glif dots12358-braille dots12358-braille.glif dots1236-braille dots1236-braille.glif dots12367-braille dots12367-braille.glif dots123678-braille dots123678-braille.glif dots12368-braille dots12368-braille.glif dots1237-braille dots1237-braille.glif dots12378-braille dots12378-braille.glif dots1238-braille dots1238-braille.glif dots124-braille dots124-braille.glif dots1245-braille dots1245-braille.glif dots12456-braille dots12456-braille.glif dots124567-braille dots124567-braille.glif dots1245678-braille dots1245678-braille.glif dots124568-braille dots124568-braille.glif dots12457-braille dots12457-braille.glif dots124578-braille dots124578-braille.glif dots12458-braille dots12458-braille.glif dots1246-braille dots1246-braille.glif dots12467-braille dots12467-braille.glif dots124678-braille dots124678-braille.glif dots12468-braille dots12468-braille.glif dots1247-braille dots1247-braille.glif dots12478-braille dots12478-braille.glif dots1248-braille dots1248-braille.glif dots125-braille dots125-braille.glif dots1256-braille dots1256-braille.glif dots12567-braille dots12567-braille.glif dots125678-braille dots125678-braille.glif dots12568-braille dots12568-braille.glif dots1257-braille dots1257-braille.glif dots12578-braille dots12578-braille.glif dots1258-braille dots1258-braille.glif dots126-braille dots126-braille.glif dots1267-braille dots1267-braille.glif dots12678-braille dots12678-braille.glif dots1268-braille dots1268-braille.glif dots127-braille dots127-braille.glif dots1278-braille dots1278-braille.glif dots128-braille dots128-braille.glif dots13-braille dots13-braille.glif dots134-braille dots134-braille.glif dots1345-braille dots1345-braille.glif dots13456-braille dots13456-braille.glif dots134567-braille dots134567-braille.glif dots1345678-braille dots1345678-braille.glif dots134568-braille dots134568-braille.glif dots13457-braille dots13457-braille.glif dots134578-braille dots134578-braille.glif dots13458-braille dots13458-braille.glif dots1346-braille dots1346-braille.glif dots13467-braille dots13467-braille.glif dots134678-braille dots134678-braille.glif dots13468-braille dots13468-braille.glif dots1347-braille dots1347-braille.glif dots13478-braille dots13478-braille.glif dots1348-braille dots1348-braille.glif dots135-braille dots135-braille.glif dots1356-braille dots1356-braille.glif dots13567-braille dots13567-braille.glif dots135678-braille dots135678-braille.glif dots13568-braille dots13568-braille.glif dots1357-braille dots1357-braille.glif dots13578-braille dots13578-braille.glif dots1358-braille dots1358-braille.glif dots136-braille dots136-braille.glif dots1367-braille dots1367-braille.glif dots13678-braille dots13678-braille.glif dots1368-braille dots1368-braille.glif dots137-braille dots137-braille.glif dots1378-braille dots1378-braille.glif dots138-braille dots138-braille.glif dots14-braille dots14-braille.glif dots145-braille dots145-braille.glif dots1456-braille dots1456-braille.glif dots14567-braille dots14567-braille.glif dots145678-braille dots145678-braille.glif dots14568-braille dots14568-braille.glif dots1457-braille dots1457-braille.glif dots14578-braille dots14578-braille.glif dots1458-braille dots1458-braille.glif dots146-braille dots146-braille.glif dots1467-braille dots1467-braille.glif dots14678-braille dots14678-braille.glif dots1468-braille dots1468-braille.glif dots147-braille dots147-braille.glif dots1478-braille dots1478-braille.glif dots148-braille dots148-braille.glif dots15-braille dots15-braille.glif dots156-braille dots156-braille.glif dots1567-braille dots1567-braille.glif dots15678-braille dots15678-braille.glif dots1568-braille dots1568-braille.glif dots157-braille dots157-braille.glif dots1578-braille dots1578-braille.glif dots158-braille dots158-braille.glif dots16-braille dots16-braille.glif dots167-braille dots167-braille.glif dots1678-braille dots1678-braille.glif dots168-braille dots168-braille.glif dots17-braille dots17-braille.glif dots178-braille dots178-braille.glif dots18-braille dots18-braille.glif dots2-braille dots2-braille.glif dots23-braille dots23-braille.glif dots234-braille dots234-braille.glif dots2345-braille dots2345-braille.glif dots23456-braille dots23456-braille.glif dots234567-braille dots234567-braille.glif dots2345678-braille dots2345678-braille.glif dots234568-braille dots234568-braille.glif dots23457-braille dots23457-braille.glif dots234578-braille dots234578-braille.glif dots23458-braille dots23458-braille.glif dots2346-braille dots2346-braille.glif dots23467-braille dots23467-braille.glif dots234678-braille dots234678-braille.glif dots23468-braille dots23468-braille.glif dots2347-braille dots2347-braille.glif dots23478-braille dots23478-braille.glif dots2348-braille dots2348-braille.glif dots235-braille dots235-braille.glif dots2356-braille dots2356-braille.glif dots23567-braille dots23567-braille.glif dots235678-braille dots235678-braille.glif dots23568-braille dots23568-braille.glif dots2357-braille dots2357-braille.glif dots23578-braille dots23578-braille.glif dots2358-braille dots2358-braille.glif dots236-braille dots236-braille.glif dots2367-braille dots2367-braille.glif dots23678-braille dots23678-braille.glif dots2368-braille dots2368-braille.glif dots237-braille dots237-braille.glif dots2378-braille dots2378-braille.glif dots238-braille dots238-braille.glif dots24-braille dots24-braille.glif dots245-braille dots245-braille.glif dots2456-braille dots2456-braille.glif dots24567-braille dots24567-braille.glif dots245678-braille dots245678-braille.glif dots24568-braille dots24568-braille.glif dots2457-braille dots2457-braille.glif dots24578-braille dots24578-braille.glif dots2458-braille dots2458-braille.glif dots246-braille dots246-braille.glif dots2467-braille dots2467-braille.glif dots24678-braille dots24678-braille.glif dots2468-braille dots2468-braille.glif dots247-braille dots247-braille.glif dots2478-braille dots2478-braille.glif dots248-braille dots248-braille.glif dots25-braille dots25-braille.glif dots256-braille dots256-braille.glif dots2567-braille dots2567-braille.glif dots25678-braille dots25678-braille.glif dots2568-braille dots2568-braille.glif dots257-braille dots257-braille.glif dots2578-braille dots2578-braille.glif dots258-braille dots258-braille.glif dots26-braille dots26-braille.glif dots267-braille dots267-braille.glif dots2678-braille dots2678-braille.glif dots268-braille dots268-braille.glif dots27-braille dots27-braille.glif dots278-braille dots278-braille.glif dots28-braille dots28-braille.glif dots3-braille dots3-braille.glif dots34-braille dots34-braille.glif dots345-braille dots345-braille.glif dots3456-braille dots3456-braille.glif dots34567-braille dots34567-braille.glif dots345678-braille dots345678-braille.glif dots34568-braille dots34568-braille.glif dots3457-braille dots3457-braille.glif dots34578-braille dots34578-braille.glif dots3458-braille dots3458-braille.glif dots346-braille dots346-braille.glif dots3467-braille dots3467-braille.glif dots34678-braille dots34678-braille.glif dots3468-braille dots3468-braille.glif dots347-braille dots347-braille.glif dots3478-braille dots3478-braille.glif dots348-braille dots348-braille.glif dots35-braille dots35-braille.glif dots356-braille dots356-braille.glif dots3567-braille dots3567-braille.glif dots35678-braille dots35678-braille.glif dots3568-braille dots3568-braille.glif dots357-braille dots357-braille.glif dots3578-braille dots3578-braille.glif dots358-braille dots358-braille.glif dots36-braille dots36-braille.glif dots367-braille dots367-braille.glif dots3678-braille dots3678-braille.glif dots368-braille dots368-braille.glif dots37-braille dots37-braille.glif dots378-braille dots378-braille.glif dots38-braille dots38-braille.glif dots4-braille dots4-braille.glif dots45-braille dots45-braille.glif dots456-braille dots456-braille.glif dots4567-braille dots4567-braille.glif dots45678-braille dots45678-braille.glif dots4568-braille dots4568-braille.glif dots457-braille dots457-braille.glif dots4578-braille dots4578-braille.glif dots458-braille dots458-braille.glif dots46-braille dots46-braille.glif dots467-braille dots467-braille.glif dots4678-braille dots4678-braille.glif dots468-braille dots468-braille.glif dots47-braille dots47-braille.glif dots478-braille dots478-braille.glif dots48-braille dots48-braille.glif dots5-braille dots5-braille.glif dots56-braille dots56-braille.glif dots567-braille dots567-braille.glif dots5678-braille dots5678-braille.glif dots568-braille dots568-braille.glif dots57-braille dots57-braille.glif dots578-braille dots578-braille.glif dots58-braille dots58-braille.glif dots6-braille dots6-braille.glif dots67-braille dots67-braille.glif dots678-braille dots678-braille.glif dots68-braille dots68-braille.glif dots7-braille dots7-braille.glif dots78-braille dots78-braille.glif dots8-braille dots8-braille.glif dottedCircle dottedC_ircle.glif dottedSquare dottedS_quare.glif doubleverticalbarbelowSymbol-ar doubleverticalbarbelowS_ymbol-ar.glif doubleverticalbarbelowSymbol-ar.comb doubleverticalbarbelowS_ymbol-ar.comb.glif downArrow downA_rrow.glif downBlackSmallTriangle downB_lackS_mallT_riangle.glif downBlackTriangle downB_lackT_riangle.glif downTipLeftArrow downT_ipL_eftA_rrow.glif downWhiteSmallTriangle downW_hiteS_mallT_riangle.glif downWhiteTriangle downW_hiteT_riangle.glif dtail dtail.glif dul-ar dul-ar.glif dul-ar.fina dul-ar.fina.glif dyeh-ar dyeh-ar.glif dyeh-ar.fina dyeh-ar.fina.glif dyeh-ar.init dyeh-ar.init.glif dyeh-ar.medi dyeh-ar.medi.glif dze-cy dze-cy.glif dzhe-cy dzhe-cy.glif e e.glif e-ar e-ar.glif e-ar.fina e-ar.fina.glif e-ar.fina.alt e-ar.fina.alt.glif e-ar.init e-ar.init.glif e-ar.init.alt e-ar.init.alt.glif e-ar.medi e-ar.medi.glif e-cy e-cy.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhookabove ecircumflexhookabove.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif ef-cy ef-cy.glif ef-cy.loclBGR ef-cy.loclB_G_R_.glif egrave egrave.glif ehookabove ehookabove.glif eight eight.glif eight-ar eight-ar.glif eight-arinferior eight-arinferior.glif eight-arsuperior eight-arsuperior.glif eight-persian eight-persian.glif eight-persianinferior eight-persianinferior.glif eight-persiansuperior eight-persiansuperior.glif eight.dnom eight.dnom.glif eight.numr eight.numr.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif el-cy el-cy.glif el-cy.loclBGR el-cy.loclB_G_R_.glif ellipsis ellipsis.glif em-cy em-cy.glif emacron emacron.glif emdash emdash.glif en-cy en-cy.glif endOfMediumControl endO_fM_ediumC_ontrol.glif endOfMediumControl.ss20 endO_fM_ediumC_ontrol.ss20.glif endOfTextControl endO_fT_extC_ontrol.glif endOfTextControl.ss20 endO_fT_extC_ontrol.ss20.glif endOfTransmissionBlockControl endO_fT_ransmissionB_lockC_ontrol.glif endOfTransmissionBlockControl.ss20 endO_fT_ransmissionB_lockC_ontrol.ss20.glif endOfTransmissionControl endO_fT_ransmissionC_ontrol.glif endOfTransmissionControl.ss20 endO_fT_ransmissionC_ontrol.ss20.glif endash endash.glif endescender-cy endescender-cy.glif endofayah-ar endofayah-ar.glif eng eng.glif enquiryControl enquiryC_ontrol.glif enquiryControl.ss20 enquiryC_ontrol.ss20.glif eogonek eogonek.glif eopen eopen.glif epsilon epsilon.glif epsilontonos epsilontonos.glif equal equal.glif equal_end.seq equal_end.seq.glif equal_equal.liga equal_equal.liga.glif equal_equal_equal.liga equal_equal_equal.liga.glif equal_greater_greater.liga equal_greater_greater.liga.glif equal_less_less.liga equal_less_less.liga.glif equal_middle.seq equal_middle.seq.glif equal_start.seq equal_start.seq.glif equivalence equivalence.glif er-cy er-cy.glif ereversed-cy ereversed-cy.glif es-cy es-cy.glif escapeControl escapeC_ontrol.glif escapeControl.ss20 escapeC_ontrol.ss20.glif esh esh.glif estimated estimated.glif eta eta.glif etatonos etatonos.glif eth eth.glif etilde etilde.glif eturned eturned.glif euro euro.glif eurocurrency eurocurrency.glif exclam exclam.glif exclam_colon.liga exclam_colon.liga.glif exclam_equal.liga exclam_equal.liga.glif exclam_equal_equal.liga exclam_equal_equal.liga.glif exclam_equal_middle.seq exclam_equal_middle.seq.glif exclam_exclam.liga exclam_exclam.liga.glif exclam_exclam_period.liga exclam_exclam_period.liga.glif exclam_period.liga exclam_period.liga.glif exclamdouble exclamdouble.glif exclamdown exclamdown.glif ezh ezh.glif f f.glif fatha-ar fatha-ar.glif fathatan-ar fathatan-ar.glif feh-ar feh-ar.glif feh-ar.alt feh-ar.alt.glif feh-ar.fina feh-ar.fina.glif feh-ar.fina.alt feh-ar.fina.alt.glif feh-ar.init feh-ar.init.glif feh-ar.init.alt feh-ar.init.alt.glif feh-ar.medi feh-ar.medi.glif fehDotMovedbelow-ar fehD_otM_ovedbelow-ar.glif fehDotMovedbelow-ar.alt fehD_otM_ovedbelow-ar.alt.glif fehDotMovedbelow-ar.fina fehD_otM_ovedbelow-ar.fina.glif fehDotMovedbelow-ar.fina.alt fehD_otM_ovedbelow-ar.fina.alt.glif fehDotMovedbelow-ar.init fehD_otM_ovedbelow-ar.init.glif fehDotMovedbelow-ar.medi fehD_otM_ovedbelow-ar.medi.glif fehDotbelow-ar fehD_otbelow-ar.glif fehDotbelow-ar.alt fehD_otbelow-ar.alt.glif fehDotbelow-ar.fina fehD_otbelow-ar.fina.glif fehDotbelow-ar.fina.alt fehD_otbelow-ar.fina.alt.glif fehDotbelow-ar.init fehD_otbelow-ar.init.glif fehDotbelow-ar.medi fehD_otbelow-ar.medi.glif fehDotbelowThreedotsabove-ar fehD_otbelowT_hreedotsabove-ar.glif fehDotbelowThreedotsabove-ar.alt fehD_otbelowT_hreedotsabove-ar.alt.glif fehDotbelowThreedotsabove-ar.fina fehD_otbelowT_hreedotsabove-ar.fina.glif fehDotbelowThreedotsabove-ar.fina.alt fehD_otbelowT_hreedotsabove-ar.fina.alt.glif fehDotbelowThreedotsabove-ar.init fehD_otbelowT_hreedotsabove-ar.init.glif fehDotbelowThreedotsabove-ar.medi fehD_otbelowT_hreedotsabove-ar.medi.glif fehDotless-ar fehD_otless-ar.glif fehDotless-ar.alt fehD_otless-ar.alt.glif fehDotless-ar.fina fehD_otless-ar.fina.glif fehDotless-ar.fina.alt fehD_otless-ar.fina.alt.glif fehDotless-ar.init fehD_otless-ar.init.glif fehDotless-ar.init.alt fehD_otless-ar.init.alt.glif fehDotless-ar.medi fehD_otless-ar.medi.glif fehThreedotsbelow-ar fehT_hreedotsbelow-ar.glif fehThreedotsbelow-ar.alt fehT_hreedotsbelow-ar.alt.glif fehThreedotsbelow-ar.fina fehT_hreedotsbelow-ar.fina.glif fehThreedotsbelow-ar.fina.alt fehT_hreedotsbelow-ar.fina.alt.glif fehThreedotsbelow-ar.init fehT_hreedotsbelow-ar.init.glif fehThreedotsbelow-ar.medi fehT_hreedotsbelow-ar.medi.glif fehThreedotsupbelow-ar fehT_hreedotsupbelow-ar.glif fehThreedotsupbelow-ar.alt fehT_hreedotsupbelow-ar.alt.glif fehThreedotsupbelow-ar.fina fehT_hreedotsupbelow-ar.fina.glif fehThreedotsupbelow-ar.fina.alt fehT_hreedotsupbelow-ar.fina.alt.glif fehThreedotsupbelow-ar.init fehT_hreedotsupbelow-ar.init.glif fehThreedotsupbelow-ar.medi fehT_hreedotsupbelow-ar.medi.glif fehTwodotsbelow-ar fehT_wodotsbelow-ar.glif fehTwodotsbelow-ar.alt fehT_wodotsbelow-ar.alt.glif fehTwodotsbelow-ar.fina fehT_wodotsbelow-ar.fina.glif fehTwodotsbelow-ar.fina.alt fehT_wodotsbelow-ar.fina.alt.glif fehTwodotsbelow-ar.init fehT_wodotsbelow-ar.init.glif fehTwodotsbelow-ar.medi fehT_wodotsbelow-ar.medi.glif fi fi.glif fileSeparatorControl fileS_eparatorC_ontrol.glif filledRect filledR_ect.glif finalkaf-hb finalkaf-hb.glif finalkafdagesh-hb finalkafdagesh-hb.glif finalmem-hb finalmem-hb.glif finalnun-hb finalnun-hb.glif finalpe-hb finalpe-hb.glif finalpedagesh-hb finalpedagesh-hb.glif finaltsadi-hb finaltsadi-hb.glif firsttonechinese firsttonechinese.glif fisheye fisheye.glif five five.glif five-ar five-ar.glif five-arinferior five-arinferior.glif five-arsuperior five-arsuperior.glif five-persian five-persian.glif five-persianinferior five-persianinferior.glif five-persiansuperior five-persiansuperior.glif five.dnom five.dnom.glif five.numr five.numr.glif fiveeighths fiveeighths.glif fiveeighths.BRACKET.500 fiveeighths.B_R_A_C_K_E_T_.500.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif footnotemarker-ar footnotemarker-ar.glif formFeedControl formF_eedC_ontrol.glif formFeedControl.ss20 formF_eedC_ontrol.ss20.glif four four.glif four-ar four-ar.glif four-arinferior four-arinferior.glif four-arsuperior four-arsuperior.glif four-persian four-persian.glif four-persian.small01 four-persian.small01.glif four-persian.urdu four-persian.urdu.glif four-persian.urduinferior four-persian.urduinferior.glif four-persian.urdusuperior four-persian.urdusuperior.glif four-persianbelow-ar four-persianbelow-ar.glif four-persiancenter-ar four-persiancenter-ar.glif four-persianinferior four-persianinferior.glif four-persiansuperior four-persiansuperior.glif four.dnom four.dnom.glif four.half four.half.glif four.numr four.numr.glif fourdotsabove-ar fourdotsabove-ar.glif fourdotsbelow-ar fourdotsbelow-ar.glif fourdotscenter-ar fourdotscenter-ar.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fourthroot-ar fourthroot-ar.glif fraction fraction.glif franc franc.glif fullBlock fullB_lock.glif fullBlock.stypo fullB_lock.stypo.glif fullstop-ar fullstop-ar.glif g g.glif gaf-ar gaf-ar.glif gaf-ar.fina gaf-ar.fina.glif gaf-ar.init gaf-ar.init.glif gaf-ar.medi gaf-ar.medi.glif gafInvertedstroke-ar gafI_nvertedstroke-ar.glif gafInvertedstroke-ar.fina gafI_nvertedstroke-ar.fina.glif gafInvertedstroke-ar.init gafI_nvertedstroke-ar.init.glif gafInvertedstroke-ar.medi gafI_nvertedstroke-ar.medi.glif gafRing-ar gafR_ing-ar.glif gafRing-ar.fina gafR_ing-ar.fina.glif gafRing-ar.init gafR_ing-ar.init.glif gafRing-ar.medi gafR_ing-ar.medi.glif gafThreedots-ar gafT_hreedots-ar.glif gafThreedots-ar.fina gafT_hreedots-ar.fina.glif gafThreedots-ar.init gafT_hreedots-ar.init.glif gafThreedots-ar.medi gafT_hreedots-ar.medi.glif gafTwodotsbelow-ar gafT_wodotsbelow-ar.glif gafTwodotsbelow-ar.fina gafT_wodotsbelow-ar.fina.glif gafTwodotsbelow-ar.init gafT_wodotsbelow-ar.init.glif gafTwodotsbelow-ar.medi gafT_wodotsbelow-ar.medi.glif gafsarkashabove-ar gafsarkashabove-ar.glif gamma gamma.glif gamma-latin gamma-latin.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gcommaaccent gcommaaccent.glif gdotaccent gdotaccent.glif ge-cy ge-cy.glif ge-cy.loclBGR ge-cy.loclB_G_R_.glif geresh-hb geresh-hb.glif germandbls germandbls.glif gershayim-hb gershayim-hb.glif ghain-ar ghain-ar.glif ghain-ar.fina ghain-ar.fina.glif ghain-ar.init ghain-ar.init.glif ghain-ar.medi ghain-ar.medi.glif ghainDotbelow-ar ghainD_otbelow-ar.glif ghainDotbelow-ar.fina ghainD_otbelow-ar.fina.glif ghainDotbelow-ar.init ghainD_otbelow-ar.init.glif ghainDotbelow-ar.medi ghainD_otbelow-ar.medi.glif ghestroke-cy ghestroke-cy.glif gheupturn-cy gheupturn-cy.glif gimel-hb gimel-hb.glif gimeldagesh-hb gimeldagesh-hb.glif gje-cy gje-cy.glif glottalstop glottalstop.glif glottalstopmod glottalstopmod.glif glottalstopreversed glottalstopreversed.glif grave grave.glif gravecomb gravecomb.glif gravecomb.case gravecomb.case.glif gravetonecomb gravetonecomb.glif greater greater.glif greater.alt greater.alt.glif greater.center greater.center.glif greater_equal.liga greater_equal.liga.glif greater_equal_end.seq greater_equal_end.seq.glif greater_equal_middle.seq greater_equal_middle.seq.glif greater_equal_start.seq greater_equal_start.seq.glif greater_greater.liga greater_greater.liga.glif greater_greater_equal.liga greater_greater_equal.liga.glif greater_greater_equal_end.seq greater_greater_equal_end.seq.glif greater_greater_equal_middle.seq greater_greater_equal_middle.seq.glif greater_greater_equal_start.seq greater_greater_equal_start.seq.glif greater_greater_greater.liga greater_greater_greater.liga.glif greater_greater_hyphen_end.seq greater_greater_hyphen_end.seq.glif greater_greater_hyphen_middle.seq greater_greater_hyphen_middle.seq.glif greater_greater_hyphen_start.seq greater_greater_hyphen_start.seq.glif greater_hyphen_end.seq greater_hyphen_end.seq.glif greater_hyphen_middle.seq greater_hyphen_middle.seq.glif greater_hyphen_start.seq greater_hyphen_start.seq.glif greaterequal greaterequal.glif groupSeparatorControl groupS_eparatorC_ontrol.glif gstroke gstroke.glif guarani guarani.glif gueh-ar gueh-ar.glif gueh-ar.fina gueh-ar.fina.glif gueh-ar.init gueh-ar.init.glif gueh-ar.medi gueh-ar.medi.glif guillemetleft guillemetleft.glif guillemetright guillemetright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif ha-cy ha-cy.glif hadescender-cy hadescender-cy.glif hah-ar hah-ar.glif hah-ar.fina hah-ar.fina.glif hah-ar.init hah-ar.init.glif hah-ar.medi hah-ar.medi.glif hahFourbelow-ar hahF_ourbelow-ar.glif hahFourbelow-ar.fina hahF_ourbelow-ar.fina.glif hahFourbelow-ar.init hahF_ourbelow-ar.init.glif hahFourbelow-ar.medi hahF_ourbelow-ar.medi.glif hahHamzaabove-ar hahH_amzaabove-ar.glif hahHamzaabove-ar.fina hahH_amzaabove-ar.fina.glif hahHamzaabove-ar.init hahH_amzaabove-ar.init.glif hahHamzaabove-ar.medi hahH_amzaabove-ar.medi.glif hahTahTwodotshorizontalabove-ar hahT_ahT_wodotshorizontalabove-ar.glif hahTahTwodotshorizontalabove-ar.fina hahT_ahT_wodotshorizontalabove-ar.fina.glif hahTahTwodotshorizontalabove-ar.init hahT_ahT_wodotshorizontalabove-ar.init.glif hahTahTwodotshorizontalabove-ar.medi hahT_ahT_wodotshorizontalabove-ar.medi.glif hahTahabove-ar hahT_ahabove-ar.glif hahTahabove-ar.fina hahT_ahabove-ar.fina.glif hahTahabove-ar.init hahT_ahabove-ar.init.glif hahTahabove-ar.medi hahT_ahabove-ar.medi.glif hahTahbelow-ar hahT_ahbelow-ar.glif hahTahbelow-ar.fina hahT_ahbelow-ar.fina.glif hahTahbelow-ar.init hahT_ahbelow-ar.init.glif hahTahbelow-ar.medi hahT_ahbelow-ar.medi.glif hahThreedotsabove-ar hahT_hreedotsabove-ar.glif hahThreedotsabove-ar.fina hahT_hreedotsabove-ar.fina.glif hahThreedotsabove-ar.init hahT_hreedotsabove-ar.init.glif hahThreedotsabove-ar.medi hahT_hreedotsabove-ar.medi.glif hahThreedotsupbelow-ar hahT_hreedotsupbelow-ar.glif hahThreedotsupbelow-ar.fina hahT_hreedotsupbelow-ar.fina.glif hahThreedotsupbelow-ar.init hahT_hreedotsupbelow-ar.init.glif hahThreedotsupbelow-ar.medi hahT_hreedotsupbelow-ar.medi.glif hahTwodotshorizontalabove-ar hahT_wodotshorizontalabove-ar.glif hahTwodotshorizontalabove-ar.fina hahT_wodotshorizontalabove-ar.fina.glif hahTwodotshorizontalabove-ar.init hahT_wodotshorizontalabove-ar.init.glif hahTwodotshorizontalabove-ar.medi hahT_wodotshorizontalabove-ar.medi.glif hahTwodotsverticalabove-ar hahT_wodotsverticalabove-ar.glif hahTwodotsverticalabove-ar.fina hahT_wodotsverticalabove-ar.fina.glif hahTwodotsverticalabove-ar.init hahT_wodotsverticalabove-ar.init.glif hahTwodotsverticalabove-ar.medi hahT_wodotsverticalabove-ar.medi.glif hamza-ar hamza-ar.glif hamzaabove-ar hamzaabove-ar.glif hamzabelow-ar hamzabelow-ar.glif hardsign-cy hardsign-cy.glif hardsign-cy.loclBGR hardsign-cy.loclB_G_R_.glif hbar hbar.glif hcaron hcaron.glif hcircumflex hcircumflex.glif hdotbelow hdotbelow.glif he-hb he-hb.glif heartBlackSuit heartB_lackS_uit.glif heavyleftpointinganglebracketornament heavyleftpointinganglebracketornament.glif heavyleftpointinganglequotationmarkornament heavyleftpointinganglequotationmarkornament.glif heavyrightpointinganglebracketornament heavyrightpointinganglebracketornament.glif heavyrightpointinganglequotationmarkornament heavyrightpointinganglequotationmarkornament.glif hedagesh-hb hedagesh-hb.glif heh-ar heh-ar.glif heh-ar.fina heh-ar.fina.glif heh-ar.init heh-ar.init.glif heh-ar.medi heh-ar.medi.glif hehAlefabove-ar.init hehA_lefabove-ar.init.glif hehAlefabove-ar.init.fina hehA_lefabove-ar.init.fina.glif hehDoachashmee-ar hehD_oachashmee-ar.glif hehDoachashmee-ar.fina hehD_oachashmee-ar.fina.glif hehDoachashmee-ar.init hehD_oachashmee-ar.init.glif hehDoachashmee-ar.medi hehD_oachashmee-ar.medi.glif hehHamzaabove-ar hehH_amzaabove-ar.glif hehHamzaabove-ar.fina hehH_amzaabove-ar.fina.glif hehVinvertedabove-ar hehV_invertedabove-ar.glif hehVinvertedabove-ar.fina hehV_invertedabove-ar.fina.glif hehVinvertedabove-ar.init hehV_invertedabove-ar.init.glif hehVinvertedabove-ar.medi hehV_invertedabove-ar.medi.glif hehgoal-ar hehgoal-ar.glif hehgoal-ar.fina hehgoal-ar.fina.glif hehgoal-ar.init hehgoal-ar.init.glif hehgoal-ar.init.alt hehgoal-ar.init.alt.glif hehgoal-ar.medi hehgoal-ar.medi.glif hehgoalHamzaabove-ar hehgoalH_amzaabove-ar.glif hehgoalHamzaabove-ar.fina hehgoalH_amzaabove-ar.fina.glif hehgoalHamzaabove-ar.init hehgoalH_amzaabove-ar.init.glif hehgoalHamzaabove-ar.init.alt hehgoalH_amzaabove-ar.init.alt.glif hehgoalHamzaabove-ar.medi hehgoalH_amzaabove-ar.medi.glif het-hb het-hb.glif highhamza-ar highhamza-ar.glif highhamzaAlef-ar highhamzaA_lef-ar.glif highhamzaAlef-ar.fina highhamzaA_lef-ar.fina.glif highhamzaAlef-ar.fina.rlig highhamzaA_lef-ar.fina.rlig.glif highhamzaWaw-ar highhamzaW_aw-ar.glif highhamzaWaw-ar.fina highhamzaW_aw-ar.fina.glif highhamzaYeh-ar highhamzaY_eh-ar.glif highhamzaYeh-ar.fina highhamzaY_eh-ar.fina.glif highhamzaYeh-ar.fina.alt highhamzaY_eh-ar.fina.alt.glif highhamzaYeh-ar.init highhamzaY_eh-ar.init.glif highhamzaYeh-ar.init.alt highhamzaY_eh-ar.init.alt.glif highhamzaYeh-ar.medi highhamzaY_eh-ar.medi.glif holam-hb holam-hb.glif holamhaser-hb holamhaser-hb.glif hookabovecomb hookabovecomb.glif hookabovecomb.case hookabovecomb.case.glif horizontalBlackHexagon horizontalB_lackH_exagon.glif horizontalFillSquare horizontalF_illS_quare.glif horizontalTabulationControl horizontalT_abulationC_ontrol.glif horizontalTabulationControl.ss20 horizontalT_abulationC_ontrol.ss20.glif horizontalbar horizontalbar.glif horizontallineextension horizontallineextension.glif horncomb horncomb.glif horncomb.case horncomb.case.glif house house.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlautcomb hungarumlautcomb.glif hungarumlautcomb.case hungarumlautcomb.case.glif hyphen hyphen.glif hyphen_asciitilde.liga hyphen_asciitilde.liga.glif hyphen_end.seq hyphen_end.seq.glif hyphen_hyphen.liga hyphen_hyphen.liga.glif hyphen_hyphen_hyphen.liga hyphen_hyphen_hyphen.liga.glif hyphen_middle.seq hyphen_middle.seq.glif hyphen_start.seq hyphen_start.seq.glif hyphentwo hyphentwo.glif i i.glif i-cy i-cy.glif ia-cy ia-cy.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif idotless idotless.glif ie-cy ie-cy.glif iegrave-cy iegrave-cy.glif igrave igrave.glif ihookabove ihookabove.glif ii-cy ii-cy.glif ii-cy.loclBGR ii-cy.loclB_G_R_.glif iigrave-cy iigrave-cy.glif iigrave-cy.loclBGR iigrave-cy.loclB_G_R_.glif iishort-cy iishort-cy.glif iishort-cy.loclBGR iishort-cy.loclB_G_R_.glif ij ij.glif ij_acute ij_acute.glif imacron imacron.glif imacron-cy imacron-cy.glif increment increment.glif infinity infinity.glif integral integral.glif integralbt integralbt.glif integraltp integraltp.glif intersection intersection.glif inverseBullet inverseB_ullet.glif inverseWhiteCircle inverseW_hiteC_ircle.glif io-cy io-cy.glif iogonek iogonek.glif iota iota.glif iota-latin iota-latin.glif iotadieresis iotadieresis.glif iotadieresistonos iotadieresistonos.glif iotatonos iotatonos.glif itilde itilde.glif iu-cy iu-cy.glif iu-cy.loclBGR iu-cy.loclB_G_R_.glif j j.glif jacute jacute.glif jcaron jcaron.glif jcircumflex jcircumflex.glif jdotless jdotless.glif je-cy je-cy.glif jeem-ar jeem-ar.glif jeem-ar.fina jeem-ar.fina.glif jeem-ar.init jeem-ar.init.glif jeem-ar.medi jeem-ar.medi.glif jeemTwodotsabove-ar jeemT_wodotsabove-ar.glif jeemTwodotsabove-ar.fina jeemT_wodotsabove-ar.fina.glif jeemTwodotsabove-ar.init jeemT_wodotsabove-ar.init.glif jeemTwodotsabove-ar.medi jeemT_wodotsabove-ar.medi.glif jeh-ar jeh-ar.glif jeh-ar.fina jeh-ar.fina.glif k k.glif ka-cy ka-cy.glif ka-cy.loclBGR ka-cy.loclB_G_R_.glif kadescender-cy kadescender-cy.glif kaf-ar kaf-ar.glif kaf-ar.fina kaf-ar.fina.glif kaf-ar.init kaf-ar.init.glif kaf-ar.medi kaf-ar.medi.glif kaf-hb kaf-hb.glif kafDotabove-ar kafD_otabove-ar.glif kafDotabove-ar.fina kafD_otabove-ar.fina.glif kafDotabove-ar.init kafD_otabove-ar.init.glif kafDotabove-ar.medi kafD_otabove-ar.medi.glif kafRing-ar kafR_ing-ar.glif kafRing-ar.fina kafR_ing-ar.fina.glif kafRing-ar.init kafR_ing-ar.init.glif kafRing-ar.medi kafR_ing-ar.medi.glif kafThreedotsbelow-ar kafT_hreedotsbelow-ar.glif kafThreedotsbelow-ar.fina kafT_hreedotsbelow-ar.fina.glif kafThreedotsbelow-ar.init kafT_hreedotsbelow-ar.init.glif kafThreedotsbelow-ar.medi kafT_hreedotsbelow-ar.medi.glif kafTwodotshorizontalabove-ar kafT_wodotshorizontalabove-ar.glif kafTwodotshorizontalabove-ar.fina kafT_wodotshorizontalabove-ar.fina.glif kafTwodotshorizontalabove-ar.init kafT_wodotshorizontalabove-ar.init.glif kafTwodotshorizontalabove-ar.medi kafT_wodotshorizontalabove-ar.medi.glif kafdagesh-hb kafdagesh-hb.glif kafswash-ar kafswash-ar.glif kafswash-ar.alt kafswash-ar.alt.glif kafswash-ar.fina kafswash-ar.fina.glif kafswash-ar.fina.alt kafswash-ar.fina.alt.glif kafswash-ar.init kafswash-ar.init.glif kafswash-ar.init.alt kafswash-ar.init.alt.glif kafswash-ar.medi kafswash-ar.medi.glif kafswash-ar.medi.alt kafswash-ar.medi.alt.glif kaiSymbol kaiS_ymbol.glif kappa kappa.glif kashida-ar kashida-ar.glif kasra-ar kasra-ar.glif kasratan-ar kasratan-ar.glif kcommaaccent kcommaaccent.glif kdotbelow kdotbelow.glif keheh-ar keheh-ar.glif keheh-ar.fina keheh-ar.fina.glif keheh-ar.init keheh-ar.init.glif keheh-ar.medi keheh-ar.medi.glif kehehDotabove-ar kehehD_otabove-ar.glif kehehDotabove-ar.fina kehehD_otabove-ar.fina.glif kehehDotabove-ar.init kehehD_otabove-ar.init.glif kehehDotabove-ar.medi kehehD_otabove-ar.medi.glif kehehThreedotsabove-ar kehehT_hreedotsabove-ar.glif kehehThreedotsabove-ar.fina kehehT_hreedotsabove-ar.fina.glif kehehThreedotsabove-ar.init kehehT_hreedotsabove-ar.init.glif kehehThreedotsabove-ar.medi kehehT_hreedotsabove-ar.medi.glif kehehThreedotsbelow-ar kehehT_hreedotsbelow-ar.glif kehehThreedotsbelow-ar.fina kehehT_hreedotsbelow-ar.fina.glif kehehThreedotsbelow-ar.init kehehT_hreedotsbelow-ar.init.glif kehehThreedotsbelow-ar.medi kehehT_hreedotsbelow-ar.medi.glif kehehThreedotsupbelow-ar kehehT_hreedotsupbelow-ar.glif kehehThreedotsupbelow-ar.fina kehehT_hreedotsupbelow-ar.fina.glif kehehThreedotsupbelow-ar.init kehehT_hreedotsupbelow-ar.init.glif kehehThreedotsupbelow-ar.medi kehehT_hreedotsupbelow-ar.medi.glif kehehTwodotshorizontalabove-ar kehehT_wodotshorizontalabove-ar.glif kehehTwodotshorizontalabove-ar.fina kehehT_wodotshorizontalabove-ar.fina.glif kehehTwodotshorizontalabove-ar.init kehehT_wodotshorizontalabove-ar.init.glif kehehTwodotshorizontalabove-ar.medi kehehT_wodotshorizontalabove-ar.medi.glif kgreenlandic kgreenlandic.glif khah-ar khah-ar.glif khah-ar.fina khah-ar.fina.glif khah-ar.init khah-ar.init.glif khah-ar.medi khah-ar.medi.glif kip kip.glif kirghizoe-ar kirghizoe-ar.glif kirghizoe-ar.fina kirghizoe-ar.fina.glif kirghizyu-ar kirghizyu-ar.glif kirghizyu-ar.fina kirghizyu-ar.fina.glif kje-cy kje-cy.glif klinebelow klinebelow.glif l l.glif lacute lacute.glif lam-ar lam-ar.glif lam-ar.fina lam-ar.fina.glif lam-ar.init lam-ar.init.glif lam-ar.init.rlig lam-ar.init.rlig.glif lam-ar.medi lam-ar.medi.glif lam-ar.medi.rlig lam-ar.medi.rlig.glif lamBar-ar lamB_ar-ar.glif lamBar-ar.fina lamB_ar-ar.fina.glif lamBar-ar.init lamB_ar-ar.init.glif lamBar-ar.init.rlig lamB_ar-ar.init.rlig.glif lamBar-ar.medi lamB_ar-ar.medi.glif lamBar-ar.medi.rlig lamB_ar-ar.medi.rlig.glif lamDotabove-ar lamD_otabove-ar.glif lamDotabove-ar.fina lamD_otabove-ar.fina.glif lamDotabove-ar.init lamD_otabove-ar.init.glif lamDotabove-ar.init.rlig lamD_otabove-ar.init.rlig.glif lamDotabove-ar.medi lamD_otabove-ar.medi.glif lamDotabove-ar.medi.rlig lamD_otabove-ar.medi.rlig.glif lamDoublebar-ar lamD_oublebar-ar.glif lamDoublebar-ar.fina lamD_oublebar-ar.fina.glif lamDoublebar-ar.init lamD_oublebar-ar.init.glif lamDoublebar-ar.init.rlig lamD_oublebar-ar.init.rlig.glif lamDoublebar-ar.medi lamD_oublebar-ar.medi.glif lamDoublebar-ar.medi.rlig lamD_oublebar-ar.medi.rlig.glif lamThreedotsabove-ar lamT_hreedotsabove-ar.glif lamThreedotsabove-ar.fina lamT_hreedotsabove-ar.fina.glif lamThreedotsabove-ar.init lamT_hreedotsabove-ar.init.glif lamThreedotsabove-ar.init.rlig lamT_hreedotsabove-ar.init.rlig.glif lamThreedotsabove-ar.medi lamT_hreedotsabove-ar.medi.glif lamThreedotsabove-ar.medi.rlig lamT_hreedotsabove-ar.medi.rlig.glif lamThreedotsbelow-ar lamT_hreedotsbelow-ar.glif lamThreedotsbelow-ar.fina lamT_hreedotsbelow-ar.fina.glif lamThreedotsbelow-ar.init lamT_hreedotsbelow-ar.init.glif lamThreedotsbelow-ar.init.rlig lamT_hreedotsbelow-ar.init.rlig.glif lamThreedotsbelow-ar.medi lamT_hreedotsbelow-ar.medi.glif lamThreedotsbelow-ar.medi.rlig lamT_hreedotsbelow-ar.medi.rlig.glif lamVabove-ar lamV_above-ar.glif lamVabove-ar.fina lamV_above-ar.fina.glif lamVabove-ar.init lamV_above-ar.init.glif lamVabove-ar.init.rlig lamV_above-ar.init.rlig.glif lamVabove-ar.medi lamV_above-ar.medi.glif lamVabove-ar.medi.rlig lamV_above-ar.medi.rlig.glif lam_alef-ar lam_alef-ar.glif lam_alef-ar.fina lam_alef-ar.fina.glif lam_alef-ar.fina.short lam_alef-ar.fina.short.glif lam_alef-ar.short lam_alef-ar.short.glif lam_alefHamzaabove-ar lam_alefH_amzaabove-ar.glif lam_alefHamzaabove-ar.fina lam_alefH_amzaabove-ar.fina.glif lam_alefHamzabelow-ar lam_alefH_amzabelow-ar.glif lam_alefHamzabelow-ar.fina lam_alefH_amzabelow-ar.fina.glif lam_alefMadda-ar lam_alefM_adda-ar.glif lam_alefMadda-ar.fina lam_alefM_adda-ar.fina.glif lam_alefWasla-ar lam_alefW_asla-ar.glif lam_alefWasla-ar.fina lam_alefW_asla-ar.fina.glif lam_lam_heh-ar lam_lam_heh-ar.glif lambda lambda.glif lambdastroke lambdastroke.glif lamed-hb lamed-hb.glif lameddagesh-hb lameddagesh-hb.glif largeCircle largeC_ircle.glif lari lari.glif lbar lbar.glif lbelt lbelt.glif lcaron lcaron.glif lcommaaccent lcommaaccent.glif ldot ldot.glif ldotbelow ldotbelow.glif leftArrow leftA_rrow.glif leftBlackPointer leftB_lackP_ointer.glif leftBlackSmallTriangle leftB_lackS_mallT_riangle.glif leftBlackTriangle leftB_lackT_riangle.glif leftBlock leftB_lock.glif leftBlock.stypo leftB_lock.stypo.glif leftFiveEighthsBlock leftF_iveE_ighthsB_lock.glif leftFiveEighthsBlock.stypo leftF_iveE_ighthsB_lock.stypo.glif leftHalfBlackCircle leftH_alfB_lackC_ircle.glif leftHalfBlackDiamond leftH_alfB_lackD_iamond.glif leftHalfBlackSquare leftH_alfB_lackS_quare.glif leftHalfBlackWhiteCircle leftH_alfB_lackW_hiteC_ircle.glif leftOneEighthBlock leftO_neE_ighthB_lock.glif leftOneEighthBlock.stypo leftO_neE_ighthB_lock.stypo.glif leftOneQuarterBlock leftO_neQ_uarterB_lock.glif leftOneQuarterBlock.stypo leftO_neQ_uarterB_lock.stypo.glif leftRightArrow leftR_ightA_rrow.glif leftSevenEighthsBlock leftS_evenE_ighthsB_lock.glif leftSevenEighthsBlock.stypo leftS_evenE_ighthsB_lock.stypo.glif leftThreeEighthsBlock leftT_hreeE_ighthsB_lock.glif leftThreeEighthsBlock.stypo leftT_hreeE_ighthsB_lock.stypo.glif leftThreeQuartersBlock leftT_hreeQ_uartersB_lock.glif leftThreeQuartersBlock.stypo leftT_hreeQ_uartersB_lock.stypo.glif leftWhitePointer leftW_hiteP_ointer.glif leftWhiteSmallTriangle leftW_hiteS_mallT_riangle.glif leftWhiteTriangle leftW_hiteT_riangle.glif less less.glif less.alt less.alt.glif less.center less.center.glif less_asciitilde.liga less_asciitilde.liga.glif less_asciitilde_asciitilde.liga less_asciitilde_asciitilde.liga.glif less_asciitilde_greater.liga less_asciitilde_greater.liga.glif less_asterisk.liga less_asterisk.liga.glif less_asterisk_greater.liga less_asterisk_greater.liga.glif less_bar.liga less_bar.liga.glif less_bar_bar.liga less_bar_bar.liga.glif less_bar_bar_bar.liga less_bar_bar_bar.liga.glif less_bar_greater.liga less_bar_greater.liga.glif less_dollar.liga less_dollar.liga.glif less_dollar.liga.BRACKET.600 less_dollar.liga.B_R_A_C_K_E_T_.600.glif less_dollar_greater.liga less_dollar_greater.liga.glif less_dollar_greater.liga.BRACKET.600 less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif less_equal.liga less_equal.liga.glif less_equal_end.seq less_equal_end.seq.glif less_equal_middle.seq less_equal_middle.seq.glif less_equal_start.seq less_equal_start.seq.glif less_exclam_hyphen_hyphen.liga less_exclam_hyphen_hyphen.liga.glif less_greater.liga less_greater.liga.glif less_hyphen_end.seq less_hyphen_end.seq.glif less_hyphen_middle.seq less_hyphen_middle.seq.glif less_hyphen_start.seq less_hyphen_start.seq.glif less_less.liga less_less.liga.glif less_less_equal.liga less_less_equal.liga.glif less_less_equal_end.seq less_less_equal_end.seq.glif less_less_equal_middle.seq less_less_equal_middle.seq.glif less_less_equal_start.seq less_less_equal_start.seq.glif less_less_hyphen_end.seq less_less_hyphen_end.seq.glif less_less_hyphen_middle.seq less_less_hyphen_middle.seq.glif less_less_hyphen_start.seq less_less_hyphen_start.seq.glif less_less_less.liga less_less_less.liga.glif less_plus.liga less_plus.liga.glif less_plus_greater.liga less_plus_greater.liga.glif less_slash.liga less_slash.liga.glif less_slash_greater.liga less_slash_greater.liga.glif lessequal lessequal.glif lineFeedControl lineF_eedC_ontrol.glif lineFeedControl.ss20 lineF_eedC_ontrol.ss20.glif lineseparator lineseparator.glif lira lira.glif liraTurkish liraT_urkish.glif literSign literS_ign.glif lje-cy lje-cy.glif llinebelow llinebelow.glif lmiddletilde lmiddletilde.glif logicalnot logicalnot.glif logicalnotReversed logicalnotR_eversed.glif longs longs.glif lowerFiveEighthsBlock lowerF_iveE_ighthsB_lock.glif lowerFiveEighthsBlock.stypo lowerF_iveE_ighthsB_lock.stypo.glif lowerHalfArc lowerH_alfA_rc.glif lowerHalfBlackWhiteCircle lowerH_alfB_lackW_hiteC_ircle.glif lowerHalfBlock lowerH_alfB_lock.glif lowerHalfBlock.stypo lowerH_alfB_lock.stypo.glif lowerHalfInverseWhiteCircle lowerH_alfI_nverseW_hiteC_ircle.glif lowerHalfWhiteSquare lowerH_alfW_hiteS_quare.glif lowerLeftArc lowerL_eftA_rc.glif lowerLeftBlackTriangle lowerL_eftB_lackT_riangle.glif lowerLeftBlock lowerL_eftB_lock.glif lowerLeftBlock.stypo lowerL_eftB_lock.stypo.glif lowerLeftHalfWhiteSquare lowerL_eftH_alfW_hiteS_quare.glif lowerLeftQuadrantWhiteCircle lowerL_eftQ_uadrantW_hiteC_ircle.glif lowerLeftTriangle lowerL_eftT_riangle.glif lowerOneEighthBlock lowerO_neE_ighthB_lock.glif lowerOneEighthBlock.stypo lowerO_neE_ighthB_lock.stypo.glif lowerOneQuarterBlock lowerO_neQ_uarterB_lock.glif lowerOneQuarterBlock.stypo lowerO_neQ_uarterB_lock.stypo.glif lowerRightArc lowerR_ightA_rc.glif lowerRightBlackTriangle lowerR_ightB_lackT_riangle.glif lowerRightBlock lowerR_ightB_lock.glif lowerRightBlock.stypo lowerR_ightB_lock.stypo.glif lowerRightDiagonalHalfBlackSquare lowerR_ightD_iagonalH_alfB_lackS_quare.glif lowerRightQuadrantWhiteCircle lowerR_ightQ_uadrantW_hiteC_ircle.glif lowerRightTriangle lowerR_ightT_riangle.glif lowerSevenEighthsBlock lowerS_evenE_ighthsB_lock.glif lowerSevenEighthsBlock.stypo lowerS_evenE_ighthsB_lock.stypo.glif lowerThreeEighthsBlock lowerT_hreeE_ighthsB_lock.glif lowerThreeEighthsBlock.stypo lowerT_hreeE_ighthsB_lock.stypo.glif lowerThreeQuartersBlock lowerT_hreeQ_uartersB_lock.glif lowerThreeQuartersBlock.stypo lowerT_hreeQ_uartersB_lock.stypo.glif lowernumeral-greek lowernumeral-greek.glif lowlinecomb lowlinecomb.glif lozenge lozenge.glif lslash lslash.glif m m.glif macron macron.glif macronbelowcomb macronbelowcomb.glif macroncomb macroncomb.glif macroncomb.case macroncomb.case.glif madda-ar madda-ar.glif manat manat.glif maqaf-hb maqaf-hb.glif mars mars.glif mediumBlackSmallSquare mediumB_lackS_mallS_quare.glif mediumBlackSquare mediumB_lackS_quare.glif mediumWhiteSmallSquare mediumW_hiteS_mallS_quare.glif mediumWhiteSquare mediumW_hiteS_quare.glif mediumleftpointinganglebracketornament mediumleftpointinganglebracketornament.glif mediumrightpointinganglebracketornament mediumrightpointinganglebracketornament.glif meem-ar meem-ar.glif meem-ar.fina meem-ar.fina.glif meem-ar.init meem-ar.init.glif meem-ar.medi meem-ar.medi.glif meemDotabove-ar meemD_otabove-ar.glif meemDotabove-ar.fina meemD_otabove-ar.fina.glif meemDotabove-ar.init meemD_otabove-ar.init.glif meemDotabove-ar.medi meemD_otabove-ar.medi.glif meemDotbelow-ar meemD_otbelow-ar.glif meemDotbelow-ar.fina meemD_otbelow-ar.fina.glif meemDotbelow-ar.init meemD_otbelow-ar.init.glif meemDotbelow-ar.medi meemD_otbelow-ar.medi.glif meemStopabove-ar meemS_topabove-ar.glif meemThreedotsabove-ar meemT_hreedotsabove-ar.glif meemThreedotsabove-ar.fina meemT_hreedotsabove-ar.fina.glif meemThreedotsabove-ar.init meemT_hreedotsabove-ar.init.glif meemThreedotsabove-ar.medi meemT_hreedotsabove-ar.medi.glif mem-hb mem-hb.glif memdagesh-hb memdagesh-hb.glif micro micro.glif minus minus.glif minute minute.glif misraComma-ar misraC_omma-ar.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif nacute.loclPLK nacute.loclP_L_K_.glif naira naira.glif napostrophe napostrophe.glif nbspace nbspace.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif negativeAcknowledgeControl negativeA_cknowledgeC_ontrol.glif negativeAcknowledgeControl.ss20 negativeA_cknowledgeC_ontrol.ss20.glif newlineControl newlineC_ontrol.glif ng-ar ng-ar.glif ng-ar.fina ng-ar.fina.glif ng-ar.init ng-ar.init.glif ng-ar.medi ng-ar.medi.glif ngoeh-ar ngoeh-ar.glif ngoeh-ar.fina ngoeh-ar.fina.glif ngoeh-ar.init ngoeh-ar.init.glif ngoeh-ar.medi ngoeh-ar.medi.glif nhookleft nhookleft.glif nine nine.glif nine-ar nine-ar.glif nine-arinferior nine-arinferior.glif nine-arsuperior nine-arsuperior.glif nine-persian nine-persian.glif nine-persianinferior nine-persianinferior.glif nine-persiansuperior nine-persiansuperior.glif nine.dnom nine.dnom.glif nine.numr nine.numr.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif nje-cy nje-cy.glif nlinebelow nlinebelow.glif nmod nmod.glif nonbreakinghyphen nonbreakinghyphen.glif noon-ar noon-ar.glif noon-ar.fina noon-ar.fina.glif noon-ar.init noon-ar.init.glif noon-ar.init.alt noon-ar.init.alt.glif noon-ar.medi noon-ar.medi.glif noonAfrican-ar noonA_frican-ar.glif noonAfrican-ar.fina noonA_frican-ar.fina.glif noonAfrican-ar.init noonA_frican-ar.init.glif noonAfrican-ar.init.alt noonA_frican-ar.init.alt.glif noonAfrican-ar.medi noonA_frican-ar.medi.glif noonDotbelow-ar noonD_otbelow-ar.glif noonDotbelow-ar.fina noonD_otbelow-ar.fina.glif noonDotbelow-ar.init noonD_otbelow-ar.init.glif noonDotbelow-ar.init.alt noonD_otbelow-ar.init.alt.glif noonDotbelow-ar.medi noonD_otbelow-ar.medi.glif noonRing-ar noonR_ing-ar.glif noonRing-ar.fina noonR_ing-ar.fina.glif noonRing-ar.init noonR_ing-ar.init.glif noonRing-ar.init.alt noonR_ing-ar.init.alt.glif noonRing-ar.medi noonR_ing-ar.medi.glif noonTahabove-ar noonT_ahabove-ar.glif noonTahabove-ar.fina noonT_ahabove-ar.fina.glif noonTahabove-ar.init noonT_ahabove-ar.init.glif noonTahabove-ar.init.alt noonT_ahabove-ar.init.alt.glif noonTahabove-ar.medi noonT_ahabove-ar.medi.glif noonThreedotsabove-ar noonT_hreedotsabove-ar.glif noonThreedotsabove-ar.fina noonT_hreedotsabove-ar.fina.glif noonThreedotsabove-ar.init noonT_hreedotsabove-ar.init.glif noonThreedotsabove-ar.init.alt noonT_hreedotsabove-ar.init.alt.glif noonThreedotsabove-ar.medi noonT_hreedotsabove-ar.medi.glif noonTwodotsbelow-ar noonT_wodotsbelow-ar.glif noonTwodotsbelow-ar.fina noonT_wodotsbelow-ar.fina.glif noonTwodotsbelow-ar.init noonT_wodotsbelow-ar.init.glif noonTwodotsbelow-ar.init.alt noonT_wodotsbelow-ar.init.alt.glif noonTwodotsbelow-ar.medi noonT_wodotsbelow-ar.medi.glif noonVabove-ar noonV_above-ar.glif noonVabove-ar.fina noonV_above-ar.fina.glif noonVabove-ar.init noonV_above-ar.init.glif noonVabove-ar.init.alt noonV_above-ar.init.alt.glif noonVabove-ar.medi noonV_above-ar.medi.glif noonabove-ar noonabove-ar.glif noonghunna-ar noonghunna-ar.glif noonghunna-ar.fina noonghunna-ar.fina.glif noonghunna-ar.init noonghunna-ar.init.glif noonghunna-ar.init.alt noonghunna-ar.init.alt.glif noonghunna-ar.medi noonghunna-ar.medi.glif noonghunnaabove-ar noonghunnaabove-ar.glif note-musical note-musical.glif notedbl-musical notedbl-musical.glif notequal notequal.glif notidentical notidentical.glif ntilde ntilde.glif nu nu.glif nullControl nullC_ontrol.glif number-ar number-ar.glif numbermark-ar numbermark-ar.glif numbersign numbersign.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif numbersign_bracketleft.liga numbersign_bracketleft.liga.glif numbersign_colon.liga numbersign_colon.liga.glif numbersign_end.seq numbersign_end.seq.glif numbersign_equal.liga numbersign_equal.liga.glif numbersign_exclam.liga numbersign_exclam.liga.glif numbersign_middle.seq numbersign_middle.seq.glif numbersign_parenleft.liga numbersign_parenleft.liga.glif numbersign_question.liga numbersign_question.liga.glif numbersign_start.seq numbersign_start.seq.glif numbersign_underscore.liga numbersign_underscore.liga.glif numbersign_underscore_parenleft.liga numbersign_underscore_parenleft.liga.glif numeral-greek numeral-greek.glif numero numero.glif nun-hb nun-hb.glif nundagesh-hb nundagesh-hb.glif nyeh-ar nyeh-ar.glif nyeh-ar.fina nyeh-ar.fina.glif nyeh-ar.init nyeh-ar.init.glif nyeh-ar.medi nyeh-ar.medi.glif o o.glif o-cy o-cy.glif oacute oacute.glif oacute.loclPLK oacute.loclP_L_K_.glif obarred-cy obarred-cy.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhookabove ocircumflexhookabove.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif oe-ar oe-ar.glif oe-ar.fina oe-ar.fina.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohookabove ohookabove.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhookabove ohornhookabove.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif omacronacute omacronacute.glif omacrongrave omacrongrave.glif omega omega.glif omegatonos omegatonos.glif omicron omicron.glif omicrontonos omicrontonos.glif one one.glif one-ar one-ar.glif one-arinferior one-arinferior.glif one-arsuperior one-arsuperior.glif one-persian one-persian.glif one-persianinferior one-persianinferior.glif one-persiansuperior one-persiansuperior.glif one.dnom one.dnom.glif one.half one.half.glif one.numr one.numr.glif onedotenleader onedotenleader.glif oneeighth oneeighth.glif oneeighth.BRACKET.500 oneeighth.B_R_A_C_K_E_T_.500.glif onehalf onehalf.glif onehalf.BRACKET.500 onehalf.B_R_A_C_K_E_T_.500.glif oneinferior oneinferior.glif onequarter onequarter.glif onequarter.BRACKET.500 onequarter.B_R_A_C_K_E_T_.500.glif onesuperior onesuperior.glif oogonek oogonek.glif oopen oopen.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif orthogonal orthogonal.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif overline overline.glif p p.glif pagenumber-ar pagenumber-ar.glif palochka-cy palochka-cy.glif paragraph paragraph.glif parenleft parenleft.glif parenleft-ar parenleft-ar.glif parenleft_asterisk.liga parenleft_asterisk.liga.glif parenright parenright.glif parenright-ar parenright-ar.glif partialdiff partialdiff.glif paseq-hb paseq-hb.glif patah-hb patah-hb.glif pe-cy pe-cy.glif pe-cy.loclBGR pe-cy.loclB_G_R_.glif pe-hb pe-hb.glif pedagesh-hb pedagesh-hb.glif pedagesh-hb.BRACKET.600 pedagesh-hb.B_R_A_C_K_E_T_.600.glif peh-ar peh-ar.glif peh-ar.alt peh-ar.alt.glif peh-ar.fina peh-ar.fina.glif peh-ar.fina.alt peh-ar.fina.alt.glif peh-ar.init peh-ar.init.glif peh-ar.init.alt peh-ar.init.alt.glif peh-ar.medi peh-ar.medi.glif pehMeemabove-ar pehM_eemabove-ar.glif pehMeemabove-ar.alt pehM_eemabove-ar.alt.glif pehMeemabove-ar.fina pehM_eemabove-ar.fina.glif pehMeemabove-ar.fina.alt pehM_eemabove-ar.fina.alt.glif pehMeemabove-ar.init pehM_eemabove-ar.init.glif pehMeemabove-ar.init.alt pehM_eemabove-ar.init.alt.glif pehMeemabove-ar.medi pehM_eemabove-ar.medi.glif peheh-ar peheh-ar.glif peheh-ar.alt peheh-ar.alt.glif peheh-ar.fina peheh-ar.fina.glif peheh-ar.fina.alt peheh-ar.fina.alt.glif peheh-ar.init peheh-ar.init.glif peheh-ar.init.alt peheh-ar.init.alt.glif peheh-ar.medi peheh-ar.medi.glif percent percent.glif percent-ar percent-ar.glif percent_percent.liga percent_percent.liga.glif period period.glif period_equal.liga period_equal.liga.glif period_hyphen.liga period_hyphen.liga.glif period_period.liga period_period.liga.glif period_period_equal.liga period_period_equal.liga.glif period_period_less.liga period_period_less.liga.glif period_period_period.liga period_period_period.liga.glif period_question.liga period_question.liga.glif periodcentered periodcentered.glif perispomenicomb perispomenicomb.glif perthousand perthousand.glif perthousand-ar perthousand-ar.glif peseta peseta.glif peso peso.glif phi phi.glif pi pi.glif plus plus.glif plus_greater.liga plus_greater.liga.glif plus_plus.liga plus_plus.liga.glif plus_plus_plus.liga plus_plus_plus.liga.glif plusminus plusminus.glif prescription prescription.glif product product.glif psi psi.glif published published.glif punctuationspace punctuationspace.glif q q.glif qaf-ar qaf-ar.glif qaf-ar.fina qaf-ar.fina.glif qaf-ar.init qaf-ar.init.glif qaf-ar.init.alt qaf-ar.init.alt.glif qaf-ar.medi qaf-ar.medi.glif qafAfrican-ar qafA_frican-ar.glif qafAfrican-ar.fina qafA_frican-ar.fina.glif qafAfrican-ar.init qafA_frican-ar.init.glif qafAfrican-ar.init.alt qafA_frican-ar.init.alt.glif qafAfrican-ar.medi qafA_frican-ar.medi.glif qafDotabove-ar qafD_otabove-ar.glif qafDotabove-ar.fina qafD_otabove-ar.fina.glif qafDotabove-ar.init qafD_otabove-ar.init.glif qafDotabove-ar.init.alt qafD_otabove-ar.init.alt.glif qafDotabove-ar.medi qafD_otabove-ar.medi.glif qafDotbelow-ar qafD_otbelow-ar.glif qafDotbelow-ar.fina qafD_otbelow-ar.fina.glif qafDotbelow-ar.init qafD_otbelow-ar.init.glif qafDotbelow-ar.medi qafD_otbelow-ar.medi.glif qafDotless-ar qafD_otless-ar.glif qafDotless-ar.fina qafD_otless-ar.fina.glif qafDotless-ar.init qafD_otless-ar.init.glif qafDotless-ar.init.alt qafD_otless-ar.init.alt.glif qafDotless-ar.medi qafD_otless-ar.medi.glif qafThreedotsabove-ar qafT_hreedotsabove-ar.glif qafThreedotsabove-ar.fina qafT_hreedotsabove-ar.fina.glif qafThreedotsabove-ar.init qafT_hreedotsabove-ar.init.glif qafThreedotsabove-ar.medi qafT_hreedotsabove-ar.medi.glif qamats-hb qamats-hb.glif qamatsqatan-hb qamatsqatan-hb.glif qof-hb qof-hb.glif qofdagesh-hb qofdagesh-hb.glif question question.glif question-ar question-ar.glif question_colon.liga question_colon.liga.glif question_equal.liga question_equal.liga.glif question_period.liga question_period.liga.glif question_question.liga question_question.liga.glif question_question_equal.liga question_question_equal.liga.glif questiondown questiondown.glif questiongreek questiongreek.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif ratio ratio.glif ray-ar ray-ar.glif rcaron rcaron.glif rcommaaccent rcommaaccent.glif rdotbelow rdotbelow.glif recordSeparatorControl recordS_eparatorC_ontrol.glif registered registered.glif reh-ar reh-ar.glif reh-ar.fina reh-ar.fina.glif rehAlefabove-ar rehA_lefabove-ar.glif rehAlefabove-ar.fina rehA_lefabove-ar.fina.glif rehDotbelow-ar rehD_otbelow-ar.glif rehDotbelow-ar.fina rehD_otbelow-ar.fina.glif rehDotbelowdotabove-ar rehD_otbelowdotabove-ar.glif rehDotbelowdotabove-ar.fina rehD_otbelowdotabove-ar.fina.glif rehFourdots-ar rehF_ourdots-ar.glif rehFourdots-ar.fina rehF_ourdots-ar.fina.glif rehHamzaabove-ar rehH_amzaabove-ar.glif rehHamzaabove-ar.fina rehH_amzaabove-ar.fina.glif rehLoop-ar rehL_oop-ar.glif rehLoop-ar.fina rehL_oop-ar.fina.glif rehRing-ar rehR_ing-ar.glif rehRing-ar.fina rehR_ing-ar.fina.glif rehStroke-ar rehS_troke-ar.glif rehStroke-ar.fina rehS_troke-ar.fina.glif rehTwodots-ar rehT_wodots-ar.glif rehTwodots-ar.fina rehT_wodots-ar.fina.glif rehTwodotshorizontalaboveTahabove-ar rehT_wodotshorizontalaboveT_ahabove-ar.glif rehTwodotshorizontalaboveTahabove-ar.fina rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif rehTwodotsverticalabove-ar rehT_wodotsverticalabove-ar.glif rehTwodotsverticalabove-ar.fina rehT_wodotsverticalabove-ar.fina.glif rehVbelow-ar rehV_below-ar.glif rehVbelow-ar.fina rehV_below-ar.fina.glif rehVinvertedabove-ar rehV_invertedabove-ar.glif rehVinvertedabove-ar.fina rehV_invertedabove-ar.fina.glif rehv-ar rehv-ar.glif rehv-ar.fina rehv-ar.fina.glif replacementCharacter replacementC_haracter.glif resh-hb resh-hb.glif reshdagesh-hb reshdagesh-hb.glif returnsymbol returnsymbol.glif reversedRotatedFloralHeartBullet reversedR_otatedF_loralH_eartB_ullet.glif rho rho.glif rightArrow rightA_rrow.glif rightBlackPointer rightB_lackP_ointer.glif rightBlackSmallTriangle rightB_lackS_mallT_riangle.glif rightBlackTriangle rightB_lackT_riangle.glif rightBlock rightB_lock.glif rightBlock.stypo rightB_lock.stypo.glif rightHalfBlackCircle rightH_alfB_lackC_ircle.glif rightHalfBlackDiamond rightH_alfB_lackD_iamond.glif rightHalfBlackSquare rightH_alfB_lackS_quare.glif rightHalfBlackWhiteCircle rightH_alfB_lackW_hiteC_ircle.glif rightOneEighthBlock rightO_neE_ighthB_lock.glif rightOneEighthBlock.stypo rightO_neE_ighthB_lock.stypo.glif rightWhitePointer rightW_hiteP_ointer.glif rightWhiteSmallTriangle rightW_hiteS_mallT_riangle.glif rightWhiteTriangle rightW_hiteT_riangle.glif ring ring.glif ringArabic ringA_rabic.glif ringbelowcomb ringbelowcomb.glif ringcomb ringcomb.glif ringcomb.case ringcomb.case.glif rnoon-ar rnoon-ar.glif rnoon-ar.fina rnoon-ar.fina.glif rnoon-ar.init rnoon-ar.init.glif rnoon-ar.init.alt rnoon-ar.init.alt.glif rnoon-ar.medi rnoon-ar.medi.glif rotatedFloralHeartBullet rotatedF_loralH_eartB_ullet.glif rreh-ar rreh-ar.glif rreh-ar.fina rreh-ar.fina.glif ruble ruble.glif rupee rupee.glif rupeeIndian rupeeI_ndian.glif s s.glif sacute sacute.glif sacute.loclPLK sacute.loclP_L_K_.glif sad-ar sad-ar.glif sad-ar.alt sad-ar.alt.glif sad-ar.fina sad-ar.fina.glif sad-ar.fina.alt sad-ar.fina.alt.glif sad-ar.init sad-ar.init.glif sad-ar.medi sad-ar.medi.glif sadThreedots-ar sadT_hreedots-ar.glif sadThreedots-ar.alt sadT_hreedots-ar.alt.glif sadThreedots-ar.fina sadT_hreedots-ar.fina.glif sadThreedots-ar.fina.alt sadT_hreedots-ar.fina.alt.glif sadThreedots-ar.init sadT_hreedots-ar.init.glif sadThreedots-ar.medi sadT_hreedots-ar.medi.glif sadThreedotsbelow-ar sadT_hreedotsbelow-ar.glif sadThreedotsbelow-ar.alt sadT_hreedotsbelow-ar.alt.glif sadThreedotsbelow-ar.fina sadT_hreedotsbelow-ar.fina.glif sadThreedotsbelow-ar.fina.alt sadT_hreedotsbelow-ar.fina.alt.glif sadThreedotsbelow-ar.init sadT_hreedotsbelow-ar.init.glif sadThreedotsbelow-ar.medi sadT_hreedotsbelow-ar.medi.glif sadTwodotsbelow-ar sadT_wodotsbelow-ar.glif sadTwodotsbelow-ar.alt sadT_wodotsbelow-ar.alt.glif sadTwodotsbelow-ar.fina sadT_wodotsbelow-ar.fina.glif sadTwodotsbelow-ar.fina.alt sadT_wodotsbelow-ar.fina.alt.glif sadTwodotsbelow-ar.init sadT_wodotsbelow-ar.init.glif sadTwodotsbelow-ar.medi sadT_wodotsbelow-ar.medi.glif samekh-hb samekh-hb.glif samekhdagesh-hb samekhdagesh-hb.glif samvat-ar samvat-ar.glif scaron scaron.glif scedilla scedilla.glif schwa schwa.glif schwa-cy schwa-cy.glif scircumflex scircumflex.glif scommaaccent scommaaccent.glif sdotbelow sdotbelow.glif second second.glif section section.glif seen-ar seen-ar.glif seen-ar.alt seen-ar.alt.glif seen-ar.fina seen-ar.fina.glif seen-ar.fina.alt seen-ar.fina.alt.glif seen-ar.init seen-ar.init.glif seen-ar.medi seen-ar.medi.glif seenDotbelowDotabove-ar seenD_otbelowD_otabove-ar.glif seenDotbelowDotabove-ar.alt seenD_otbelowD_otabove-ar.alt.glif seenDotbelowDotabove-ar.fina seenD_otbelowD_otabove-ar.fina.glif seenDotbelowDotabove-ar.fina.alt seenD_otbelowD_otabove-ar.fina.alt.glif seenDotbelowDotabove-ar.init seenD_otbelowD_otabove-ar.init.glif seenDotbelowDotabove-ar.medi seenD_otbelowD_otabove-ar.medi.glif seenFourabove-ar seenF_ourabove-ar.glif seenFourabove-ar.alt seenF_ourabove-ar.alt.glif seenFourabove-ar.fina seenF_ourabove-ar.fina.glif seenFourabove-ar.fina.alt seenF_ourabove-ar.fina.alt.glif seenFourabove-ar.init seenF_ourabove-ar.init.glif seenFourabove-ar.medi seenF_ourabove-ar.medi.glif seenFourdotsabove-ar seenF_ourdotsabove-ar.glif seenFourdotsabove-ar.alt seenF_ourdotsabove-ar.alt.glif seenFourdotsabove-ar.fina seenF_ourdotsabove-ar.fina.glif seenFourdotsabove-ar.fina.alt seenF_ourdotsabove-ar.fina.alt.glif seenFourdotsabove-ar.init seenF_ourdotsabove-ar.init.glif seenFourdotsabove-ar.medi seenF_ourdotsabove-ar.medi.glif seenTahTwodotshorizontalabove-ar seenT_ahT_wodotshorizontalabove-ar.glif seenTahTwodotshorizontalabove-ar.alt seenT_ahT_wodotshorizontalabove-ar.alt.glif seenTahTwodotshorizontalabove-ar.fina seenT_ahT_wodotshorizontalabove-ar.fina.glif seenTahTwodotshorizontalabove-ar.fina.alt seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif seenTahTwodotshorizontalabove-ar.init seenT_ahT_wodotshorizontalabove-ar.init.glif seenTahTwodotshorizontalabove-ar.medi seenT_ahT_wodotshorizontalabove-ar.medi.glif seenThreedotsbelow-ar seenT_hreedotsbelow-ar.glif seenThreedotsbelow-ar.alt seenT_hreedotsbelow-ar.alt.glif seenThreedotsbelow-ar.fina seenT_hreedotsbelow-ar.fina.glif seenThreedotsbelow-ar.fina.alt seenT_hreedotsbelow-ar.fina.alt.glif seenThreedotsbelow-ar.init seenT_hreedotsbelow-ar.init.glif seenThreedotsbelow-ar.medi seenT_hreedotsbelow-ar.medi.glif seenThreedotsbelowthreedots-ar seenT_hreedotsbelowthreedots-ar.glif seenThreedotsbelowthreedots-ar.alt seenT_hreedotsbelowthreedots-ar.alt.glif seenThreedotsbelowthreedots-ar.fina seenT_hreedotsbelowthreedots-ar.fina.glif seenThreedotsbelowthreedots-ar.fina.alt seenT_hreedotsbelowthreedots-ar.fina.alt.glif seenThreedotsbelowthreedots-ar.init seenT_hreedotsbelowthreedots-ar.init.glif seenThreedotsbelowthreedots-ar.medi seenT_hreedotsbelowthreedots-ar.medi.glif seenTwodotshorizontalabove-ar seenT_wodotshorizontalabove-ar.glif seenTwodotshorizontalabove-ar.fina seenT_wodotshorizontalabove-ar.fina.glif seenTwodotshorizontalabove-ar.init seenT_wodotshorizontalabove-ar.init.glif seenTwodotshorizontalabove-ar.medi seenT_wodotshorizontalabove-ar.medi.glif seenTwodotsverticalabove-ar.alt seenT_wodotsverticalabove-ar.alt.glif seenTwodotsverticalabove-ar.fina.alt seenT_wodotsverticalabove-ar.fina.alt.glif seenVinvertedabove-ar seenV_invertedabove-ar.glif seenVinvertedabove-ar.alt seenV_invertedabove-ar.alt.glif seenVinvertedabove-ar.fina seenV_invertedabove-ar.fina.glif seenVinvertedabove-ar.fina.alt seenV_invertedabove-ar.fina.alt.glif seenVinvertedabove-ar.init seenV_invertedabove-ar.init.glif seenVinvertedabove-ar.medi seenV_invertedabove-ar.medi.glif semicolon semicolon.glif semicolon-ar semicolon-ar.glif semicolon_semicolon.liga semicolon_semicolon.liga.glif seven seven.glif seven-ar seven-ar.glif seven-arinferior seven-arinferior.glif seven-arsuperior seven-arsuperior.glif seven-persian seven-persian.glif seven-persian.urdu seven-persian.urdu.glif seven-persian.urduinferior seven-persian.urduinferior.glif seven-persian.urdusuperior seven-persian.urdusuperior.glif seven-persianinferior seven-persianinferior.glif seven-persiansuperior seven-persiansuperior.glif seven.dnom seven.dnom.glif seven.numr seven.numr.glif seveneighths seveneighths.glif seveneighths.BRACKET.500 seveneighths.B_R_A_C_K_E_T_.500.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sha-cy sha-cy.glif sha-cy.loclBGR sha-cy.loclB_G_R_.glif shadda-ar shadda-ar.glif shadedark shadedark.glif shadedark.stypo shadedark.stypo.glif shadelight shadelight.glif shadelight.stypo shadelight.stypo.glif shademedium shademedium.glif shademedium.stypo shademedium.stypo.glif shcha-cy shcha-cy.glif shcha-cy.loclBGR shcha-cy.loclB_G_R_.glif sheen-ar sheen-ar.glif sheen-ar.alt sheen-ar.alt.glif sheen-ar.fina sheen-ar.fina.glif sheen-ar.fina.alt sheen-ar.fina.alt.glif sheen-ar.init sheen-ar.init.glif sheen-ar.medi sheen-ar.medi.glif sheenDotbelow-ar sheenD_otbelow-ar.glif sheenDotbelow-ar.alt sheenD_otbelow-ar.alt.glif sheenDotbelow-ar.fina sheenD_otbelow-ar.fina.glif sheenDotbelow-ar.fina.alt sheenD_otbelow-ar.fina.alt.glif sheenDotbelow-ar.init sheenD_otbelow-ar.init.glif sheenDotbelow-ar.medi sheenD_otbelow-ar.medi.glif sheqel sheqel.glif shha-cy shha-cy.glif shiftInControl shiftI_nC_ontrol.glif shiftInControl.ss20 shiftI_nC_ontrol.ss20.glif shiftOutControl shiftO_utC_ontrol.glif shiftOutControl.ss20 shiftO_utC_ontrol.ss20.glif shin-hb shin-hb.glif shindagesh-hb shindagesh-hb.glif shindageshshindot-hb shindageshshindot-hb.glif shindageshsindot-hb shindageshsindot-hb.glif shindot-hb shindot-hb.glif shinshindot-hb shinshindot-hb.glif shinsindot-hb shinsindot-hb.glif sigma sigma.glif sigmafinal sigmafinal.glif sindhiampersand-ar sindhiampersand-ar.glif sindhipostpositionmen-ar sindhipostpositionmen-ar.glif sindot-hb sindot-hb.glif six six.glif six-ar six-ar.glif six-arinferior six-arinferior.glif six-arsuperior six-arsuperior.glif six-persian six-persian.glif six-persianinferior six-persianinferior.glif six-persiansuperior six-persiansuperior.glif six.dnom six.dnom.glif six.numr six.numr.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif slash_asterisk.liga slash_asterisk.liga.glif slash_backslash.liga slash_backslash.liga.glif slash_equal_end.seq slash_equal_end.seq.glif slash_equal_middle.seq slash_equal_middle.seq.glif slash_equal_start.seq slash_equal_start.seq.glif slash_greater.liga slash_greater.liga.glif slash_slash.liga slash_slash.liga.glif slash_slash_equal_end.seq slash_slash_equal_end.seq.glif slash_slash_equal_middle.seq slash_slash_equal_middle.seq.glif slash_slash_equal_start.seq slash_slash_equal_start.seq.glif slash_slash_slash.liga slash_slash_slash.liga.glif softhyphen softhyphen.glif softsign-cy softsign-cy.glif softsign-cy.loclBGR softsign-cy.loclB_G_R_.glif space space.glif spaceControl spaceC_ontrol.glif spadeBlackSuit spadeB_lackS_uit.glif startOfHeadingControl startO_fH_eadingC_ontrol.glif startOfHeadingControl.ss20 startO_fH_eadingC_ontrol.ss20.glif startOfTextControl startO_fT_extC_ontrol.glif startOfTextControl.ss20 startO_fT_extC_ontrol.ss20.glif sterling sterling.glif strictlyequivalentto strictlyequivalentto.glif substituteControl substituteC_ontrol.glif substituteControl.ss20 substituteC_ontrol.ss20.glif substituteFormTwoControl substituteF_ormT_woC_ontrol.glif sukun-ar sukun-ar.glif summation summation.glif sunWithRays sunW_ithR_ays.glif synchronousIdleControl synchronousI_dleC_ontrol.glif synchronousIdleControl.ss20 synchronousI_dleC_ontrol.ss20.glif t t.glif tah-ar tah-ar.glif tah-ar.fina tah-ar.fina.glif tah-ar.init tah-ar.init.glif tah-ar.medi tah-ar.medi.glif tahThreedots-ar tahT_hreedots-ar.glif tahThreedots-ar.fina tahT_hreedots-ar.fina.glif tahThreedots-ar.init tahT_hreedots-ar.init.glif tahThreedots-ar.medi tahT_hreedots-ar.medi.glif tahTwodotsabove-ar tahT_wodotsabove-ar.glif tahTwodotsabove-ar.fina tahT_wodotsabove-ar.fina.glif tahTwodotsabove-ar.init tahT_wodotsabove-ar.init.glif tahTwodotsabove-ar.medi tahT_wodotsabove-ar.medi.glif tahbelow-ar tahbelow-ar.glif tahcenter-ar tahcenter-ar.glif tau tau.glif tav-hb tav-hb.glif tavdagesh-hb tavdagesh-hb.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcheh-ar tcheh-ar.glif tcheh-ar.fina tcheh-ar.fina.glif tcheh-ar.init tcheh-ar.init.glif tcheh-ar.medi tcheh-ar.medi.glif tchehDotabove-ar tchehD_otabove-ar.glif tchehDotabove-ar.fina tchehD_otabove-ar.fina.glif tchehDotabove-ar.init tchehD_otabove-ar.init.glif tchehDotabove-ar.medi tchehD_otabove-ar.medi.glif tcheheh-ar tcheheh-ar.glif tcheheh-ar.fina tcheheh-ar.fina.glif tcheheh-ar.init tcheheh-ar.init.glif tcheheh-ar.medi tcheheh-ar.medi.glif tcommaaccent tcommaaccent.glif te-cy te-cy.glif te-cy.loclBGR te-cy.loclB_G_R_.glif teh-ar teh-ar.glif teh-ar.alt teh-ar.alt.glif teh-ar.fina teh-ar.fina.glif teh-ar.fina.alt teh-ar.fina.alt.glif teh-ar.init teh-ar.init.glif teh-ar.init.alt teh-ar.init.alt.glif teh-ar.medi teh-ar.medi.glif tehMarbuta-ar tehM_arbuta-ar.glif tehMarbuta-ar.fina tehM_arbuta-ar.fina.glif tehMarbutagoal-ar tehM_arbutagoal-ar.glif tehMarbutagoal-ar.fina tehM_arbutagoal-ar.fina.glif tehRing-ar tehR_ing-ar.glif tehRing-ar.alt tehR_ing-ar.alt.glif tehRing-ar.fina tehR_ing-ar.fina.glif tehRing-ar.fina.alt tehR_ing-ar.fina.alt.glif tehRing-ar.init tehR_ing-ar.init.glif tehRing-ar.init.alt tehR_ing-ar.init.alt.glif tehRing-ar.medi tehR_ing-ar.medi.glif tehTehabove-ar tehT_ehabove-ar.glif tehTehabove-ar.alt tehT_ehabove-ar.alt.glif tehTehabove-ar.fina tehT_ehabove-ar.fina.glif tehTehabove-ar.fina.alt tehT_ehabove-ar.fina.alt.glif tehTehabove-ar.init tehT_ehabove-ar.init.glif tehTehabove-ar.init.alt tehT_ehabove-ar.init.alt.glif tehTehabove-ar.medi tehT_ehabove-ar.medi.glif tehThreedotsdown-ar tehT_hreedotsdown-ar.glif tehThreedotsdown-ar.alt tehT_hreedotsdown-ar.alt.glif tehThreedotsdown-ar.fina tehT_hreedotsdown-ar.fina.glif tehThreedotsdown-ar.fina.alt tehT_hreedotsdown-ar.fina.alt.glif tehThreedotsdown-ar.init tehT_hreedotsdown-ar.init.glif tehThreedotsdown-ar.init.alt tehT_hreedotsdown-ar.init.alt.glif tehThreedotsdown-ar.medi tehT_hreedotsdown-ar.medi.glif tehThreedotsupbelow-ar tehT_hreedotsupbelow-ar.glif tehThreedotsupbelow-ar.alt tehT_hreedotsupbelow-ar.alt.glif tehThreedotsupbelow-ar.fina tehT_hreedotsupbelow-ar.fina.glif tehThreedotsupbelow-ar.fina.alt tehT_hreedotsupbelow-ar.fina.alt.glif tehThreedotsupbelow-ar.init tehT_hreedotsupbelow-ar.init.glif tehThreedotsupbelow-ar.init.alt tehT_hreedotsupbelow-ar.init.alt.glif tehThreedotsupbelow-ar.medi tehT_hreedotsupbelow-ar.medi.glif tehabove-ar.small tehabove-ar.small.glif teheh-ar teheh-ar.glif teheh-ar.alt teheh-ar.alt.glif teheh-ar.fina teheh-ar.fina.glif teheh-ar.fina.alt teheh-ar.fina.alt.glif teheh-ar.init teheh-ar.init.glif teheh-ar.init.alt teheh-ar.init.alt.glif teheh-ar.medi teheh-ar.medi.glif tenge tenge.glif tesh tesh.glif tet-hb tet-hb.glif tetdagesh-hb tetdagesh-hb.glif thal-ar thal-ar.glif thal-ar.fina thal-ar.fina.glif thalAlefabove-ar thalA_lefabove-ar.glif thalAlefabove-ar.fina thalA_lefabove-ar.fina.glif theh-ar theh-ar.glif theh-ar.alt theh-ar.alt.glif theh-ar.fina theh-ar.fina.glif theh-ar.fina.alt theh-ar.fina.alt.glif theh-ar.init theh-ar.init.glif theh-ar.init.alt theh-ar.init.alt.glif theh-ar.medi theh-ar.medi.glif theta theta.glif thetamod thetamod.glif thorn thorn.glif thousandseparator-ar thousandseparator-ar.glif three three.glif three-ar three-ar.glif three-arinferior three-arinferior.glif three-arsuperior three-arsuperior.glif three-persian three-persian.glif three-persian.small01 three-persian.small01.glif three-persianinferior three-persianinferior.glif three-persiansuperior three-persiansuperior.glif three.dnom three.dnom.glif three.half three.half.glif three.numr three.numr.glif threedots-ar threedots-ar.glif threedotsdownabove-ar threedotsdownabove-ar.glif threedotsdownbelow-ar threedotsdownbelow-ar.glif threedotsdowncenter-ar threedotsdowncenter-ar.glif threedotsupabove-ar threedotsupabove-ar.glif threedotsupabove-ar.v2 threedotsupabove-ar.v2.glif threedotsupbelow-ar threedotsupbelow-ar.glif threedotsupcenter-ar threedotsupcenter-ar.glif threeeighths threeeighths.glif threeeighths.BRACKET.500 threeeighths.B_R_A_C_K_E_T_.500.glif threeinferior threeinferior.glif threequarters threequarters.glif threequarters.BRACKET.500 threequarters.B_R_A_C_K_E_T_.500.glif threesuperior threesuperior.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.case tildecomb.case.glif tonos tonos.glif tonos.case tonos.case.glif topHalfBlackCircle topH_alfB_lackC_ircle.glif topHalfBlackDiamond topH_alfB_lackD_iamond.glif topHalfWhiteSquare topH_alfW_hiteS_quare.glif topRightHalfWhiteSquare topR_ightH_alfW_hiteS_quare.glif trademark trademark.glif tsadi-hb tsadi-hb.glif tsadidagesh-hb tsadidagesh-hb.glif tse-cy tse-cy.glif tse-cy.loclBGR tse-cy.loclB_G_R_.glif tshe-cy tshe-cy.glif tteh-ar tteh-ar.glif tteh-ar.alt tteh-ar.alt.glif tteh-ar.fina tteh-ar.fina.glif tteh-ar.fina.alt tteh-ar.fina.alt.glif tteh-ar.init tteh-ar.init.glif tteh-ar.init.alt tteh-ar.init.alt.glif tteh-ar.medi tteh-ar.medi.glif tteheh-ar tteheh-ar.glif tteheh-ar.alt tteheh-ar.alt.glif tteheh-ar.fina tteheh-ar.fina.glif tteheh-ar.fina.alt tteheh-ar.fina.alt.glif tteheh-ar.init tteheh-ar.init.glif tteheh-ar.init.alt tteheh-ar.init.alt.glif tteheh-ar.medi tteheh-ar.medi.glif tugrik tugrik.glif two two.glif two-ar two-ar.glif two-arinferior two-arinferior.glif two-arsuperior two-arsuperior.glif two-persian two-persian.glif two-persian.small01 two-persian.small01.glif two-persianinferior two-persianinferior.glif two-persiansuperior two-persiansuperior.glif two.dnom two.dnom.glif two.half two.half.glif two.numr two.numr.glif twodotshorizontalabove-ar twodotshorizontalabove-ar.glif twodotshorizontalabove-ar.v2 twodotshorizontalabove-ar.v2.glif twodotshorizontalbelow-ar twodotshorizontalbelow-ar.glif twodotshorizontalcenter-ar twodotshorizontalcenter-ar.glif twodotstahbelow-ar twodotstahbelow-ar.glif twodotstahcenter-ar twodotstahcenter-ar.glif twodotsverticalabove-ar twodotsverticalabove-ar.glif twodotsverticalbelow-ar twodotsverticalbelow-ar.glif twodotsverticalcenter-ar twodotsverticalcenter-ar.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif u-ar u-ar.glif u-ar.fina u-ar.fina.glif u-cy u-cy.glif uHamzaabove-ar uH_amzaabove-ar.glif uHamzaabove-ar.fina uH_amzaabove-ar.fina.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhookabove uhookabove.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhookabove uhornhookabove.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif umacron-cy umacron-cy.glif underscore underscore.glif underscore_end.seq underscore_end.seq.glif underscore_middle.seq underscore_middle.seq.glif underscore_start.seq underscore_start.seq.glif underscore_underscore.liga underscore_underscore.liga.glif underscoredbl underscoredbl.glif uni08B3 uni08B_3.glif uni08B3.fina uni08B_3.fina.glif uni08B3.init uni08B_3.init.glif uni08B3.medi uni08B_3.medi.glif uni08B4 uni08B_4.glif uni08B4.fina uni08B_4.fina.glif uni08B4.init uni08B_4.init.glif uni08B4.medi uni08B_4.medi.glif uni08B9.fina uni08B_9.fina.glif uniFBC0 uniF_B_C_0.glif unitSeparatorControl unitS_eparatorC_ontrol.glif uogonek uogonek.glif upArrow upA_rrow.glif upBlackSmallTriangle upB_lackS_mallT_riangle.glif upBlackTriangle upB_lackT_riangle.glif upDashArrow upD_ashA_rrow.glif upDownArrow upD_ownA_rrow.glif upDownbaseArrow upD_ownbaseA_rrow.glif upLeftHalfBlackTriangle upL_eftH_alfB_lackT_riangle.glif upRightHalfBlackTriangle upR_ightH_alfB_lackT_riangle.glif upWhiteSmallTriangle upW_hiteS_mallT_riangle.glif upWhiteTriangle upW_hiteT_riangle.glif upWhiteTriangleWithDot upW_hiteT_riangleW_ithD_ot.glif upperHalfArc upperH_alfA_rc.glif upperHalfBlackWhiteCircle upperH_alfB_lackW_hiteC_ircle.glif upperHalfBlock upperH_alfB_lock.glif upperHalfBlock.stypo upperH_alfB_lock.stypo.glif upperHalfInverseWhiteCircle upperH_alfI_nverseW_hiteC_ircle.glif upperLeftAndLowerLeftAndLowerRightBlock upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndLowerRightBlock upperL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndUpperRightAndLowerLeftBlock upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif upperLeftAndUpperRightAndLowerLeftBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperLeftAndUpperRightAndLowerRightBlock upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif upperLeftAndUpperRightAndLowerRightBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif upperLeftArc upperL_eftA_rc.glif upperLeftBlackTriangle upperL_eftB_lackT_riangle.glif upperLeftBlock upperL_eftB_lock.glif upperLeftBlock.stypo upperL_eftB_lock.stypo.glif upperLeftDiagonalHalfBlackSquare upperL_eftD_iagonalH_alfB_lackS_quare.glif upperLeftQuadrantWhiteCircle upperL_eftQ_uadrantW_hiteC_ircle.glif upperLeftTriangle upperL_eftT_riangle.glif upperLeftWhiteCircle upperL_eftW_hiteC_ircle.glif upperOneEighthBlock upperO_neE_ighthB_lock.glif upperOneEighthBlock.stypo upperO_neE_ighthB_lock.stypo.glif upperRightAndLowerLeftAndLowerRightBlock upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperRightAndLowerLeftAndLowerRightBlock.stypo upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperRightAndLowerLeftBlock upperR_ightA_ndL_owerL_eftB_lock.glif upperRightAndLowerLeftBlock.stypo upperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperRightArc upperR_ightA_rc.glif upperRightBlackCircle upperR_ightB_lackC_ircle.glif upperRightBlackTriangle upperR_ightB_lackT_riangle.glif upperRightBlock upperR_ightB_lock.glif upperRightBlock.stypo upperR_ightB_lock.stypo.glif upperRightQuadrantWhiteCircle upperR_ightQ_uadrantW_hiteC_ircle.glif upperRightTriangle upperR_ightT_riangle.glif upperlefttolowerrightFillSquare upperlefttolowerrightF_illS_quare.glif upperrighttolowerleftFillSquare upperrighttolowerleftF_illS_quare.glif upsilon upsilon.glif upsilon-latin upsilon-latin.glif upsilondieresis upsilondieresis.glif upsilondieresistonos upsilondieresistonos.glif upsilontonos upsilontonos.glif uring uring.glif ushort-cy ushort-cy.glif ustraight-cy ustraight-cy.glif ustraightstroke-cy ustraightstroke-cy.glif utilde utilde.glif v v.glif vabove-ar vabove-ar.glif vav-hb vav-hb.glif vavdagesh-hb vavdagesh-hb.glif vavholam-hb vavholam-hb.glif ve-ar ve-ar.glif ve-ar.fina ve-ar.fina.glif ve-cy ve-cy.glif ve-cy.loclBGR ve-cy.loclB_G_R_.glif vectorOrCrossProduct vectorO_rC_rossP_roduct.glif veh-ar veh-ar.glif veh-ar.alt veh-ar.alt.glif veh-ar.fina veh-ar.fina.glif veh-ar.fina.alt veh-ar.fina.alt.glif veh-ar.init veh-ar.init.glif veh-ar.init.alt veh-ar.init.alt.glif veh-ar.medi veh-ar.medi.glif venus venus.glif verseComma-ar verseC_omma-ar.glif verticalBisectingLineWhiteSquare verticalB_isectingL_ineW_hiteS_quare.glif verticalFillCircle verticalF_illC_ircle.glif verticalFillSquare verticalF_illS_quare.glif verticalTabulationControl verticalT_abulationC_ontrol.glif verticalTabulationControl.ss20 verticalT_abulationC_ontrol.ss20.glif vhook vhook.glif vinvertedabove-ar vinvertedabove-ar.glif vturned vturned.glif w w.glif w_w_w.liga w_w_w.liga.glif wacute wacute.glif wasla-ar wasla-ar.glif wavyhamzaabove-ar wavyhamzaabove-ar.glif wavyhamzabelow-ar wavyhamzabelow-ar.glif waw-ar waw-ar.glif waw-ar.fina waw-ar.fina.glif wawDotabove-ar wawD_otabove-ar.glif wawDotabove-ar.fina wawD_otabove-ar.fina.glif wawDotcenter-ar wawD_otcenter-ar.glif wawDotcenter-ar.fina wawD_otcenter-ar.fina.glif wawHamzaabove-ar wawH_amzaabove-ar.glif wawHamzaabove-ar.fina wawH_amzaabove-ar.fina.glif wawStraight-ar wawS_traight-ar.glif wawThreeAbove-ar wawT_hreeA_bove-ar.glif wawThreeAbove-ar.fina wawT_hreeA_bove-ar.fina.glif wawTwoabove-ar wawT_woabove-ar.glif wawTwoabove-ar.fina wawT_woabove-ar.fina.glif wawTwodots-ar wawT_wodots-ar.glif wawTwodots-ar.fina wawT_wodots-ar.fina.glif wawring-ar wawring-ar.glif wawring-ar.fina wawring-ar.fina.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif whiteBullet whiteB_ullet.glif whiteCircle whiteC_ircle.glif whiteDiamond whiteD_iamond.glif whiteHexagon whiteH_exagon.glif whiteHorizontalEllipse whiteH_orizontalE_llipse.glif whiteInBlackSquare whiteI_nB_lackS_quare.glif whiteLargeSquare whiteL_argeS_quare.glif whiteLowerLeftQuadrantSquare whiteL_owerL_eftQ_uadrantS_quare.glif whiteLowerRightQuadrantSquare whiteL_owerR_ightQ_uadrantS_quare.glif whiteMediumDiamond whiteM_ediumD_iamond.glif whiteMediumLozenge whiteM_ediumL_ozenge.glif whiteParallelogram whiteP_arallelogram.glif whitePentagon whiteP_entagon.glif whiteRect whiteR_ect.glif whiteRoundedCornersSquare whiteR_oundedC_ornersS_quare.glif whiteSmallLozenge whiteS_mallL_ozenge.glif whiteSmallSquare whiteS_mallS_quare.glif whiteSmilingFace whiteS_milingF_ace.glif whiteSquare whiteS_quare.glif whiteUpperLeftQuadrantSquare whiteU_pperL_eftQ_uadrantS_quare.glif whiteUpperRightQuadrantSquare whiteU_pperR_ightQ_uadrantS_quare.glif whiteVerticalEllipse whiteV_erticalE_llipse.glif whiteVerticalRect whiteV_erticalR_ect.glif whiteVerysmallSquare whiteV_erysmallS_quare.glif wmod wmod.glif won won.glif x x.glif x.multiply x.multiply.glif xi xi.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif year-ar year-ar.glif yeh-ar yeh-ar.glif yeh-ar.fina yeh-ar.fina.glif yeh-ar.fina.alt yeh-ar.fina.alt.glif yeh-ar.init yeh-ar.init.glif yeh-ar.init.alt yeh-ar.init.alt.glif yeh-ar.medi yeh-ar.medi.glif yeh-farsi yeh-farsi.glif yeh-farsi.fina yeh-farsi.fina.glif yeh-farsi.fina.alt yeh-farsi.fina.alt.glif yeh-farsi.init yeh-farsi.init.glif yeh-farsi.init.alt yeh-farsi.init.alt.glif yeh-farsi.medi yeh-farsi.medi.glif yehFourbelow-farsi yehF_ourbelow-farsi.glif yehFourbelow-farsi.fina yehF_ourbelow-farsi.fina.glif yehFourbelow-farsi.fina.alt yehF_ourbelow-farsi.fina.alt.glif yehFourbelow-farsi.init yehF_ourbelow-farsi.init.glif yehFourbelow-farsi.init.alt yehF_ourbelow-farsi.init.alt.glif yehFourbelow-farsi.medi yehF_ourbelow-farsi.medi.glif yehHamzaabove-ar yehH_amzaabove-ar.glif yehHamzaabove-ar.fina yehH_amzaabove-ar.fina.glif yehHamzaabove-ar.fina.alt yehH_amzaabove-ar.fina.alt.glif yehHamzaabove-ar.init yehH_amzaabove-ar.init.glif yehHamzaabove-ar.init.alt yehH_amzaabove-ar.init.alt.glif yehHamzaabove-ar.medi yehH_amzaabove-ar.medi.glif yehKashmiri-ar yehK_ashmiri-ar.glif yehKashmiri-ar.fina yehK_ashmiri-ar.fina.glif yehKashmiri-ar.fina.alt yehK_ashmiri-ar.fina.alt.glif yehKashmiri-ar.init yehK_ashmiri-ar.init.glif yehKashmiri-ar.init.alt yehK_ashmiri-ar.init.alt.glif yehKashmiri-ar.medi yehK_ashmiri-ar.medi.glif yehRohingya-ar yehR_ohingya-ar.glif yehRohingya-ar.fina yehR_ohingya-ar.fina.glif yehRohingya-ar.isol yehR_ohingya-ar.isol.glif yehTail-ar yehT_ail-ar.glif yehTail-ar.fina yehT_ail-ar.fina.glif yehTail-ar.fina.alt yehT_ail-ar.fina.alt.glif yehThreeabove-farsi yehT_hreeabove-farsi.glif yehThreeabove-farsi.fina yehT_hreeabove-farsi.fina.glif yehThreeabove-farsi.fina.alt yehT_hreeabove-farsi.fina.alt.glif yehThreeabove-farsi.init yehT_hreeabove-farsi.init.glif yehThreeabove-farsi.init.alt yehT_hreeabove-farsi.init.alt.glif yehThreeabove-farsi.medi yehT_hreeabove-farsi.medi.glif yehThreedotsabove-farsi yehT_hreedotsabove-farsi.glif yehThreedotsabove-farsi.fina yehT_hreedotsabove-farsi.fina.glif yehThreedotsabove-farsi.fina.alt yehT_hreedotsabove-farsi.fina.alt.glif yehThreedotsabove-farsi.init yehT_hreedotsabove-farsi.init.glif yehThreedotsabove-farsi.init.alt yehT_hreedotsabove-farsi.init.alt.glif yehThreedotsabove-farsi.medi yehT_hreedotsabove-farsi.medi.glif yehThreedotsbelow-ar yehT_hreedotsbelow-ar.glif yehThreedotsbelow-ar.fina yehT_hreedotsbelow-ar.fina.glif yehThreedotsbelow-ar.fina.alt yehT_hreedotsbelow-ar.fina.alt.glif yehThreedotsbelow-ar.init yehT_hreedotsbelow-ar.init.glif yehThreedotsbelow-ar.init.alt yehT_hreedotsbelow-ar.init.alt.glif yehThreedotsbelow-ar.medi yehT_hreedotsbelow-ar.medi.glif yehTwoabove-farsi yehT_woabove-farsi.glif yehTwoabove-farsi.fina yehT_woabove-farsi.fina.glif yehTwoabove-farsi.fina.alt yehT_woabove-farsi.fina.alt.glif yehTwoabove-farsi.init yehT_woabove-farsi.init.glif yehTwoabove-farsi.init.alt yehT_woabove-farsi.init.alt.glif yehTwoabove-farsi.medi yehT_woabove-farsi.medi.glif yehTwodotsabove-farsi yehT_wodotsabove-farsi.glif yehTwodotsabove-farsi.fina yehT_wodotsabove-farsi.fina.glif yehTwodotsabove-farsi.fina.alt yehT_wodotsabove-farsi.fina.alt.glif yehTwodotsabove-farsi.init yehT_wodotsabove-farsi.init.glif yehTwodotsabove-farsi.init.alt yehT_wodotsabove-farsi.init.alt.glif yehTwodotsabove-farsi.medi yehT_wodotsabove-farsi.medi.glif yehTwodotsbelowDotabove-ar yehT_wodotsbelowD_otabove-ar.glif yehTwodotsbelowDotabove-ar.fina yehT_wodotsbelowD_otabove-ar.fina.glif yehTwodotsbelowDotabove-ar.init yehT_wodotsbelowD_otabove-ar.init.glif yehTwodotsbelowDotabove-ar.init.alt yehT_wodotsbelowD_otabove-ar.init.alt.glif yehTwodotsbelowDotabove-ar.medi yehT_wodotsbelowD_otabove-ar.medi.glif yehTwodotsbelowHamzaabove-ar yehT_wodotsbelowH_amzaabove-ar.glif yehTwodotsbelowHamzaabove-ar.fina yehT_wodotsbelowH_amzaabove-ar.fina.glif yehTwodotsbelowHamzaabove-ar.init yehT_wodotsbelowH_amzaabove-ar.init.glif yehTwodotsbelowHamzaabove-ar.init.alt yehT_wodotsbelowH_amzaabove-ar.init.alt.glif yehTwodotsbelowHamzaabove-ar.medi yehT_wodotsbelowH_amzaabove-ar.medi.glif yehTwodotsbelowNoonabove-ar yehT_wodotsbelowN_oonabove-ar.glif yehTwodotsbelowNoonabove-ar.fina yehT_wodotsbelowN_oonabove-ar.fina.glif yehTwodotsbelowNoonabove-ar.fina.alt yehT_wodotsbelowN_oonabove-ar.fina.alt.glif yehTwodotsbelowNoonabove-ar.init yehT_wodotsbelowN_oonabove-ar.init.glif yehTwodotsbelowNoonabove-ar.init.alt yehT_wodotsbelowN_oonabove-ar.init.alt.glif yehTwodotsbelowNoonabove-ar.medi yehT_wodotsbelowN_oonabove-ar.medi.glif yehVabove-ar yehV_above-ar.glif yehVabove-ar.fina yehV_above-ar.fina.glif yehVabove-ar.fina.alt yehV_above-ar.fina.alt.glif yehVabove-ar.init yehV_above-ar.init.glif yehVabove-ar.init.alt yehV_above-ar.init.alt.glif yehVabove-ar.medi yehV_above-ar.medi.glif yehVinverted-farsi yehV_inverted-farsi.glif yehVinverted-farsi.fina yehV_inverted-farsi.fina.glif yehVinverted-farsi.fina.alt yehV_inverted-farsi.fina.alt.glif yehVinverted-farsi.init yehV_inverted-farsi.init.glif yehVinverted-farsi.init.alt yehV_inverted-farsi.init.alt.glif yehVinverted-farsi.medi yehV_inverted-farsi.medi.glif yehbarree-ar yehbarree-ar.glif yehbarree-ar.fina yehbarree-ar.fina.glif yehbarreeHamzaabove-ar yehbarreeH_amzaabove-ar.glif yehbarreeHamzaabove-ar.fina yehbarreeH_amzaabove-ar.fina.glif yehbarreeThreeabove-ar yehbarreeT_hreeabove-ar.glif yehbarreeThreeabove-ar.fina yehbarreeT_hreeabove-ar.fina.glif yehbarreeThreeabove-ar.init yehbarreeT_hreeabove-ar.init.glif yehbarreeThreeabove-ar.init.alt yehbarreeT_hreeabove-ar.init.alt.glif yehbarreeThreeabove-ar.medi yehbarreeT_hreeabove-ar.medi.glif yehbarreeTwoabove-ar yehbarreeT_woabove-ar.glif yehbarreeTwoabove-ar.fina yehbarreeT_woabove-ar.fina.glif yehbarreeTwoabove-ar.init yehbarreeT_woabove-ar.init.glif yehbarreeTwoabove-ar.init.alt yehbarreeT_woabove-ar.init.alt.glif yehbarreeTwoabove-ar.medi yehbarreeT_woabove-ar.medi.glif yen yen.glif yeru-cy yeru-cy.glif ygrave ygrave.glif yhookabove yhookabove.glif yi-cy yi-cy.glif ymacron ymacron.glif ymod ymod.glif yod-hb yod-hb.glif yoddagesh-hb yoddagesh-hb.glif ytilde ytilde.glif yu-ar yu-ar.glif yu-ar.fina yu-ar.fina.glif z z.glif zacute zacute.glif zacute.loclPLK zacute.loclP_L_K_.glif zah-ar zah-ar.glif zah-ar.fina zah-ar.fina.glif zah-ar.init zah-ar.init.glif zah-ar.medi zah-ar.medi.glif zain-ar zain-ar.glif zain-ar.fina zain-ar.fina.glif zainVInvertedabove-ar zainV_I_nvertedabove-ar.glif zainVInvertedabove-ar.fina zainV_I_nvertedabove-ar.fina.glif zayin-hb zayin-hb.glif zayindagesh-hb zayindagesh-hb.glif zcaron zcaron.glif zdotaccent zdotaccent.glif ze-cy ze-cy.glif ze-cy.loclBGR ze-cy.loclB_G_R_.glif zero zero.glif zero-ar zero-ar.glif zero-arinferior zero-arinferior.glif zero-arsuperior zero-arsuperior.glif zero-persian zero-persian.glif zero-persianinferior zero-persianinferior.glif zero-persiansuperior zero-persiansuperior.glif zero.dnom zero.dnom.glif zero.numr zero.numr.glif zero.zero zero.zero.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif zeta zeta.glif zhe-cy zhe-cy.glif zhe-cy.loclBGR zhe-cy.loclB_G_R_.glif zhedescender-cy zhedescender-cy.glif zmod zmod.glif checkerBoardDeleteApple2 checkerB_oardD_eleteA_pple2.glif checkerBoardDeleteTrs80 checkerB_oardD_eleteT_rs80.glif checkerBoardDeleteAmstradCpc checkerB_oardD_eleteA_mstradC_pc.glif checkerBoardDeleteAmstradCpc.stypo checkerB_oardD_eleteA_mstradC_pc.stypo.glif checkerBoardFill checkerB_oardF_ill.glif checkerBoardFill.stypo checkerB_oardF_ill.stypo.glif checkerBoardFillInverse checkerB_oardF_illI_nverse.glif checkerBoardFillInverse.stypo checkerB_oardF_illI_nverse.stypo.glif blockQuadrant-UC blockQ_uadrant-UC.glif blockQuadrant-UC.stypo blockQ_uadrant-UC.stypo.glif blockQuadrant-LC blockQ_uadrant-LC.glif blockQuadrant-LC.stypo blockQ_uadrant-LC.stypo.glif blockQuadrant-ML blockQ_uadrant-ML.glif blockQuadrant-ML.stypo blockQ_uadrant-ML.stypo.glif blockQuadrant-MR blockQ_uadrant-MR.glif blockQuadrant-MR.stypo blockQ_uadrant-MR.stypo.glif blockTriangle-1 blockT_riangle-1.glif blockTriangle-1.stypo blockT_riangle-1.stypo.glif blockTriangle-2 blockT_riangle-2.glif blockTriangle-2.stypo blockT_riangle-2.stypo.glif blockTriangle-3 blockT_riangle-3.glif blockTriangle-3.stypo blockT_riangle-3.stypo.glif blockTriangle-4 blockT_riangle-4.glif blockTriangle-4.stypo blockT_riangle-4.stypo.glif blockTriangle-14 blockT_riangle-14.glif blockTriangle-14.stypo blockT_riangle-14.stypo.glif blockTriangle-23 blockT_riangle-23.glif blockTriangle-23.stypo blockT_riangle-23.stypo.glif blockTriangle-123 blockT_riangle-123.glif blockTriangle-123.stypo blockT_riangle-123.stypo.glif blockTriangle-124 blockT_riangle-124.glif blockTriangle-124.stypo blockT_riangle-124.stypo.glif blockTriangle-134 blockT_riangle-134.glif blockTriangle-134.stypo blockT_riangle-134.stypo.glif blockTriangle-234 blockT_riangle-234.glif blockTriangle-234.stypo blockT_riangle-234.stypo.glif blockCircle-UC blockC_ircle-UC.glif blockCircle-UC.stypo blockC_ircle-UC.stypo.glif blockCircle-LC blockC_ircle-LC.glif blockCircle-LC.stypo blockC_ircle-LC.stypo.glif blockCircle-ML blockC_ircle-ML.glif blockCircle-ML.stypo blockC_ircle-ML.stypo.glif blockCircle-MR blockC_ircle-MR.glif blockCircle-MR.stypo blockC_ircle-MR.stypo.glif blockCircle-1 blockC_ircle-1.glif blockCircle-1.stypo blockC_ircle-1.stypo.glif blockCircle-2 blockC_ircle-2.glif blockCircle-2.stypo blockC_ircle-2.stypo.glif blockCircle-3 blockC_ircle-3.glif blockCircle-3.stypo blockC_ircle-3.stypo.glif blockCircle-4 blockC_ircle-4.glif blockCircle-4.stypo blockC_ircle-4.stypo.glif blockSextant-1 blockS_extant-1.glif blockSextant-1.stypo blockS_extant-1.stypo.glif blockSextant-2 blockS_extant-2.glif blockSextant-2.stypo blockS_extant-2.stypo.glif blockSextant-12 blockS_extant-12.glif blockSextant-12.stypo blockS_extant-12.stypo.glif blockSextant-3 blockS_extant-3.glif blockSextant-3.stypo blockS_extant-3.stypo.glif blockSextant-13 blockS_extant-13.glif blockSextant-13.stypo blockS_extant-13.stypo.glif blockSextant-23 blockS_extant-23.glif blockSextant-23.stypo blockS_extant-23.stypo.glif blockSextant-123 blockS_extant-123.glif blockSextant-123.stypo blockS_extant-123.stypo.glif blockSextant-4 blockS_extant-4.glif blockSextant-4.stypo blockS_extant-4.stypo.glif blockSextant-14 blockS_extant-14.glif blockSextant-14.stypo blockS_extant-14.stypo.glif blockSextant-24 blockS_extant-24.glif blockSextant-24.stypo blockS_extant-24.stypo.glif blockSextant-124 blockS_extant-124.glif blockSextant-124.stypo blockS_extant-124.stypo.glif blockSextant-34 blockS_extant-34.glif blockSextant-34.stypo blockS_extant-34.stypo.glif blockSextant-134 blockS_extant-134.glif blockSextant-134.stypo blockS_extant-134.stypo.glif blockSextant-234 blockS_extant-234.glif blockSextant-234.stypo blockS_extant-234.stypo.glif blockSextant-1234 blockS_extant-1234.glif blockSextant-1234.stypo blockS_extant-1234.stypo.glif blockSextant-5 blockS_extant-5.glif blockSextant-5.stypo blockS_extant-5.stypo.glif blockSextant-15 blockS_extant-15.glif blockSextant-15.stypo blockS_extant-15.stypo.glif blockSextant-25 blockS_extant-25.glif blockSextant-25.stypo blockS_extant-25.stypo.glif blockSextant-125 blockS_extant-125.glif blockSextant-125.stypo blockS_extant-125.stypo.glif blockSextant-35 blockS_extant-35.glif blockSextant-35.stypo blockS_extant-35.stypo.glif blockSextant-235 blockS_extant-235.glif blockSextant-235.stypo blockS_extant-235.stypo.glif blockSextant-1235 blockS_extant-1235.glif blockSextant-1235.stypo blockS_extant-1235.stypo.glif blockSextant-45 blockS_extant-45.glif blockSextant-45.stypo blockS_extant-45.stypo.glif blockSextant-145 blockS_extant-145.glif blockSextant-145.stypo blockS_extant-145.stypo.glif blockSextant-245 blockS_extant-245.glif blockSextant-245.stypo blockS_extant-245.stypo.glif blockSextant-1245 blockS_extant-1245.glif blockSextant-1245.stypo blockS_extant-1245.stypo.glif blockSextant-345 blockS_extant-345.glif blockSextant-345.stypo blockS_extant-345.stypo.glif blockSextant-1345 blockS_extant-1345.glif blockSextant-1345.stypo blockS_extant-1345.stypo.glif blockSextant-2345 blockS_extant-2345.glif blockSextant-2345.stypo blockS_extant-2345.stypo.glif blockSextant-12345 blockS_extant-12345.glif blockSextant-12345.stypo blockS_extant-12345.stypo.glif blockSextant-6 blockS_extant-6.glif blockSextant-6.stypo blockS_extant-6.stypo.glif blockSextant-16 blockS_extant-16.glif blockSextant-16.stypo blockS_extant-16.stypo.glif blockSextant-26 blockS_extant-26.glif blockSextant-26.stypo blockS_extant-26.stypo.glif blockSextant-126 blockS_extant-126.glif blockSextant-126.stypo blockS_extant-126.stypo.glif blockSextant-36 blockS_extant-36.glif blockSextant-36.stypo blockS_extant-36.stypo.glif blockSextant-136 blockS_extant-136.glif blockSextant-136.stypo blockS_extant-136.stypo.glif blockSextant-236 blockS_extant-236.glif blockSextant-236.stypo blockS_extant-236.stypo.glif blockSextant-1236 blockS_extant-1236.glif blockSextant-1236.stypo blockS_extant-1236.stypo.glif blockSextant-46 blockS_extant-46.glif blockSextant-46.stypo blockS_extant-46.stypo.glif blockSextant-146 blockS_extant-146.glif blockSextant-146.stypo blockS_extant-146.stypo.glif blockSextant-1246 blockS_extant-1246.glif blockSextant-1246.stypo blockS_extant-1246.stypo.glif blockSextant-346 blockS_extant-346.glif blockSextant-346.stypo blockS_extant-346.stypo.glif blockSextant-1346 blockS_extant-1346.glif blockSextant-1346.stypo blockS_extant-1346.stypo.glif blockSextant-2346 blockS_extant-2346.glif blockSextant-2346.stypo blockS_extant-2346.stypo.glif blockSextant-12346 blockS_extant-12346.glif blockSextant-12346.stypo blockS_extant-12346.stypo.glif blockSextant-56 blockS_extant-56.glif blockSextant-56.stypo blockS_extant-56.stypo.glif blockSextant-156 blockS_extant-156.glif blockSextant-156.stypo blockS_extant-156.stypo.glif blockSextant-256 blockS_extant-256.glif blockSextant-256.stypo blockS_extant-256.stypo.glif blockSextant-1256 blockS_extant-1256.glif blockSextant-1256.stypo blockS_extant-1256.stypo.glif blockSextant-356 blockS_extant-356.glif blockSextant-356.stypo blockS_extant-356.stypo.glif blockSextant-1356 blockS_extant-1356.glif blockSextant-1356.stypo blockS_extant-1356.stypo.glif blockSextant-2356 blockS_extant-2356.glif blockSextant-2356.stypo blockS_extant-2356.stypo.glif blockSextant-12356 blockS_extant-12356.glif blockSextant-12356.stypo blockS_extant-12356.stypo.glif blockSextant-456 blockS_extant-456.glif blockSextant-456.stypo blockS_extant-456.stypo.glif blockSextant-1456 blockS_extant-1456.glif blockSextant-1456.stypo blockS_extant-1456.stypo.glif blockSextant-2456 blockS_extant-2456.glif blockSextant-2456.stypo blockS_extant-2456.stypo.glif blockSextant-12456 blockS_extant-12456.glif blockSextant-12456.stypo blockS_extant-12456.stypo.glif blockSextant-3456 blockS_extant-3456.glif blockSextant-3456.stypo blockS_extant-3456.stypo.glif blockSextant-13456 blockS_extant-13456.glif blockSextant-13456.stypo blockS_extant-13456.stypo.glif blockSextant-23456 blockS_extant-23456.glif blockSextant-23456.stypo blockS_extant-23456.stypo.glif blockDiagonal-1FB3C blockD_iagonal-1FB3C.glif blockDiagonal-1FB3C.stypo blockD_iagonal-1FB3C.stypo.glif blockDiagonal-1FB3D blockD_iagonal-1FB3D.glif blockDiagonal-1FB3D.stypo blockD_iagonal-1FB3D.stypo.glif blockDiagonal-1FB3E blockD_iagonal-1FB3E.glif blockDiagonal-1FB3E.stypo blockD_iagonal-1FB3E.stypo.glif blockDiagonal-1FB3F blockD_iagonal-1FB3F.glif blockDiagonal-1FB3F.stypo blockD_iagonal-1FB3F.stypo.glif blockDiagonal-1FB40 blockD_iagonal-1FB40.glif blockDiagonal-1FB40.stypo blockD_iagonal-1FB40.stypo.glif blockDiagonal-1FB41 blockD_iagonal-1FB41.glif blockDiagonal-1FB41.stypo blockD_iagonal-1FB41.stypo.glif blockDiagonal-1FB42 blockD_iagonal-1FB42.glif blockDiagonal-1FB42.stypo blockD_iagonal-1FB42.stypo.glif blockDiagonal-1FB43 blockD_iagonal-1FB43.glif blockDiagonal-1FB43.stypo blockD_iagonal-1FB43.stypo.glif blockDiagonal-1FB44 blockD_iagonal-1FB44.glif blockDiagonal-1FB44.stypo blockD_iagonal-1FB44.stypo.glif blockDiagonal-1FB45 blockD_iagonal-1FB45.glif blockDiagonal-1FB45.stypo blockD_iagonal-1FB45.stypo.glif blockDiagonal-1FB46 blockD_iagonal-1FB46.glif blockDiagonal-1FB46.stypo blockD_iagonal-1FB46.stypo.glif blockDiagonal-1FB47 blockD_iagonal-1FB47.glif blockDiagonal-1FB47.stypo blockD_iagonal-1FB47.stypo.glif blockDiagonal-1FB48 blockD_iagonal-1FB48.glif blockDiagonal-1FB48.stypo blockD_iagonal-1FB48.stypo.glif blockDiagonal-1FB49 blockD_iagonal-1FB49.glif blockDiagonal-1FB49.stypo blockD_iagonal-1FB49.stypo.glif blockDiagonal-1FB4A blockD_iagonal-1FB4A.glif blockDiagonal-1FB4A.stypo blockD_iagonal-1FB4A.stypo.glif blockDiagonal-1FB4B blockD_iagonal-1FB4B.glif blockDiagonal-1FB4B.stypo blockD_iagonal-1FB4B.stypo.glif blockDiagonal-1FB4C blockD_iagonal-1FB4C.glif blockDiagonal-1FB4C.stypo blockD_iagonal-1FB4C.stypo.glif blockDiagonal-1FB4D blockD_iagonal-1FB4D.glif blockDiagonal-1FB4D.stypo blockD_iagonal-1FB4D.stypo.glif blockDiagonal-1FB4E blockD_iagonal-1FB4E.glif blockDiagonal-1FB4E.stypo blockD_iagonal-1FB4E.stypo.glif blockDiagonal-1FB4F blockD_iagonal-1FB4F.glif blockDiagonal-1FB4F.stypo blockD_iagonal-1FB4F.stypo.glif blockDiagonal-1FB50 blockD_iagonal-1FB50.glif blockDiagonal-1FB50.stypo blockD_iagonal-1FB50.stypo.glif blockDiagonal-1FB51 blockD_iagonal-1FB51.glif blockDiagonal-1FB51.stypo blockD_iagonal-1FB51.stypo.glif blockDiagonal-1FB52 blockD_iagonal-1FB52.glif blockDiagonal-1FB52.stypo blockD_iagonal-1FB52.stypo.glif blockDiagonal-1FB53 blockD_iagonal-1FB53.glif blockDiagonal-1FB53.stypo blockD_iagonal-1FB53.stypo.glif blockDiagonal-1FB54 blockD_iagonal-1FB54.glif blockDiagonal-1FB54.stypo blockD_iagonal-1FB54.stypo.glif blockDiagonal-1FB55 blockD_iagonal-1FB55.glif blockDiagonal-1FB55.stypo blockD_iagonal-1FB55.stypo.glif blockDiagonal-1FB56 blockD_iagonal-1FB56.glif blockDiagonal-1FB56.stypo blockD_iagonal-1FB56.stypo.glif blockDiagonal-1FB57 blockD_iagonal-1FB57.glif blockDiagonal-1FB57.stypo blockD_iagonal-1FB57.stypo.glif blockDiagonal-1FB58 blockD_iagonal-1FB58.glif blockDiagonal-1FB58.stypo blockD_iagonal-1FB58.stypo.glif blockDiagonal-1FB59 blockD_iagonal-1FB59.glif blockDiagonal-1FB59.stypo blockD_iagonal-1FB59.stypo.glif blockDiagonal-1FB5A blockD_iagonal-1FB5A.glif blockDiagonal-1FB5A.stypo blockD_iagonal-1FB5A.stypo.glif blockDiagonal-1FB5B blockD_iagonal-1FB5B.glif blockDiagonal-1FB5B.stypo blockD_iagonal-1FB5B.stypo.glif blockDiagonal-1FB5C blockD_iagonal-1FB5C.glif blockDiagonal-1FB5C.stypo blockD_iagonal-1FB5C.stypo.glif blockDiagonal-1FB5D blockD_iagonal-1FB5D.glif blockDiagonal-1FB5D.stypo blockD_iagonal-1FB5D.stypo.glif blockDiagonal-1FB5E blockD_iagonal-1FB5E.glif blockDiagonal-1FB5E.stypo blockD_iagonal-1FB5E.stypo.glif blockDiagonal-1FB5F blockD_iagonal-1FB5F.glif blockDiagonal-1FB5F.stypo blockD_iagonal-1FB5F.stypo.glif blockDiagonal-1FB60 blockD_iagonal-1FB60.glif blockDiagonal-1FB60.stypo blockD_iagonal-1FB60.stypo.glif blockDiagonal-1FB61 blockD_iagonal-1FB61.glif blockDiagonal-1FB61.stypo blockD_iagonal-1FB61.stypo.glif blockDiagonal-1FB62 blockD_iagonal-1FB62.glif blockDiagonal-1FB62.stypo blockD_iagonal-1FB62.stypo.glif blockDiagonal-1FB63 blockD_iagonal-1FB63.glif blockDiagonal-1FB63.stypo blockD_iagonal-1FB63.stypo.glif blockDiagonal-1FB64 blockD_iagonal-1FB64.glif blockDiagonal-1FB64.stypo blockD_iagonal-1FB64.stypo.glif blockDiagonal-1FB65 blockD_iagonal-1FB65.glif blockDiagonal-1FB65.stypo blockD_iagonal-1FB65.stypo.glif blockDiagonal-1FB66 blockD_iagonal-1FB66.glif blockDiagonal-1FB66.stypo blockD_iagonal-1FB66.stypo.glif blockDiagonal-1FB67 blockD_iagonal-1FB67.glif blockDiagonal-1FB67.stypo blockD_iagonal-1FB67.stypo.glif blockOctant-1 blockO_ctant-1.glif blockOctant-1.stypo blockO_ctant-1.stypo.glif blockOctant-2 blockO_ctant-2.glif blockOctant-2.stypo blockO_ctant-2.stypo.glif blockOctant-12 blockO_ctant-12.glif blockOctant-12.stypo blockO_ctant-12.stypo.glif blockOctant-3 blockO_ctant-3.glif blockOctant-3.stypo blockO_ctant-3.stypo.glif blockOctant-23 blockO_ctant-23.glif blockOctant-23.stypo blockO_ctant-23.stypo.glif blockOctant-123 blockO_ctant-123.glif blockOctant-123.stypo blockO_ctant-123.stypo.glif blockOctant-4 blockO_ctant-4.glif blockOctant-4.stypo blockO_ctant-4.stypo.glif blockOctant-14 blockO_ctant-14.glif blockOctant-14.stypo blockO_ctant-14.stypo.glif blockOctant-124 blockO_ctant-124.glif blockOctant-124.stypo blockO_ctant-124.stypo.glif blockOctant-34 blockO_ctant-34.glif blockOctant-34.stypo blockO_ctant-34.stypo.glif blockOctant-134 blockO_ctant-134.glif blockOctant-134.stypo blockO_ctant-134.stypo.glif blockOctant-234 blockO_ctant-234.glif blockOctant-234.stypo blockO_ctant-234.stypo.glif blockOctant-5 blockO_ctant-5.glif blockOctant-5.stypo blockO_ctant-5.stypo.glif blockOctant-15 blockO_ctant-15.glif blockOctant-15.stypo blockO_ctant-15.stypo.glif blockOctant-25 blockO_ctant-25.glif blockOctant-25.stypo blockO_ctant-25.stypo.glif blockOctant-125 blockO_ctant-125.glif blockOctant-125.stypo blockO_ctant-125.stypo.glif blockOctant-135 blockO_ctant-135.glif blockOctant-135.stypo blockO_ctant-135.stypo.glif blockOctant-235 blockO_ctant-235.glif blockOctant-235.stypo blockO_ctant-235.stypo.glif blockOctant-1235 blockO_ctant-1235.glif blockOctant-1235.stypo blockO_ctant-1235.stypo.glif blockOctant-45 blockO_ctant-45.glif blockOctant-45.stypo blockO_ctant-45.stypo.glif blockOctant-145 blockO_ctant-145.glif blockOctant-145.stypo blockO_ctant-145.stypo.glif blockOctant-245 blockO_ctant-245.glif blockOctant-245.stypo blockO_ctant-245.stypo.glif blockOctant-1245 blockO_ctant-1245.glif blockOctant-1245.stypo blockO_ctant-1245.stypo.glif blockOctant-345 blockO_ctant-345.glif blockOctant-345.stypo blockO_ctant-345.stypo.glif blockOctant-1345 blockO_ctant-1345.glif blockOctant-1345.stypo blockO_ctant-1345.stypo.glif blockOctant-2345 blockO_ctant-2345.glif blockOctant-2345.stypo blockO_ctant-2345.stypo.glif blockOctant-12345 blockO_ctant-12345.glif blockOctant-12345.stypo blockO_ctant-12345.stypo.glif blockOctant-6 blockO_ctant-6.glif blockOctant-6.stypo blockO_ctant-6.stypo.glif blockOctant-16 blockO_ctant-16.glif blockOctant-16.stypo blockO_ctant-16.stypo.glif blockOctant-26 blockO_ctant-26.glif blockOctant-26.stypo blockO_ctant-26.stypo.glif blockOctant-126 blockO_ctant-126.glif blockOctant-126.stypo blockO_ctant-126.stypo.glif blockOctant-36 blockO_ctant-36.glif blockOctant-36.stypo blockO_ctant-36.stypo.glif blockOctant-136 blockO_ctant-136.glif blockOctant-136.stypo blockO_ctant-136.stypo.glif blockOctant-236 blockO_ctant-236.glif blockOctant-236.stypo blockO_ctant-236.stypo.glif blockOctant-1236 blockO_ctant-1236.glif blockOctant-1236.stypo blockO_ctant-1236.stypo.glif blockOctant-146 blockO_ctant-146.glif blockOctant-146.stypo blockO_ctant-146.stypo.glif blockOctant-246 blockO_ctant-246.glif blockOctant-246.stypo blockO_ctant-246.stypo.glif blockOctant-1246 blockO_ctant-1246.glif blockOctant-1246.stypo blockO_ctant-1246.stypo.glif blockOctant-346 blockO_ctant-346.glif blockOctant-346.stypo blockO_ctant-346.stypo.glif blockOctant-1346 blockO_ctant-1346.glif blockOctant-1346.stypo blockO_ctant-1346.stypo.glif blockOctant-2346 blockO_ctant-2346.glif blockOctant-2346.stypo blockO_ctant-2346.stypo.glif blockOctant-12346 blockO_ctant-12346.glif blockOctant-12346.stypo blockO_ctant-12346.stypo.glif blockOctant-56 blockO_ctant-56.glif blockOctant-56.stypo blockO_ctant-56.stypo.glif blockOctant-156 blockO_ctant-156.glif blockOctant-156.stypo blockO_ctant-156.stypo.glif blockOctant-256 blockO_ctant-256.glif blockOctant-256.stypo blockO_ctant-256.stypo.glif blockOctant-1256 blockO_ctant-1256.glif blockOctant-1256.stypo blockO_ctant-1256.stypo.glif blockOctant-356 blockO_ctant-356.glif blockOctant-356.stypo blockO_ctant-356.stypo.glif blockOctant-1356 blockO_ctant-1356.glif blockOctant-1356.stypo blockO_ctant-1356.stypo.glif blockOctant-2356 blockO_ctant-2356.glif blockOctant-2356.stypo blockO_ctant-2356.stypo.glif blockOctant-12356 blockO_ctant-12356.glif blockOctant-12356.stypo blockO_ctant-12356.stypo.glif blockOctant-456 blockO_ctant-456.glif blockOctant-456.stypo blockO_ctant-456.stypo.glif blockOctant-1456 blockO_ctant-1456.glif blockOctant-1456.stypo blockO_ctant-1456.stypo.glif blockOctant-2456 blockO_ctant-2456.glif blockOctant-2456.stypo blockO_ctant-2456.stypo.glif blockOctant-12456 blockO_ctant-12456.glif blockOctant-12456.stypo blockO_ctant-12456.stypo.glif blockOctant-3456 blockO_ctant-3456.glif blockOctant-3456.stypo blockO_ctant-3456.stypo.glif blockOctant-13456 blockO_ctant-13456.glif blockOctant-13456.stypo blockO_ctant-13456.stypo.glif blockOctant-23456 blockO_ctant-23456.glif blockOctant-23456.stypo blockO_ctant-23456.stypo.glif blockOctant-123456 blockO_ctant-123456.glif blockOctant-123456.stypo blockO_ctant-123456.stypo.glif blockOctant-7 blockO_ctant-7.glif blockOctant-7.stypo blockO_ctant-7.stypo.glif blockOctant-17 blockO_ctant-17.glif blockOctant-17.stypo blockO_ctant-17.stypo.glif blockOctant-27 blockO_ctant-27.glif blockOctant-27.stypo blockO_ctant-27.stypo.glif blockOctant-127 blockO_ctant-127.glif blockOctant-127.stypo blockO_ctant-127.stypo.glif blockOctant-37 blockO_ctant-37.glif blockOctant-37.stypo blockO_ctant-37.stypo.glif blockOctant-137 blockO_ctant-137.glif blockOctant-137.stypo blockO_ctant-137.stypo.glif blockOctant-237 blockO_ctant-237.glif blockOctant-237.stypo blockO_ctant-237.stypo.glif blockOctant-1237 blockO_ctant-1237.glif blockOctant-1237.stypo blockO_ctant-1237.stypo.glif blockOctant-47 blockO_ctant-47.glif blockOctant-47.stypo blockO_ctant-47.stypo.glif blockOctant-147 blockO_ctant-147.glif blockOctant-147.stypo blockO_ctant-147.stypo.glif blockOctant-247 blockO_ctant-247.glif blockOctant-247.stypo blockO_ctant-247.stypo.glif blockOctant-1247 blockO_ctant-1247.glif blockOctant-1247.stypo blockO_ctant-1247.stypo.glif blockOctant-347 blockO_ctant-347.glif blockOctant-347.stypo blockO_ctant-347.stypo.glif blockOctant-1347 blockO_ctant-1347.glif blockOctant-1347.stypo blockO_ctant-1347.stypo.glif blockOctant-2347 blockO_ctant-2347.glif blockOctant-2347.stypo blockO_ctant-2347.stypo.glif blockOctant-12347 blockO_ctant-12347.glif blockOctant-12347.stypo blockO_ctant-12347.stypo.glif blockOctant-157 blockO_ctant-157.glif blockOctant-157.stypo blockO_ctant-157.stypo.glif blockOctant-257 blockO_ctant-257.glif blockOctant-257.stypo blockO_ctant-257.stypo.glif blockOctant-1257 blockO_ctant-1257.glif blockOctant-1257.stypo blockO_ctant-1257.stypo.glif blockOctant-357 blockO_ctant-357.glif blockOctant-357.stypo blockO_ctant-357.stypo.glif blockOctant-2357 blockO_ctant-2357.glif blockOctant-2357.stypo blockO_ctant-2357.stypo.glif blockOctant-12357 blockO_ctant-12357.glif blockOctant-12357.stypo blockO_ctant-12357.stypo.glif blockOctant-457 blockO_ctant-457.glif blockOctant-457.stypo blockO_ctant-457.stypo.glif blockOctant-1457 blockO_ctant-1457.glif blockOctant-1457.stypo blockO_ctant-1457.stypo.glif blockOctant-12457 blockO_ctant-12457.glif blockOctant-12457.stypo blockO_ctant-12457.stypo.glif blockOctant-3457 blockO_ctant-3457.glif blockOctant-3457.stypo blockO_ctant-3457.stypo.glif blockOctant-13457 blockO_ctant-13457.glif blockOctant-13457.stypo blockO_ctant-13457.stypo.glif blockOctant-23457 blockO_ctant-23457.glif blockOctant-23457.stypo blockO_ctant-23457.stypo.glif blockOctant-67 blockO_ctant-67.glif blockOctant-67.stypo blockO_ctant-67.stypo.glif blockOctant-167 blockO_ctant-167.glif blockOctant-167.stypo blockO_ctant-167.stypo.glif blockOctant-267 blockO_ctant-267.glif blockOctant-267.stypo blockO_ctant-267.stypo.glif blockOctant-1267 blockO_ctant-1267.glif blockOctant-1267.stypo blockO_ctant-1267.stypo.glif blockOctant-367 blockO_ctant-367.glif blockOctant-367.stypo blockO_ctant-367.stypo.glif blockOctant-1367 blockO_ctant-1367.glif blockOctant-1367.stypo blockO_ctant-1367.stypo.glif blockOctant-2367 blockO_ctant-2367.glif blockOctant-2367.stypo blockO_ctant-2367.stypo.glif blockOctant-12367 blockO_ctant-12367.glif blockOctant-12367.stypo blockO_ctant-12367.stypo.glif blockOctant-467 blockO_ctant-467.glif blockOctant-467.stypo blockO_ctant-467.stypo.glif blockOctant-1467 blockO_ctant-1467.glif blockOctant-1467.stypo blockO_ctant-1467.stypo.glif blockOctant-2467 blockO_ctant-2467.glif blockOctant-2467.stypo blockO_ctant-2467.stypo.glif blockOctant-12467 blockO_ctant-12467.glif blockOctant-12467.stypo blockO_ctant-12467.stypo.glif blockOctant-3467 blockO_ctant-3467.glif blockOctant-3467.stypo blockO_ctant-3467.stypo.glif blockOctant-13467 blockO_ctant-13467.glif blockOctant-13467.stypo blockO_ctant-13467.stypo.glif blockOctant-23467 blockO_ctant-23467.glif blockOctant-23467.stypo blockO_ctant-23467.stypo.glif blockOctant-123467 blockO_ctant-123467.glif blockOctant-123467.stypo blockO_ctant-123467.stypo.glif blockOctant-567 blockO_ctant-567.glif blockOctant-567.stypo blockO_ctant-567.stypo.glif blockOctant-1567 blockO_ctant-1567.glif blockOctant-1567.stypo blockO_ctant-1567.stypo.glif blockOctant-2567 blockO_ctant-2567.glif blockOctant-2567.stypo blockO_ctant-2567.stypo.glif blockOctant-12567 blockO_ctant-12567.glif blockOctant-12567.stypo blockO_ctant-12567.stypo.glif blockOctant-3567 blockO_ctant-3567.glif blockOctant-3567.stypo blockO_ctant-3567.stypo.glif blockOctant-13567 blockO_ctant-13567.glif blockOctant-13567.stypo blockO_ctant-13567.stypo.glif blockOctant-23567 blockO_ctant-23567.glif blockOctant-23567.stypo blockO_ctant-23567.stypo.glif blockOctant-123567 blockO_ctant-123567.glif blockOctant-123567.stypo blockO_ctant-123567.stypo.glif blockOctant-4567 blockO_ctant-4567.glif blockOctant-4567.stypo blockO_ctant-4567.stypo.glif blockOctant-14567 blockO_ctant-14567.glif blockOctant-14567.stypo blockO_ctant-14567.stypo.glif blockOctant-24567 blockO_ctant-24567.glif blockOctant-24567.stypo blockO_ctant-24567.stypo.glif blockOctant-124567 blockO_ctant-124567.glif blockOctant-124567.stypo blockO_ctant-124567.stypo.glif blockOctant-34567 blockO_ctant-34567.glif blockOctant-34567.stypo blockO_ctant-34567.stypo.glif blockOctant-134567 blockO_ctant-134567.glif blockOctant-134567.stypo blockO_ctant-134567.stypo.glif blockOctant-234567 blockO_ctant-234567.glif blockOctant-234567.stypo blockO_ctant-234567.stypo.glif blockOctant-1234567 blockO_ctant-1234567.glif blockOctant-1234567.stypo blockO_ctant-1234567.stypo.glif blockOctant-8 blockO_ctant-8.glif blockOctant-8.stypo blockO_ctant-8.stypo.glif blockOctant-18 blockO_ctant-18.glif blockOctant-18.stypo blockO_ctant-18.stypo.glif blockOctant-28 blockO_ctant-28.glif blockOctant-28.stypo blockO_ctant-28.stypo.glif blockOctant-128 blockO_ctant-128.glif blockOctant-128.stypo blockO_ctant-128.stypo.glif blockOctant-38 blockO_ctant-38.glif blockOctant-38.stypo blockO_ctant-38.stypo.glif blockOctant-138 blockO_ctant-138.glif blockOctant-138.stypo blockO_ctant-138.stypo.glif blockOctant-238 blockO_ctant-238.glif blockOctant-238.stypo blockO_ctant-238.stypo.glif blockOctant-1238 blockO_ctant-1238.glif blockOctant-1238.stypo blockO_ctant-1238.stypo.glif blockOctant-48 blockO_ctant-48.glif blockOctant-48.stypo blockO_ctant-48.stypo.glif blockOctant-148 blockO_ctant-148.glif blockOctant-148.stypo blockO_ctant-148.stypo.glif blockOctant-248 blockO_ctant-248.glif blockOctant-248.stypo blockO_ctant-248.stypo.glif blockOctant-1248 blockO_ctant-1248.glif blockOctant-1248.stypo blockO_ctant-1248.stypo.glif blockOctant-348 blockO_ctant-348.glif blockOctant-348.stypo blockO_ctant-348.stypo.glif blockOctant-1348 blockO_ctant-1348.glif blockOctant-1348.stypo blockO_ctant-1348.stypo.glif blockOctant-2348 blockO_ctant-2348.glif blockOctant-2348.stypo blockO_ctant-2348.stypo.glif blockOctant-12348 blockO_ctant-12348.glif blockOctant-12348.stypo blockO_ctant-12348.stypo.glif blockOctant-58 blockO_ctant-58.glif blockOctant-58.stypo blockO_ctant-58.stypo.glif blockOctant-158 blockO_ctant-158.glif blockOctant-158.stypo blockO_ctant-158.stypo.glif blockOctant-258 blockO_ctant-258.glif blockOctant-258.stypo blockO_ctant-258.stypo.glif blockOctant-1258 blockO_ctant-1258.glif blockOctant-1258.stypo blockO_ctant-1258.stypo.glif blockOctant-358 blockO_ctant-358.glif blockOctant-358.stypo blockO_ctant-358.stypo.glif blockOctant-1358 blockO_ctant-1358.glif blockOctant-1358.stypo blockO_ctant-1358.stypo.glif blockOctant-2358 blockO_ctant-2358.glif blockOctant-2358.stypo blockO_ctant-2358.stypo.glif blockOctant-12358 blockO_ctant-12358.glif blockOctant-12358.stypo blockO_ctant-12358.stypo.glif blockOctant-458 blockO_ctant-458.glif blockOctant-458.stypo blockO_ctant-458.stypo.glif blockOctant-1458 blockO_ctant-1458.glif blockOctant-1458.stypo blockO_ctant-1458.stypo.glif blockOctant-2458 blockO_ctant-2458.glif blockOctant-2458.stypo blockO_ctant-2458.stypo.glif blockOctant-12458 blockO_ctant-12458.glif blockOctant-12458.stypo blockO_ctant-12458.stypo.glif blockOctant-3458 blockO_ctant-3458.glif blockOctant-3458.stypo blockO_ctant-3458.stypo.glif blockOctant-13458 blockO_ctant-13458.glif blockOctant-13458.stypo blockO_ctant-13458.stypo.glif blockOctant-23458 blockO_ctant-23458.glif blockOctant-23458.stypo blockO_ctant-23458.stypo.glif blockOctant-123458 blockO_ctant-123458.glif blockOctant-123458.stypo blockO_ctant-123458.stypo.glif blockOctant-168 blockO_ctant-168.glif blockOctant-168.stypo blockO_ctant-168.stypo.glif blockOctant-268 blockO_ctant-268.glif blockOctant-268.stypo blockO_ctant-268.stypo.glif blockOctant-1268 blockO_ctant-1268.glif blockOctant-1268.stypo blockO_ctant-1268.stypo.glif blockOctant-368 blockO_ctant-368.glif blockOctant-368.stypo blockO_ctant-368.stypo.glif blockOctant-2368 blockO_ctant-2368.glif blockOctant-2368.stypo blockO_ctant-2368.stypo.glif blockOctant-12368 blockO_ctant-12368.glif blockOctant-12368.stypo blockO_ctant-12368.stypo.glif blockOctant-468 blockO_ctant-468.glif blockOctant-468.stypo blockO_ctant-468.stypo.glif blockOctant-1468 blockO_ctant-1468.glif blockOctant-1468.stypo blockO_ctant-1468.stypo.glif blockOctant-12468 blockO_ctant-12468.glif blockOctant-12468.stypo blockO_ctant-12468.stypo.glif blockOctant-3468 blockO_ctant-3468.glif blockOctant-3468.stypo blockO_ctant-3468.stypo.glif blockOctant-13468 blockO_ctant-13468.glif blockOctant-13468.stypo blockO_ctant-13468.stypo.glif blockOctant-23468 blockO_ctant-23468.glif blockOctant-23468.stypo blockO_ctant-23468.stypo.glif blockOctant-568 blockO_ctant-568.glif blockOctant-568.stypo blockO_ctant-568.stypo.glif blockOctant-1568 blockO_ctant-1568.glif blockOctant-1568.stypo blockO_ctant-1568.stypo.glif blockOctant-2568 blockO_ctant-2568.glif blockOctant-2568.stypo blockO_ctant-2568.stypo.glif blockOctant-12568 blockO_ctant-12568.glif blockOctant-12568.stypo blockO_ctant-12568.stypo.glif blockOctant-3568 blockO_ctant-3568.glif blockOctant-3568.stypo blockO_ctant-3568.stypo.glif blockOctant-13568 blockO_ctant-13568.glif blockOctant-13568.stypo blockO_ctant-13568.stypo.glif blockOctant-23568 blockO_ctant-23568.glif blockOctant-23568.stypo blockO_ctant-23568.stypo.glif blockOctant-123568 blockO_ctant-123568.glif blockOctant-123568.stypo blockO_ctant-123568.stypo.glif blockOctant-4568 blockO_ctant-4568.glif blockOctant-4568.stypo blockO_ctant-4568.stypo.glif blockOctant-14568 blockO_ctant-14568.glif blockOctant-14568.stypo blockO_ctant-14568.stypo.glif blockOctant-24568 blockO_ctant-24568.glif blockOctant-24568.stypo blockO_ctant-24568.stypo.glif blockOctant-124568 blockO_ctant-124568.glif blockOctant-124568.stypo blockO_ctant-124568.stypo.glif blockOctant-34568 blockO_ctant-34568.glif blockOctant-34568.stypo blockO_ctant-34568.stypo.glif blockOctant-134568 blockO_ctant-134568.glif blockOctant-134568.stypo blockO_ctant-134568.stypo.glif blockOctant-234568 blockO_ctant-234568.glif blockOctant-234568.stypo blockO_ctant-234568.stypo.glif blockOctant-1234568 blockO_ctant-1234568.glif blockOctant-1234568.stypo blockO_ctant-1234568.stypo.glif blockOctant-178 blockO_ctant-178.glif blockOctant-178.stypo blockO_ctant-178.stypo.glif blockOctant-278 blockO_ctant-278.glif blockOctant-278.stypo blockO_ctant-278.stypo.glif blockOctant-1278 blockO_ctant-1278.glif blockOctant-1278.stypo blockO_ctant-1278.stypo.glif blockOctant-378 blockO_ctant-378.glif blockOctant-378.stypo blockO_ctant-378.stypo.glif blockOctant-1378 blockO_ctant-1378.glif blockOctant-1378.stypo blockO_ctant-1378.stypo.glif blockOctant-2378 blockO_ctant-2378.glif blockOctant-2378.stypo blockO_ctant-2378.stypo.glif blockOctant-12378 blockO_ctant-12378.glif blockOctant-12378.stypo blockO_ctant-12378.stypo.glif blockOctant-478 blockO_ctant-478.glif blockOctant-478.stypo blockO_ctant-478.stypo.glif blockOctant-1478 blockO_ctant-1478.glif blockOctant-1478.stypo blockO_ctant-1478.stypo.glif blockOctant-2478 blockO_ctant-2478.glif blockOctant-2478.stypo blockO_ctant-2478.stypo.glif blockOctant-12478 blockO_ctant-12478.glif blockOctant-12478.stypo blockO_ctant-12478.stypo.glif blockOctant-3478 blockO_ctant-3478.glif blockOctant-3478.stypo blockO_ctant-3478.stypo.glif blockOctant-13478 blockO_ctant-13478.glif blockOctant-13478.stypo blockO_ctant-13478.stypo.glif blockOctant-23478 blockO_ctant-23478.glif blockOctant-23478.stypo blockO_ctant-23478.stypo.glif blockOctant-123478 blockO_ctant-123478.glif blockOctant-123478.stypo blockO_ctant-123478.stypo.glif blockOctant-578 blockO_ctant-578.glif blockOctant-578.stypo blockO_ctant-578.stypo.glif blockOctant-1578 blockO_ctant-1578.glif blockOctant-1578.stypo blockO_ctant-1578.stypo.glif blockOctant-2578 blockO_ctant-2578.glif blockOctant-2578.stypo blockO_ctant-2578.stypo.glif blockOctant-12578 blockO_ctant-12578.glif blockOctant-12578.stypo blockO_ctant-12578.stypo.glif blockOctant-3578 blockO_ctant-3578.glif blockOctant-3578.stypo blockO_ctant-3578.stypo.glif blockOctant-13578 blockO_ctant-13578.glif blockOctant-13578.stypo blockO_ctant-13578.stypo.glif blockOctant-23578 blockO_ctant-23578.glif blockOctant-23578.stypo blockO_ctant-23578.stypo.glif blockOctant-123578 blockO_ctant-123578.glif blockOctant-123578.stypo blockO_ctant-123578.stypo.glif blockOctant-4578 blockO_ctant-4578.glif blockOctant-4578.stypo blockO_ctant-4578.stypo.glif blockOctant-14578 blockO_ctant-14578.glif blockOctant-14578.stypo blockO_ctant-14578.stypo.glif blockOctant-24578 blockO_ctant-24578.glif blockOctant-24578.stypo blockO_ctant-24578.stypo.glif blockOctant-124578 blockO_ctant-124578.glif blockOctant-124578.stypo blockO_ctant-124578.stypo.glif blockOctant-34578 blockO_ctant-34578.glif blockOctant-34578.stypo blockO_ctant-34578.stypo.glif blockOctant-134578 blockO_ctant-134578.glif blockOctant-134578.stypo blockO_ctant-134578.stypo.glif blockOctant-234578 blockO_ctant-234578.glif blockOctant-234578.stypo blockO_ctant-234578.stypo.glif blockOctant-1234578 blockO_ctant-1234578.glif blockOctant-1234578.stypo blockO_ctant-1234578.stypo.glif blockOctant-678 blockO_ctant-678.glif blockOctant-678.stypo blockO_ctant-678.stypo.glif blockOctant-1678 blockO_ctant-1678.glif blockOctant-1678.stypo blockO_ctant-1678.stypo.glif blockOctant-2678 blockO_ctant-2678.glif blockOctant-2678.stypo blockO_ctant-2678.stypo.glif blockOctant-12678 blockO_ctant-12678.glif blockOctant-12678.stypo blockO_ctant-12678.stypo.glif blockOctant-3678 blockO_ctant-3678.glif blockOctant-3678.stypo blockO_ctant-3678.stypo.glif blockOctant-13678 blockO_ctant-13678.glif blockOctant-13678.stypo blockO_ctant-13678.stypo.glif blockOctant-23678 blockO_ctant-23678.glif blockOctant-23678.stypo blockO_ctant-23678.stypo.glif blockOctant-123678 blockO_ctant-123678.glif blockOctant-123678.stypo blockO_ctant-123678.stypo.glif blockOctant-4678 blockO_ctant-4678.glif blockOctant-4678.stypo blockO_ctant-4678.stypo.glif blockOctant-14678 blockO_ctant-14678.glif blockOctant-14678.stypo blockO_ctant-14678.stypo.glif blockOctant-24678 blockO_ctant-24678.glif blockOctant-24678.stypo blockO_ctant-24678.stypo.glif blockOctant-124678 blockO_ctant-124678.glif blockOctant-124678.stypo blockO_ctant-124678.stypo.glif blockOctant-34678 blockO_ctant-34678.glif blockOctant-34678.stypo blockO_ctant-34678.stypo.glif blockOctant-134678 blockO_ctant-134678.glif blockOctant-134678.stypo blockO_ctant-134678.stypo.glif blockOctant-234678 blockO_ctant-234678.glif blockOctant-234678.stypo blockO_ctant-234678.stypo.glif blockOctant-1234678 blockO_ctant-1234678.glif blockOctant-1234678.stypo blockO_ctant-1234678.stypo.glif blockOctant-15678 blockO_ctant-15678.glif blockOctant-15678.stypo blockO_ctant-15678.stypo.glif blockOctant-25678 blockO_ctant-25678.glif blockOctant-25678.stypo blockO_ctant-25678.stypo.glif blockOctant-125678 blockO_ctant-125678.glif blockOctant-125678.stypo blockO_ctant-125678.stypo.glif blockOctant-35678 blockO_ctant-35678.glif blockOctant-35678.stypo blockO_ctant-35678.stypo.glif blockOctant-235678 blockO_ctant-235678.glif blockOctant-235678.stypo blockO_ctant-235678.stypo.glif blockOctant-1235678 blockO_ctant-1235678.glif blockOctant-1235678.stypo blockO_ctant-1235678.stypo.glif blockOctant-45678 blockO_ctant-45678.glif blockOctant-45678.stypo blockO_ctant-45678.stypo.glif blockOctant-145678 blockO_ctant-145678.glif blockOctant-145678.stypo blockO_ctant-145678.stypo.glif blockOctant-1245678 blockO_ctant-1245678.glif blockOctant-1245678.stypo blockO_ctant-1245678.stypo.glif blockOctant-1345678 blockO_ctant-1345678.glif blockOctant-1345678.stypo blockO_ctant-1345678.stypo.glif blockOctant-2345678 blockO_ctant-2345678.glif blockOctant-2345678.stypo blockO_ctant-2345678.stypo.glif blockSedecimant-1 blockS_edecimant-1.glif blockSedecimant-1.stypo blockS_edecimant-1.stypo.glif blockSedecimant-2 blockS_edecimant-2.glif blockSedecimant-2.stypo blockS_edecimant-2.stypo.glif blockSedecimant-3 blockS_edecimant-3.glif blockSedecimant-3.stypo blockS_edecimant-3.stypo.glif blockSedecimant-4 blockS_edecimant-4.glif blockSedecimant-4.stypo blockS_edecimant-4.stypo.glif blockSedecimant-5 blockS_edecimant-5.glif blockSedecimant-5.stypo blockS_edecimant-5.stypo.glif blockSedecimant-6 blockS_edecimant-6.glif blockSedecimant-6.stypo blockS_edecimant-6.stypo.glif blockSedecimant-7 blockS_edecimant-7.glif blockSedecimant-7.stypo blockS_edecimant-7.stypo.glif blockSedecimant-8 blockS_edecimant-8.glif blockSedecimant-8.stypo blockS_edecimant-8.stypo.glif blockSedecimant-9 blockS_edecimant-9.glif blockSedecimant-9.stypo blockS_edecimant-9.stypo.glif blockSedecimant-A blockS_edecimant-A.glif blockSedecimant-A.stypo blockS_edecimant-A.stypo.glif blockSedecimant-B blockS_edecimant-B.glif blockSedecimant-B.stypo blockS_edecimant-B.stypo.glif blockSedecimant-C blockS_edecimant-C.glif blockSedecimant-C.stypo blockS_edecimant-C.stypo.glif blockSedecimant-D blockS_edecimant-D.glif blockSedecimant-D.stypo blockS_edecimant-D.stypo.glif blockSedecimant-E blockS_edecimant-E.glif blockSedecimant-E.stypo blockS_edecimant-E.stypo.glif blockSedecimant-F blockS_edecimant-F.glif blockSedecimant-F.stypo blockS_edecimant-F.stypo.glif blockSedecimant-G blockS_edecimant-G.glif blockSedecimant-G.stypo blockS_edecimant-G.stypo.glif blockSedecimant-EFG blockS_edecimant-EFG.glif blockSedecimant-EFG.stypo blockS_edecimant-EFG.stypo.glif blockSedecimant-DEF blockS_edecimant-DEF.glif blockSedecimant-DEF.stypo blockS_edecimant-DEF.stypo.glif blockSedecimant-9D blockS_edecimant-9D.glif blockSedecimant-9D.stypo blockS_edecimant-9D.stypo.glif blockSedecimant-59D blockS_edecimant-59D.glif blockSedecimant-59D.stypo blockS_edecimant-59D.stypo.glif blockSedecimant-159 blockS_edecimant-159.glif blockSedecimant-159.stypo blockS_edecimant-159.stypo.glif blockSedecimant-15 blockS_edecimant-15.glif blockSedecimant-15.stypo blockS_edecimant-15.stypo.glif blockSedecimant-123 blockS_edecimant-123.glif blockSedecimant-123.stypo blockS_edecimant-123.stypo.glif blockSedecimant-234 blockS_edecimant-234.glif blockSedecimant-234.stypo blockS_edecimant-234.stypo.glif blockSedecimant-48 blockS_edecimant-48.glif blockSedecimant-48.stypo blockS_edecimant-48.stypo.glif blockSedecimant-48C blockS_edecimant-48C.glif blockSedecimant-48C.stypo blockS_edecimant-48C.stypo.glif blockSedecimant-8CG blockS_edecimant-8CG.glif blockSedecimant-8CG.stypo blockS_edecimant-8CG.stypo.glif blockSedecimant-CG blockS_edecimant-CG.glif blockSedecimant-CG.stypo blockS_edecimant-CG.stypo.glif verticalOneEighthBlock-2 verticalO_neE_ighthB_lock-2.glif verticalOneEighthBlock-2.stypo verticalO_neE_ighthB_lock-2.stypo.glif verticalOneEighthBlock-3 verticalO_neE_ighthB_lock-3.glif verticalOneEighthBlock-3.stypo verticalO_neE_ighthB_lock-3.stypo.glif verticalOneEighthBlock-4 verticalO_neE_ighthB_lock-4.glif verticalOneEighthBlock-4.stypo verticalO_neE_ighthB_lock-4.stypo.glif verticalOneEighthBlock-5 verticalO_neE_ighthB_lock-5.glif verticalOneEighthBlock-5.stypo verticalO_neE_ighthB_lock-5.stypo.glif verticalOneEighthBlock-6 verticalO_neE_ighthB_lock-6.glif verticalOneEighthBlock-6.stypo verticalO_neE_ighthB_lock-6.stypo.glif verticalOneEighthBlock-7 verticalO_neE_ighthB_lock-7.glif verticalOneEighthBlock-7.stypo verticalO_neE_ighthB_lock-7.stypo.glif horizontalOneEightBlock-2 horizontalO_neE_ightB_lock-2.glif horizontalOneEightBlock-2.stypo horizontalO_neE_ightB_lock-2.stypo.glif horizontalOneEightBlock-3 horizontalO_neE_ightB_lock-3.glif horizontalOneEightBlock-3.stypo horizontalO_neE_ightB_lock-3.stypo.glif horizontalOneEightBlock-4 horizontalO_neE_ightB_lock-4.glif horizontalOneEightBlock-4.stypo horizontalO_neE_ightB_lock-4.stypo.glif horizontalOneEightBlock-5 horizontalO_neE_ightB_lock-5.glif horizontalOneEightBlock-5.stypo horizontalO_neE_ightB_lock-5.stypo.glif horizontalOneEightBlock-6 horizontalO_neE_ightB_lock-6.glif horizontalOneEightBlock-6.stypo horizontalO_neE_ightB_lock-6.stypo.glif horizontalOneEightBlock-7 horizontalO_neE_ightB_lock-7.glif horizontalOneEightBlock-7.stypo horizontalO_neE_ightB_lock-7.stypo.glif leftAndLowerOneEightBlock leftA_ndL_owerO_neE_ightB_lock.glif leftAndLowerOneEightBlock.stypo leftA_ndL_owerO_neE_ightB_lock.stypo.glif leftAndUpperOneEightBlock leftA_ndU_pperO_neE_ightB_lock.glif leftAndUpperOneEightBlock.stypo leftA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndUpperOneEightBlock rightA_ndU_pperO_neE_ightB_lock.glif rightAndUpperOneEightBlock.stypo rightA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndLowerOneEightBlock rightA_ndL_owerO_neE_ightB_lock.glif rightAndLowerOneEightBlock.stypo rightA_ndL_owerO_neE_ightB_lock.stypo.glif upperAndLowerOneEightBlock upperA_ndL_owerO_neE_ightB_lock.glif upperAndLowerOneEightBlock.stypo upperA_ndL_owerO_neE_ightB_lock.stypo.glif upperThreeEighthsBlock upperT_hreeE_ighthsB_lock.glif upperThreeEighthsBlock.stypo upperT_hreeE_ighthsB_lock.stypo.glif upperFiveEighthsBlock upperF_iveE_ighthsB_lock.glif upperFiveEighthsBlock.stypo upperF_iveE_ighthsB_lock.stypo.glif upperSevenEighthsBlock upperS_evenE_ighthsB_lock.glif upperSevenEighthsBlock.stypo upperS_evenE_ighthsB_lock.stypo.glif rightOneQuarterBlock rightO_neQ_uarterB_lock.glif rightOneQuarterBlock.stypo rightO_neQ_uarterB_lock.stypo.glif rightThreeEighthsBlock rightT_hreeE_ighthsB_lock.glif rightThreeEighthsBlock.stypo rightT_hreeE_ighthsB_lock.stypo.glif rightFiveEighthsBlock rightF_iveE_ighthsB_lock.glif rightFiveEighthsBlock.stypo rightF_iveE_ighthsB_lock.stypo.glif rightThreeQuartersBlock rightT_hreeQ_uartersB_lock.glif rightThreeQuartersBlock.stypo rightT_hreeQ_uartersB_lock.stypo.glif rightSevenEighthsBlock rightS_evenE_ighthsB_lock.glif rightSevenEighthsBlock.stypo rightS_evenE_ighthsB_lock.stypo.glif leftTwoThirdsBlock leftT_woT_hirdsB_lock.glif leftTwoThirdsBlock.stypo leftT_woT_hirdsB_lock.stypo.glif leftOneThirdBlock leftO_neT_hirdB_lock.glif leftOneThirdBlock.stypo leftO_neT_hirdB_lock.stypo.glif heavyHorizontalFill heavyH_orizontalF_ill.glif heavyHorizontalFill.stypo heavyH_orizontalF_ill.stypo.glif blockSeparatedQuadrant-1 blockS_eparatedQ_uadrant-1.glif blockSeparatedQuadrant-1.stypo blockS_eparatedQ_uadrant-1.stypo.glif blockSeparatedQuadrant-2 blockS_eparatedQ_uadrant-2.glif blockSeparatedQuadrant-2.stypo blockS_eparatedQ_uadrant-2.stypo.glif blockSeparatedQuadrant-12 blockS_eparatedQ_uadrant-12.glif blockSeparatedQuadrant-12.stypo blockS_eparatedQ_uadrant-12.stypo.glif blockSeparatedQuadrant-3 blockS_eparatedQ_uadrant-3.glif blockSeparatedQuadrant-3.stypo blockS_eparatedQ_uadrant-3.stypo.glif blockSeparatedQuadrant-13 blockS_eparatedQ_uadrant-13.glif blockSeparatedQuadrant-13.stypo blockS_eparatedQ_uadrant-13.stypo.glif blockSeparatedQuadrant-23 blockS_eparatedQ_uadrant-23.glif blockSeparatedQuadrant-23.stypo blockS_eparatedQ_uadrant-23.stypo.glif blockSeparatedQuadrant-123 blockS_eparatedQ_uadrant-123.glif blockSeparatedQuadrant-123.stypo blockS_eparatedQ_uadrant-123.stypo.glif blockSeparatedQuadrant-4 blockS_eparatedQ_uadrant-4.glif blockSeparatedQuadrant-4.stypo blockS_eparatedQ_uadrant-4.stypo.glif blockSeparatedQuadrant-14 blockS_eparatedQ_uadrant-14.glif blockSeparatedQuadrant-14.stypo blockS_eparatedQ_uadrant-14.stypo.glif blockSeparatedQuadrant-24 blockS_eparatedQ_uadrant-24.glif blockSeparatedQuadrant-24.stypo blockS_eparatedQ_uadrant-24.stypo.glif blockSeparatedQuadrant-124 blockS_eparatedQ_uadrant-124.glif blockSeparatedQuadrant-124.stypo blockS_eparatedQ_uadrant-124.stypo.glif blockSeparatedQuadrant-34 blockS_eparatedQ_uadrant-34.glif blockSeparatedQuadrant-34.stypo blockS_eparatedQ_uadrant-34.stypo.glif blockSeparatedQuadrant-134 blockS_eparatedQ_uadrant-134.glif blockSeparatedQuadrant-134.stypo blockS_eparatedQ_uadrant-134.stypo.glif blockSeparatedQuadrant-234 blockS_eparatedQ_uadrant-234.glif blockSeparatedQuadrant-234.stypo blockS_eparatedQ_uadrant-234.stypo.glif blockSeparatedQuadrant-1234 blockS_eparatedQ_uadrant-1234.glif blockSeparatedQuadrant-1234.stypo blockS_eparatedQ_uadrant-1234.stypo.glif blockSeparatedSextant-1 blockS_eparatedS_extant-1.glif blockSeparatedSextant-1.stypo blockS_eparatedS_extant-1.stypo.glif blockSeparatedSextant-2 blockS_eparatedS_extant-2.glif blockSeparatedSextant-2.stypo blockS_eparatedS_extant-2.stypo.glif blockSeparatedSextant-12 blockS_eparatedS_extant-12.glif blockSeparatedSextant-12.stypo blockS_eparatedS_extant-12.stypo.glif blockSeparatedSextant-3 blockS_eparatedS_extant-3.glif blockSeparatedSextant-3.stypo blockS_eparatedS_extant-3.stypo.glif blockSeparatedSextant-13 blockS_eparatedS_extant-13.glif blockSeparatedSextant-13.stypo blockS_eparatedS_extant-13.stypo.glif blockSeparatedSextant-23 blockS_eparatedS_extant-23.glif blockSeparatedSextant-23.stypo blockS_eparatedS_extant-23.stypo.glif blockSeparatedSextant-123 blockS_eparatedS_extant-123.glif blockSeparatedSextant-123.stypo blockS_eparatedS_extant-123.stypo.glif blockSeparatedSextant-4 blockS_eparatedS_extant-4.glif blockSeparatedSextant-4.stypo blockS_eparatedS_extant-4.stypo.glif blockSeparatedSextant-14 blockS_eparatedS_extant-14.glif blockSeparatedSextant-14.stypo blockS_eparatedS_extant-14.stypo.glif blockSeparatedSextant-24 blockS_eparatedS_extant-24.glif blockSeparatedSextant-24.stypo blockS_eparatedS_extant-24.stypo.glif blockSeparatedSextant-124 blockS_eparatedS_extant-124.glif blockSeparatedSextant-124.stypo blockS_eparatedS_extant-124.stypo.glif blockSeparatedSextant-34 blockS_eparatedS_extant-34.glif blockSeparatedSextant-34.stypo blockS_eparatedS_extant-34.stypo.glif blockSeparatedSextant-134 blockS_eparatedS_extant-134.glif blockSeparatedSextant-134.stypo blockS_eparatedS_extant-134.stypo.glif blockSeparatedSextant-234 blockS_eparatedS_extant-234.glif blockSeparatedSextant-234.stypo blockS_eparatedS_extant-234.stypo.glif blockSeparatedSextant-1234 blockS_eparatedS_extant-1234.glif blockSeparatedSextant-1234.stypo blockS_eparatedS_extant-1234.stypo.glif blockSeparatedSextant-5 blockS_eparatedS_extant-5.glif blockSeparatedSextant-5.stypo blockS_eparatedS_extant-5.stypo.glif blockSeparatedSextant-15 blockS_eparatedS_extant-15.glif blockSeparatedSextant-15.stypo blockS_eparatedS_extant-15.stypo.glif blockSeparatedSextant-25 blockS_eparatedS_extant-25.glif blockSeparatedSextant-25.stypo blockS_eparatedS_extant-25.stypo.glif blockSeparatedSextant-125 blockS_eparatedS_extant-125.glif blockSeparatedSextant-125.stypo blockS_eparatedS_extant-125.stypo.glif blockSeparatedSextant-35 blockS_eparatedS_extant-35.glif blockSeparatedSextant-35.stypo blockS_eparatedS_extant-35.stypo.glif blockSeparatedSextant-135 blockS_eparatedS_extant-135.glif blockSeparatedSextant-135.stypo blockS_eparatedS_extant-135.stypo.glif blockSeparatedSextant-235 blockS_eparatedS_extant-235.glif blockSeparatedSextant-235.stypo blockS_eparatedS_extant-235.stypo.glif blockSeparatedSextant-1235 blockS_eparatedS_extant-1235.glif blockSeparatedSextant-1235.stypo blockS_eparatedS_extant-1235.stypo.glif blockSeparatedSextant-45 blockS_eparatedS_extant-45.glif blockSeparatedSextant-45.stypo blockS_eparatedS_extant-45.stypo.glif blockSeparatedSextant-145 blockS_eparatedS_extant-145.glif blockSeparatedSextant-145.stypo blockS_eparatedS_extant-145.stypo.glif blockSeparatedSextant-245 blockS_eparatedS_extant-245.glif blockSeparatedSextant-245.stypo blockS_eparatedS_extant-245.stypo.glif blockSeparatedSextant-1245 blockS_eparatedS_extant-1245.glif blockSeparatedSextant-1245.stypo blockS_eparatedS_extant-1245.stypo.glif blockSeparatedSextant-345 blockS_eparatedS_extant-345.glif blockSeparatedSextant-345.stypo blockS_eparatedS_extant-345.stypo.glif blockSeparatedSextant-1345 blockS_eparatedS_extant-1345.glif blockSeparatedSextant-1345.stypo blockS_eparatedS_extant-1345.stypo.glif blockSeparatedSextant-2345 blockS_eparatedS_extant-2345.glif blockSeparatedSextant-2345.stypo blockS_eparatedS_extant-2345.stypo.glif blockSeparatedSextant-12345 blockS_eparatedS_extant-12345.glif blockSeparatedSextant-12345.stypo blockS_eparatedS_extant-12345.stypo.glif blockSeparatedSextant-6 blockS_eparatedS_extant-6.glif blockSeparatedSextant-6.stypo blockS_eparatedS_extant-6.stypo.glif blockSeparatedSextant-16 blockS_eparatedS_extant-16.glif blockSeparatedSextant-16.stypo blockS_eparatedS_extant-16.stypo.glif blockSeparatedSextant-26 blockS_eparatedS_extant-26.glif blockSeparatedSextant-26.stypo blockS_eparatedS_extant-26.stypo.glif blockSeparatedSextant-126 blockS_eparatedS_extant-126.glif blockSeparatedSextant-126.stypo blockS_eparatedS_extant-126.stypo.glif blockSeparatedSextant-36 blockS_eparatedS_extant-36.glif blockSeparatedSextant-36.stypo blockS_eparatedS_extant-36.stypo.glif blockSeparatedSextant-136 blockS_eparatedS_extant-136.glif blockSeparatedSextant-136.stypo blockS_eparatedS_extant-136.stypo.glif blockSeparatedSextant-236 blockS_eparatedS_extant-236.glif blockSeparatedSextant-236.stypo blockS_eparatedS_extant-236.stypo.glif blockSeparatedSextant-1236 blockS_eparatedS_extant-1236.glif blockSeparatedSextant-1236.stypo blockS_eparatedS_extant-1236.stypo.glif blockSeparatedSextant-46 blockS_eparatedS_extant-46.glif blockSeparatedSextant-46.stypo blockS_eparatedS_extant-46.stypo.glif blockSeparatedSextant-146 blockS_eparatedS_extant-146.glif blockSeparatedSextant-146.stypo blockS_eparatedS_extant-146.stypo.glif blockSeparatedSextant-246 blockS_eparatedS_extant-246.glif blockSeparatedSextant-246.stypo blockS_eparatedS_extant-246.stypo.glif blockSeparatedSextant-1246 blockS_eparatedS_extant-1246.glif blockSeparatedSextant-1246.stypo blockS_eparatedS_extant-1246.stypo.glif blockSeparatedSextant-346 blockS_eparatedS_extant-346.glif blockSeparatedSextant-346.stypo blockS_eparatedS_extant-346.stypo.glif blockSeparatedSextant-1346 blockS_eparatedS_extant-1346.glif blockSeparatedSextant-1346.stypo blockS_eparatedS_extant-1346.stypo.glif blockSeparatedSextant-2346 blockS_eparatedS_extant-2346.glif blockSeparatedSextant-2346.stypo blockS_eparatedS_extant-2346.stypo.glif blockSeparatedSextant-12346 blockS_eparatedS_extant-12346.glif blockSeparatedSextant-12346.stypo blockS_eparatedS_extant-12346.stypo.glif blockSeparatedSextant-56 blockS_eparatedS_extant-56.glif blockSeparatedSextant-56.stypo blockS_eparatedS_extant-56.stypo.glif blockSeparatedSextant-156 blockS_eparatedS_extant-156.glif blockSeparatedSextant-156.stypo blockS_eparatedS_extant-156.stypo.glif blockSeparatedSextant-256 blockS_eparatedS_extant-256.glif blockSeparatedSextant-256.stypo blockS_eparatedS_extant-256.stypo.glif blockSeparatedSextant-1256 blockS_eparatedS_extant-1256.glif blockSeparatedSextant-1256.stypo blockS_eparatedS_extant-1256.stypo.glif blockSeparatedSextant-356 blockS_eparatedS_extant-356.glif blockSeparatedSextant-356.stypo blockS_eparatedS_extant-356.stypo.glif blockSeparatedSextant-1356 blockS_eparatedS_extant-1356.glif blockSeparatedSextant-1356.stypo blockS_eparatedS_extant-1356.stypo.glif blockSeparatedSextant-2356 blockS_eparatedS_extant-2356.glif blockSeparatedSextant-2356.stypo blockS_eparatedS_extant-2356.stypo.glif blockSeparatedSextant-12356 blockS_eparatedS_extant-12356.glif blockSeparatedSextant-12356.stypo blockS_eparatedS_extant-12356.stypo.glif blockSeparatedSextant-456 blockS_eparatedS_extant-456.glif blockSeparatedSextant-456.stypo blockS_eparatedS_extant-456.stypo.glif blockSeparatedSextant-1456 blockS_eparatedS_extant-1456.glif blockSeparatedSextant-1456.stypo blockS_eparatedS_extant-1456.stypo.glif blockSeparatedSextant-2456 blockS_eparatedS_extant-2456.glif blockSeparatedSextant-2456.stypo blockS_eparatedS_extant-2456.stypo.glif blockSeparatedSextant-12456 blockS_eparatedS_extant-12456.glif blockSeparatedSextant-12456.stypo blockS_eparatedS_extant-12456.stypo.glif blockSeparatedSextant-3456 blockS_eparatedS_extant-3456.glif blockSeparatedSextant-3456.stypo blockS_eparatedS_extant-3456.stypo.glif blockSeparatedSextant-13456 blockS_eparatedS_extant-13456.glif blockSeparatedSextant-13456.stypo blockS_eparatedS_extant-13456.stypo.glif blockSeparatedSextant-23456 blockS_eparatedS_extant-23456.glif blockSeparatedSextant-23456.stypo blockS_eparatedS_extant-23456.stypo.glif blockSeparatedSextant-123456 blockS_eparatedS_extant-123456.glif blockSeparatedSextant-123456.stypo blockS_eparatedS_extant-123456.stypo.glif segmentedDigit0 segmentedD_igit0.glif segmentedDigit1 segmentedD_igit1.glif segmentedDigit2 segmentedD_igit2.glif segmentedDigit3 segmentedD_igit3.glif segmentedDigit4 segmentedD_igit4.glif segmentedDigit5 segmentedD_igit5.glif segmentedDigit6 segmentedD_igit6.glif segmentedDigit7 segmentedD_igit7.glif segmentedDigit8 segmentedD_igit8.glif segmentedDigit9 segmentedD_igit9.glif largeType-1CE1A largeT_ype-1CE1A.glif largeType-1CE1A.stypo largeT_ype-1CE1A.stypo.glif largeType-1CE1B largeT_ype-1CE1B.glif largeType-1CE1B.stypo largeT_ype-1CE1B.stypo.glif largeType-1CE1C largeT_ype-1CE1C.glif largeType-1CE1C.stypo largeT_ype-1CE1C.stypo.glif largeType-1CE1D largeT_ype-1CE1D.glif largeType-1CE1D.stypo largeT_ype-1CE1D.stypo.glif largeType-1CE1E largeT_ype-1CE1E.glif largeType-1CE1E.stypo largeT_ype-1CE1E.stypo.glif largeType-1CE1F largeT_ype-1CE1F.glif largeType-1CE1F.stypo largeT_ype-1CE1F.stypo.glif largeType-1CE20 largeT_ype-1CE20.glif largeType-1CE20.stypo largeT_ype-1CE20.stypo.glif largeType-1CE21 largeT_ype-1CE21.glif largeType-1CE21.stypo largeT_ype-1CE21.stypo.glif largeType-1CE22 largeT_ype-1CE22.glif largeType-1CE22.stypo largeT_ype-1CE22.stypo.glif largeType-1CE23 largeT_ype-1CE23.glif largeType-1CE23.stypo largeT_ype-1CE23.stypo.glif largeType-1CE24 largeT_ype-1CE24.glif largeType-1CE24.stypo largeT_ype-1CE24.stypo.glif largeType-1CE25 largeT_ype-1CE25.glif largeType-1CE25.stypo largeT_ype-1CE25.stypo.glif largeType-1CE26 largeT_ype-1CE26.glif largeType-1CE26.stypo largeT_ype-1CE26.stypo.glif largeType-1CE27 largeT_ype-1CE27.glif largeType-1CE27.stypo largeT_ype-1CE27.stypo.glif largeType-1CE28 largeT_ype-1CE28.glif largeType-1CE28.stypo largeT_ype-1CE28.stypo.glif largeType-1CE29 largeT_ype-1CE29.glif largeType-1CE29.stypo largeT_ype-1CE29.stypo.glif largeType-1CE2A largeT_ype-1CE2A.glif largeType-1CE2A.stypo largeT_ype-1CE2A.stypo.glif largeType-1CE2B largeT_ype-1CE2B.glif largeType-1CE2B.stypo largeT_ype-1CE2B.stypo.glif largeType-1CE2C largeT_ype-1CE2C.glif largeType-1CE2C.stypo largeT_ype-1CE2C.stypo.glif largeType-1CE2D largeT_ype-1CE2D.glif largeType-1CE2D.stypo largeT_ype-1CE2D.stypo.glif largeType-1CE2E largeT_ype-1CE2E.glif largeType-1CE2E.stypo largeT_ype-1CE2E.stypo.glif largeType-1CE2F largeT_ype-1CE2F.glif largeType-1CE2F.stypo largeT_ype-1CE2F.stypo.glif largeType-1CE30 largeT_ype-1CE30.glif largeType-1CE30.stypo largeT_ype-1CE30.stypo.glif largeType-1CE31 largeT_ype-1CE31.glif largeType-1CE31.stypo largeT_ype-1CE31.stypo.glif largeType-1CE32 largeT_ype-1CE32.glif largeType-1CE32.stypo largeT_ype-1CE32.stypo.glif largeType-1CE33 largeT_ype-1CE33.glif largeType-1CE33.stypo largeT_ype-1CE33.stypo.glif largeType-1CE34 largeT_ype-1CE34.glif largeType-1CE34.stypo largeT_ype-1CE34.stypo.glif largeType-1CE35 largeT_ype-1CE35.glif largeType-1CE35.stypo largeT_ype-1CE35.stypo.glif largeType-1CE36 largeT_ype-1CE36.glif largeType-1CE36.stypo largeT_ype-1CE36.stypo.glif largeType-1CE37 largeT_ype-1CE37.glif largeType-1CE37.stypo largeT_ype-1CE37.stypo.glif largeType-1CE38 largeT_ype-1CE38.glif largeType-1CE38.stypo largeT_ype-1CE38.stypo.glif largeType-1CE39 largeT_ype-1CE39.glif largeType-1CE39.stypo largeT_ype-1CE39.stypo.glif largeType-1CE3A largeT_ype-1CE3A.glif largeType-1CE3A.stypo largeT_ype-1CE3A.stypo.glif largeType-1CE3B largeT_ype-1CE3B.glif largeType-1CE3B.stypo largeT_ype-1CE3B.stypo.glif largeType-1CE3C largeT_ype-1CE3C.glif largeType-1CE3C.stypo largeT_ype-1CE3C.stypo.glif largeType-1CE3D largeT_ype-1CE3D.glif largeType-1CE3D.stypo largeT_ype-1CE3D.stypo.glif largeType-1CE3E largeT_ype-1CE3E.glif largeType-1CE3E.stypo largeT_ype-1CE3E.stypo.glif largeType-1CE3F largeT_ype-1CE3F.glif largeType-1CE3F.stypo largeT_ype-1CE3F.stypo.glif largeType-1CE40 largeT_ype-1CE40.glif largeType-1CE40.stypo largeT_ype-1CE40.stypo.glif largeType-1CE41 largeT_ype-1CE41.glif largeType-1CE41.stypo largeT_ype-1CE41.stypo.glif largeType-1CE42 largeT_ype-1CE42.glif largeType-1CE42.stypo largeT_ype-1CE42.stypo.glif largeType-1CE43 largeT_ype-1CE43.glif largeType-1CE43.stypo largeT_ype-1CE43.stypo.glif largeType-1CE44 largeT_ype-1CE44.glif largeType-1CE44.stypo largeT_ype-1CE44.stypo.glif largeType-1CE45 largeT_ype-1CE45.glif largeType-1CE45.stypo largeT_ype-1CE45.stypo.glif largeType-1CE46 largeT_ype-1CE46.glif largeType-1CE46.stypo largeT_ype-1CE46.stypo.glif largeType-1CE47 largeT_ype-1CE47.glif largeType-1CE47.stypo largeT_ype-1CE47.stypo.glif largeType-1CE48 largeT_ype-1CE48.glif largeType-1CE48.stypo largeT_ype-1CE48.stypo.glif largeType-1CE49 largeT_ype-1CE49.glif largeType-1CE49.stypo largeT_ype-1CE49.stypo.glif largeType-1CE4A largeT_ype-1CE4A.glif largeType-1CE4A.stypo largeT_ype-1CE4A.stypo.glif largeType-1CE4B largeT_ype-1CE4B.glif largeType-1CE4B.stypo largeT_ype-1CE4B.stypo.glif largeType-1CE4C largeT_ype-1CE4C.glif largeType-1CE4C.stypo largeT_ype-1CE4C.stypo.glif largeType-1CE4D largeT_ype-1CE4D.glif largeType-1CE4D.stypo largeT_ype-1CE4D.stypo.glif largeType-1CE4E largeT_ype-1CE4E.glif largeType-1CE4E.stypo largeT_ype-1CE4E.stypo.glif largeType-1CE4F largeT_ype-1CE4F.glif largeType-1CE4F.stypo largeT_ype-1CE4F.stypo.glif largeType-1CE50 largeT_ype-1CE50.glif largeType-1CE50.stypo largeT_ype-1CE50.stypo.glif ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/copyright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ uni25A6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/cuberoot-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _cuberoot_fourthroot-ar alignment -1 index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey _cuberoot_fourthroot-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _cuberoot_fourthroot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/currency.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/d.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dad-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dadD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dagesh-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dagger.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/daggerdbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dahal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dahal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelowT_ah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalD_otbelowT_ah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalF_ourdots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalF_ourdots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dal-ar alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_hreedotsdown-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 2 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dal-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalV_invertedbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dalet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/daletdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/damma-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dammatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dashdownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dateseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dcaron.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dcroat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ddahal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ddahal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ddal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ddal-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/de-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/decimalseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/degree.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deleteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/delta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name four.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name one.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name three.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name two.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ uni25A9 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/diamondB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresiscomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresiscomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/divide.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/divisionslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dong.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccentcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dotcenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots123678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots124678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots125-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots125678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots126-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots12678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots127-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots128-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots134678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots135-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots135678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots136-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots13678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots137-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots138-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots145-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots145678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots146-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots14678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots147-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots148-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots15-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots156-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots15678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots157-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots158-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots16-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots167-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots1678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots168-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots17-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots178-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots18-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots23678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots24678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots25-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots25678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots26-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots2678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots27-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots28-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots34678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots35-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots35678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots36-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots3678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots37-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots38-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots45-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots45678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots46-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots4678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots47-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots48-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots5-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots56-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots5678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots57-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots58-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots6-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots67-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots68-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots7-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots78-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dots8-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dottedC_ircle.glif ================================================ uni25CC ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dottedS_quare.glif ================================================ uni2B1A ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.comb.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ uni25BE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downB_lackT_riangle.glif ================================================ triagdn ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ uni25BF ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/downW_hiteT_riangle.glif ================================================ uni25BD ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dtail.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dul-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dul-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dyeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/dzhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alefMaksura-ar.fina.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotsverticalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/e.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ebreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ecircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/edieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/edotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/edotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ef-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ef-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/egrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey eight-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey eight-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name eight-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name eight-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eight.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eightinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eightsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/el-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/el-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ellipsis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/em-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/emacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/emdash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/en-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name M.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/endofayah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eng.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/enquiryC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name Q.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/epsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/epsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/equivalence.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/er-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ereversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/es-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/escapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name C.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/esh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/estimated.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/etatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eth.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/etilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/euro.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/eurocurrency.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclamdouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/exclamdown.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ezh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/f.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fatha-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fathatan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/feh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otM_ovedbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehD_otless-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fehT_wodotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/filledR_ect.glif ================================================ filledrect ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalkaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalkafdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalmem-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalnun-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalpe-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finalpedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/finaltsadi-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/firsttonechinese.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fisheye.glif ================================================ uni25C9 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/five.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveeighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fiveinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fivesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/florin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/footnotemarker-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/formF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.small01.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urdu.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urduinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persian.urdusuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persianbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persiancenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _four-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/four.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fourdotscenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fourdotscenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fourdotscenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fourinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/foursuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fourthroot-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _fourthroot-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey _cuberoot_fourthroot-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _cuberoot_fourthroot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fraction.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/franc.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fullB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fullB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/fullstop-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/g.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey keheh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey keheh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey keheh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafI_nvertedstroke-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _invertedstroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafT_wodotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gafsarkashabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gamma-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gamma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gbreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ge-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ge-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/geresh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/germandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gershayim-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghain-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghainD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ghestroke-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gheupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gimel-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gimeldagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstop.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstopmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/glottalstopreversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gravecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gravecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gravetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/greaterequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name G.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/guarani.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/gueh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/guillemetleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/guillemetright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/guilsinglleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/guilsinglright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/h.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hah-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahF_ourbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahH_amzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotstahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotstahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hah-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name hah-ar.init anchor bottom.dot index 1 name tahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hah-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_ahbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name tahbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsupbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hahT_wodotsverticalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hamza-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hamzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hardsign-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/he-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heartB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/heh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehA_lefabove-ar.init.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehA_lefabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehD_oachashmee-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehV_invertedabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _hehgoalcomma public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _hehgoalcomma public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoal-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hehgoalH_amzaabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/het-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamza-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzasmall-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name highhamza-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alef-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.fina.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaA_lef-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 0 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaY_eh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name highhamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/holam-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/holamhaser-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hookabovecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hookabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ uni2B23 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalF_illS_quare.glif ================================================ uni25A4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name H.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontalbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horizontallineextension.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/horncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/house.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hryvnia.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlautcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hungarumlautcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/hyphentwo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ia-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ibreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/icircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/idieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/idotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/idotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ie-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iegrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/igrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ihookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ii-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ii-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iigrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iigrave-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iishort-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ij.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ij_acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb alignment -1 index 1 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/imacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/imacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/increment.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/infinity.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/integral.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/integralbt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/integraltp.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/intersection.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/inverseB_ullet.glif ================================================ invbullet ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ invcircle ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/io-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iota-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iota.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iotadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iotadieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iotatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/itilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iu-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/j.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jdotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeem-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeemT_wodotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/jeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/k.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name keheh-ar.fina alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name kaf-ar.init alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name keheh-ar.medi alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =kafswash-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.medi.alt.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey kafswash-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kafswash-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey kafswash-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kaiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kappa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kashida-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kasra-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kasratan-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _fatha-ar com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/keheh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_hreedotsupbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kehehT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kgreenlandic.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/khah-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kip.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizoe-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizoe-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizyu-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kirghizyu-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/kje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/klinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/l.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.init.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam-ar.medi.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _bar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamB_ar-ar.medi.rlig.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_otabove-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam-ar.fina com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _doublebar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamD_oublebar-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsbelow-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.init.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamV_above-ar.medi.rlig.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.fina.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alef-ar.short.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_2 index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_2 index 1 name hamzaabove-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzabelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefH_amzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefM_adda-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefM_adda-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefW_asla-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_alefW_asla-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey lam_alef-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey lam_alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lam_lam_heh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lambdastroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lamed-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lameddagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeC_ircle.glif ================================================ uni25EF ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE20.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE21.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE22.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE27.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE28.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE29.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE30.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE31.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE32.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE33.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE37.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE38.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE39.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE40.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE41.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE42.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE43.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE44.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE49.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE50.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lari.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId master01 com.schriftgestaltung.layerOrderInGlyph..notdef 0 com.schriftgestaltung.layerOrderInGlyph.A 0 com.schriftgestaltung.layerOrderInGlyph.A-cy 0 com.schriftgestaltung.layerOrderInGlyph.A.half 0 com.schriftgestaltung.layerOrderInGlyph.AE 0 com.schriftgestaltung.layerOrderInGlyph.AEacute 0 com.schriftgestaltung.layerOrderInGlyph.Aacute 0 com.schriftgestaltung.layerOrderInGlyph.Abreve 0 com.schriftgestaltung.layerOrderInGlyph.Abreveacute 0 com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Abrevegrave 0 com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove 0 com.schriftgestaltung.layerOrderInGlyph.Abrevetilde 0 com.schriftgestaltung.layerOrderInGlyph.Acaron 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.Adieresis 0 com.schriftgestaltung.layerOrderInGlyph.Adotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Agrave 0 com.schriftgestaltung.layerOrderInGlyph.Ahookabove 0 com.schriftgestaltung.layerOrderInGlyph.Alpha 0 com.schriftgestaltung.layerOrderInGlyph.Alpha-latin 0 com.schriftgestaltung.layerOrderInGlyph.Alphatonos 0 com.schriftgestaltung.layerOrderInGlyph.Amacron 0 com.schriftgestaltung.layerOrderInGlyph.Aogonek 0 com.schriftgestaltung.layerOrderInGlyph.Aring 0 com.schriftgestaltung.layerOrderInGlyph.Aringacute 0 com.schriftgestaltung.layerOrderInGlyph.Asmall 0 com.schriftgestaltung.layerOrderInGlyph.Astroke 0 com.schriftgestaltung.layerOrderInGlyph.Atilde 0 com.schriftgestaltung.layerOrderInGlyph.B 0 com.schriftgestaltung.layerOrderInGlyph.B.half 0 com.schriftgestaltung.layerOrderInGlyph.Be-cy 0 com.schriftgestaltung.layerOrderInGlyph.Beta 0 com.schriftgestaltung.layerOrderInGlyph.C 0 com.schriftgestaltung.layerOrderInGlyph.C.half 0 com.schriftgestaltung.layerOrderInGlyph.CR 0 com.schriftgestaltung.layerOrderInGlyph.Cacute 0 com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.Ccaron 0 com.schriftgestaltung.layerOrderInGlyph.Ccedilla 0 com.schriftgestaltung.layerOrderInGlyph.Ccircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Cdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.Che-cy 0 com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Chi 0 com.schriftgestaltung.layerOrderInGlyph.Cstroke 0 com.schriftgestaltung.layerOrderInGlyph.D 0 com.schriftgestaltung.layerOrderInGlyph.D.half 0 com.schriftgestaltung.layerOrderInGlyph.Dafrican 0 com.schriftgestaltung.layerOrderInGlyph.Dcaron 0 com.schriftgestaltung.layerOrderInGlyph.Dcroat 0 com.schriftgestaltung.layerOrderInGlyph.De-cy 0 com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Delta 0 com.schriftgestaltung.layerOrderInGlyph.Dje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Dze-cy 0 com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.E 0 com.schriftgestaltung.layerOrderInGlyph.E-cy 0 com.schriftgestaltung.layerOrderInGlyph.E.half 0 com.schriftgestaltung.layerOrderInGlyph.Eacute 0 com.schriftgestaltung.layerOrderInGlyph.Ebreve 0 com.schriftgestaltung.layerOrderInGlyph.Ecaron 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.Edieresis 0 com.schriftgestaltung.layerOrderInGlyph.Edotaccent 0 com.schriftgestaltung.layerOrderInGlyph.Edotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ef-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Egrave 0 com.schriftgestaltung.layerOrderInGlyph.Ehookabove 0 com.schriftgestaltung.layerOrderInGlyph.El-cy 0 com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Em-cy 0 com.schriftgestaltung.layerOrderInGlyph.Emacron 0 com.schriftgestaltung.layerOrderInGlyph.En-cy 0 com.schriftgestaltung.layerOrderInGlyph.Endescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Eng 0 com.schriftgestaltung.layerOrderInGlyph.Eogonek 0 com.schriftgestaltung.layerOrderInGlyph.Eopen 0 com.schriftgestaltung.layerOrderInGlyph.Epsilon 0 com.schriftgestaltung.layerOrderInGlyph.Epsilontonos 0 com.schriftgestaltung.layerOrderInGlyph.Er-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ereversed 0 com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy 0 com.schriftgestaltung.layerOrderInGlyph.Es-cy 0 com.schriftgestaltung.layerOrderInGlyph.Esh 0 com.schriftgestaltung.layerOrderInGlyph.Eta 0 com.schriftgestaltung.layerOrderInGlyph.Etatonos 0 com.schriftgestaltung.layerOrderInGlyph.Eth 0 com.schriftgestaltung.layerOrderInGlyph.Etilde 0 com.schriftgestaltung.layerOrderInGlyph.Ezh 0 com.schriftgestaltung.layerOrderInGlyph.F 0 com.schriftgestaltung.layerOrderInGlyph.F.half 0 com.schriftgestaltung.layerOrderInGlyph.Fhook 0 com.schriftgestaltung.layerOrderInGlyph.G 0 com.schriftgestaltung.layerOrderInGlyph.G.half 0 com.schriftgestaltung.layerOrderInGlyph.Gamma 0 com.schriftgestaltung.layerOrderInGlyph.Gammaafrican 0 com.schriftgestaltung.layerOrderInGlyph.Gbreve 0 com.schriftgestaltung.layerOrderInGlyph.Gcaron 0 com.schriftgestaltung.layerOrderInGlyph.Gcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Gdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.Ge-cy 0 com.schriftgestaltung.layerOrderInGlyph.Germandbls 0 com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gsmall 0 com.schriftgestaltung.layerOrderInGlyph.Gstroke 0 com.schriftgestaltung.layerOrderInGlyph.H 0 com.schriftgestaltung.layerOrderInGlyph.H.half 0 com.schriftgestaltung.layerOrderInGlyph.Ha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hbar 0 com.schriftgestaltung.layerOrderInGlyph.Hcaron 0 com.schriftgestaltung.layerOrderInGlyph.Hcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Hdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.I 0 com.schriftgestaltung.layerOrderInGlyph.I-cy 0 com.schriftgestaltung.layerOrderInGlyph.I.half 0 com.schriftgestaltung.layerOrderInGlyph.IJ 0 com.schriftgestaltung.layerOrderInGlyph.IJ_acute 0 com.schriftgestaltung.layerOrderInGlyph.Ia-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iacute 0 com.schriftgestaltung.layerOrderInGlyph.Ibreve 0 com.schriftgestaltung.layerOrderInGlyph.Icircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Idieresis 0 com.schriftgestaltung.layerOrderInGlyph.Idotaccent 0 com.schriftgestaltung.layerOrderInGlyph.Idotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ie-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.Igrave 0 com.schriftgestaltung.layerOrderInGlyph.Ihookabove 0 com.schriftgestaltung.layerOrderInGlyph.Ii-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iishort-cy 0 com.schriftgestaltung.layerOrderInGlyph.Imacron 0 com.schriftgestaltung.layerOrderInGlyph.Imacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.Io-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iogonek 0 com.schriftgestaltung.layerOrderInGlyph.Iota 0 com.schriftgestaltung.layerOrderInGlyph.Iotaafrican 0 com.schriftgestaltung.layerOrderInGlyph.Iotadieresis 0 com.schriftgestaltung.layerOrderInGlyph.Iotatonos 0 com.schriftgestaltung.layerOrderInGlyph.Ismall 0 com.schriftgestaltung.layerOrderInGlyph.Itilde 0 com.schriftgestaltung.layerOrderInGlyph.Iu-cy 0 com.schriftgestaltung.layerOrderInGlyph.J 0 com.schriftgestaltung.layerOrderInGlyph.Jacute 0 com.schriftgestaltung.layerOrderInGlyph.Jcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Je-cy 0 com.schriftgestaltung.layerOrderInGlyph.K 0 com.schriftgestaltung.layerOrderInGlyph.K.half 0 com.schriftgestaltung.layerOrderInGlyph.Ka-cy 0 com.schriftgestaltung.layerOrderInGlyph.Kacute 0 com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.KaiSymbol 0 com.schriftgestaltung.layerOrderInGlyph.Kappa 0 com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Kdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Kje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Klinebelow 0 com.schriftgestaltung.layerOrderInGlyph.L 0 com.schriftgestaltung.layerOrderInGlyph.L.half 0 com.schriftgestaltung.layerOrderInGlyph.LIG 0 com.schriftgestaltung.layerOrderInGlyph.Lacute 0 com.schriftgestaltung.layerOrderInGlyph.Lambda 0 com.schriftgestaltung.layerOrderInGlyph.Lbar 0 com.schriftgestaltung.layerOrderInGlyph.Lcaron 0 com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Ldot 0 com.schriftgestaltung.layerOrderInGlyph.Ldotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Lje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Llinebelow 0 com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde 0 com.schriftgestaltung.layerOrderInGlyph.Lslash 0 com.schriftgestaltung.layerOrderInGlyph.Lsmall 0 com.schriftgestaltung.layerOrderInGlyph.M 0 com.schriftgestaltung.layerOrderInGlyph.M.half 0 com.schriftgestaltung.layerOrderInGlyph.Mu 0 com.schriftgestaltung.layerOrderInGlyph.N 0 com.schriftgestaltung.layerOrderInGlyph.N.half 0 com.schriftgestaltung.layerOrderInGlyph.Nacute 0 com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.Ncaron 0 com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Nhookleft 0 com.schriftgestaltung.layerOrderInGlyph.Nje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Nlinebelow 0 com.schriftgestaltung.layerOrderInGlyph.Ntilde 0 com.schriftgestaltung.layerOrderInGlyph.Nu 0 com.schriftgestaltung.layerOrderInGlyph.O 0 com.schriftgestaltung.layerOrderInGlyph.O-cy 0 com.schriftgestaltung.layerOrderInGlyph.O.half 0 com.schriftgestaltung.layerOrderInGlyph.OE 0 com.schriftgestaltung.layerOrderInGlyph.Oacute 0 com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.Obarred-cy 0 com.schriftgestaltung.layerOrderInGlyph.Obreve 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.Odieresis 0 com.schriftgestaltung.layerOrderInGlyph.Odotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ograve 0 com.schriftgestaltung.layerOrderInGlyph.Ohm 0 com.schriftgestaltung.layerOrderInGlyph.Ohookabove 0 com.schriftgestaltung.layerOrderInGlyph.Ohorn 0 com.schriftgestaltung.layerOrderInGlyph.Ohornacute 0 com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ohorngrave 0 com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Ohorntilde 0 com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut 0 com.schriftgestaltung.layerOrderInGlyph.Omacron 0 com.schriftgestaltung.layerOrderInGlyph.Omacronacute 0 com.schriftgestaltung.layerOrderInGlyph.Omacrongrave 0 com.schriftgestaltung.layerOrderInGlyph.Omega 0 com.schriftgestaltung.layerOrderInGlyph.Omegatonos 0 com.schriftgestaltung.layerOrderInGlyph.Omicron 0 com.schriftgestaltung.layerOrderInGlyph.Omicrontonos 0 com.schriftgestaltung.layerOrderInGlyph.Oogonek 0 com.schriftgestaltung.layerOrderInGlyph.Oopen 0 com.schriftgestaltung.layerOrderInGlyph.Oslash 0 com.schriftgestaltung.layerOrderInGlyph.Oslashacute 0 com.schriftgestaltung.layerOrderInGlyph.Otilde 0 com.schriftgestaltung.layerOrderInGlyph.P 0 com.schriftgestaltung.layerOrderInGlyph.P.half 0 com.schriftgestaltung.layerOrderInGlyph.Palochka-cy 0 com.schriftgestaltung.layerOrderInGlyph.Pe-cy 0 com.schriftgestaltung.layerOrderInGlyph.Phi 0 com.schriftgestaltung.layerOrderInGlyph.Pi 0 com.schriftgestaltung.layerOrderInGlyph.Psi 0 com.schriftgestaltung.layerOrderInGlyph.Q 0 com.schriftgestaltung.layerOrderInGlyph.Q.half 0 com.schriftgestaltung.layerOrderInGlyph.R 0 com.schriftgestaltung.layerOrderInGlyph.R.half 0 com.schriftgestaltung.layerOrderInGlyph.Racute 0 com.schriftgestaltung.layerOrderInGlyph.Rcaron 0 com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Rdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Rho 0 com.schriftgestaltung.layerOrderInGlyph.S 0 com.schriftgestaltung.layerOrderInGlyph.S.half 0 com.schriftgestaltung.layerOrderInGlyph.Sacute 0 com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.Scaron 0 com.schriftgestaltung.layerOrderInGlyph.Scedilla 0 com.schriftgestaltung.layerOrderInGlyph.Schwa 0 com.schriftgestaltung.layerOrderInGlyph.Schwa-cy 0 com.schriftgestaltung.layerOrderInGlyph.Scircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Scommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Sdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Sha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Shcha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Shha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Sigma 0 com.schriftgestaltung.layerOrderInGlyph.Softsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.T 0 com.schriftgestaltung.layerOrderInGlyph.T.half 0 com.schriftgestaltung.layerOrderInGlyph.Tau 0 com.schriftgestaltung.layerOrderInGlyph.Tbar 0 com.schriftgestaltung.layerOrderInGlyph.Tcaron 0 com.schriftgestaltung.layerOrderInGlyph.Tcedilla 0 com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke 0 com.schriftgestaltung.layerOrderInGlyph.Te-cy 0 com.schriftgestaltung.layerOrderInGlyph.Theta 0 com.schriftgestaltung.layerOrderInGlyph.Thorn 0 com.schriftgestaltung.layerOrderInGlyph.Tlinebelow 0 com.schriftgestaltung.layerOrderInGlyph.Tse-cy 0 com.schriftgestaltung.layerOrderInGlyph.Tshe-cy 0 com.schriftgestaltung.layerOrderInGlyph.U 0 com.schriftgestaltung.layerOrderInGlyph.U-cy 0 com.schriftgestaltung.layerOrderInGlyph.U.half 0 com.schriftgestaltung.layerOrderInGlyph.Uacute 0 com.schriftgestaltung.layerOrderInGlyph.Ubreve 0 com.schriftgestaltung.layerOrderInGlyph.Ucircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Udieresis 0 com.schriftgestaltung.layerOrderInGlyph.Udotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Ugrave 0 com.schriftgestaltung.layerOrderInGlyph.Uhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Uhorn 0 com.schriftgestaltung.layerOrderInGlyph.Uhornacute 0 com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Uhorngrave 0 com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Uhorntilde 0 com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut 0 com.schriftgestaltung.layerOrderInGlyph.Umacron 0 com.schriftgestaltung.layerOrderInGlyph.Umacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.Uogonek 0 com.schriftgestaltung.layerOrderInGlyph.Upsilon 0 com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican 0 com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis 0 com.schriftgestaltung.layerOrderInGlyph.Upsilontonos 0 com.schriftgestaltung.layerOrderInGlyph.Uring 0 com.schriftgestaltung.layerOrderInGlyph.Ushort-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.Utilde 0 com.schriftgestaltung.layerOrderInGlyph.V 0 com.schriftgestaltung.layerOrderInGlyph.V.half 0 com.schriftgestaltung.layerOrderInGlyph.Ve-cy 0 com.schriftgestaltung.layerOrderInGlyph.Vhook 0 com.schriftgestaltung.layerOrderInGlyph.Vturned 0 com.schriftgestaltung.layerOrderInGlyph.W 0 com.schriftgestaltung.layerOrderInGlyph.Wacute 0 com.schriftgestaltung.layerOrderInGlyph.Wcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Wdieresis 0 com.schriftgestaltung.layerOrderInGlyph.Wgrave 0 com.schriftgestaltung.layerOrderInGlyph.X 0 com.schriftgestaltung.layerOrderInGlyph.X.half 0 com.schriftgestaltung.layerOrderInGlyph.Xi 0 com.schriftgestaltung.layerOrderInGlyph.Y 0 com.schriftgestaltung.layerOrderInGlyph.Y.half 0 com.schriftgestaltung.layerOrderInGlyph.Yacute 0 com.schriftgestaltung.layerOrderInGlyph.Ycircumflex 0 com.schriftgestaltung.layerOrderInGlyph.Ydieresis 0 com.schriftgestaltung.layerOrderInGlyph.Ydotbelow 0 com.schriftgestaltung.layerOrderInGlyph.Yeru-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ygrave 0 com.schriftgestaltung.layerOrderInGlyph.Yhookabove 0 com.schriftgestaltung.layerOrderInGlyph.Yi-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ymacron 0 com.schriftgestaltung.layerOrderInGlyph.Ytilde 0 com.schriftgestaltung.layerOrderInGlyph.Z 0 com.schriftgestaltung.layerOrderInGlyph.Zacute 0 com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.Zcaron 0 com.schriftgestaltung.layerOrderInGlyph.Zdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.Ze-cy 0 com.schriftgestaltung.layerOrderInGlyph.Zeta 0 com.schriftgestaltung.layerOrderInGlyph.Zhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alef-ar.fina.short.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefFathatan-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefHamzaabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefHamzabelow-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefMadda-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefThreeabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefTwoabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefWasla-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzaabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefWavyhamzabelow-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph._alefabove 0 com.schriftgestaltung.layerOrderInGlyph._bar 0 com.schriftgestaltung.layerOrderInGlyph._cuberoot_fourthroot-ar 0 com.schriftgestaltung.layerOrderInGlyph._damma-ar 0 com.schriftgestaltung.layerOrderInGlyph._dot-ar 0 com.schriftgestaltung.layerOrderInGlyph._dotVInvertedabove 0 com.schriftgestaltung.layerOrderInGlyph._dotVabove 0 com.schriftgestaltung.layerOrderInGlyph._dots.horz.below 0 com.schriftgestaltung.layerOrderInGlyph._doublebar 0 com.schriftgestaltung.layerOrderInGlyph._fatha-ar 0 com.schriftgestaltung.layerOrderInGlyph._four-persian.small01 0 com.schriftgestaltung.layerOrderInGlyph._fourdotscenter-ar 0 com.schriftgestaltung.layerOrderInGlyph._fourthroot-ar 0 com.schriftgestaltung.layerOrderInGlyph._hamzasmall-ar 0 com.schriftgestaltung.layerOrderInGlyph._hamzawavy 0 com.schriftgestaltung.layerOrderInGlyph._hehgoalcomma 0 com.schriftgestaltung.layerOrderInGlyph._highhamzaAlef-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph._invertedstroke 0 com.schriftgestaltung.layerOrderInGlyph._onedotstah 0 com.schriftgestaltung.layerOrderInGlyph._ringArabic 0 com.schriftgestaltung.layerOrderInGlyph._stroke 0 com.schriftgestaltung.layerOrderInGlyph._tahabove 0 com.schriftgestaltung.layerOrderInGlyph._tahabovesmall 0 com.schriftgestaltung.layerOrderInGlyph._threedots-ar 0 com.schriftgestaltung.layerOrderInGlyph._twodotshorizontal-ar 0 com.schriftgestaltung.layerOrderInGlyph._twodotstah 0 com.schriftgestaltung.layerOrderInGlyph._twodotsverticalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph._vabove 0 com.schriftgestaltung.layerOrderInGlyph._vbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph._vinvertedbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar 0 com.schriftgestaltung.layerOrderInGlyph._yehRohingya-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.a 0 com.schriftgestaltung.layerOrderInGlyph.a-cy 0 com.schriftgestaltung.layerOrderInGlyph.aacute 0 com.schriftgestaltung.layerOrderInGlyph.abreve 0 com.schriftgestaltung.layerOrderInGlyph.abreveacute 0 com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow 0 com.schriftgestaltung.layerOrderInGlyph.abrevegrave 0 com.schriftgestaltung.layerOrderInGlyph.abrevehookabove 0 com.schriftgestaltung.layerOrderInGlyph.abrevetilde 0 com.schriftgestaltung.layerOrderInGlyph.acaron 0 com.schriftgestaltung.layerOrderInGlyph.acircumflex 0 com.schriftgestaltung.layerOrderInGlyph.acircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.acircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl 0 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.acute 0 com.schriftgestaltung.layerOrderInGlyph.acutecomb 0 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case 0 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.acutetonecomb 0 com.schriftgestaltung.layerOrderInGlyph.adieresis 0 com.schriftgestaltung.layerOrderInGlyph.adotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ae 0 com.schriftgestaltung.layerOrderInGlyph.ae-ar 0 com.schriftgestaltung.layerOrderInGlyph.ae-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.aeacute 0 com.schriftgestaltung.layerOrderInGlyph.afghani-ar 0 com.schriftgestaltung.layerOrderInGlyph.agrave 0 com.schriftgestaltung.layerOrderInGlyph.ahookabove 0 com.schriftgestaltung.layerOrderInGlyph.ain-ar 0 com.schriftgestaltung.layerOrderInGlyph.ain-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ain-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ain-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedots-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ainThreedotsdownabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ainTwodotsverticalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.alt 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.fina.short.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alef-ar.short 0 com.schriftgestaltung.layerOrderInGlyph.alef-hb 0 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.alefFathatan-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzaabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefHamzabelow-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefMadda-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksura-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefMaksuraAlefabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefThreeabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefTwoabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefWasla-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzaabove-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.alefWavyhamzabelow-ar.fina.rlig 0 com.schriftgestaltung.layerOrderInGlyph.alefabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.alefdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.alefpatah-hb 0 com.schriftgestaltung.layerOrderInGlyph.alefqamats-hb 0 com.schriftgestaltung.layerOrderInGlyph.allah-ar 0 com.schriftgestaltung.layerOrderInGlyph.alpha 0 com.schriftgestaltung.layerOrderInGlyph.alpha-latin 0 com.schriftgestaltung.layerOrderInGlyph.alphatonos 0 com.schriftgestaltung.layerOrderInGlyph.amacron 0 com.schriftgestaltung.layerOrderInGlyph.ampersand 0 com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga 0 com.schriftgestaltung.layerOrderInGlyph.anoteleia 0 com.schriftgestaltung.layerOrderInGlyph.aogonek 0 com.schriftgestaltung.layerOrderInGlyph.apostrophemod 0 com.schriftgestaltung.layerOrderInGlyph.approxequal 0 com.schriftgestaltung.layerOrderInGlyph.aring 0 com.schriftgestaltung.layerOrderInGlyph.aringacute 0 com.schriftgestaltung.layerOrderInGlyph.asciicircum 0 com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga 0 com.schriftgestaltung.layerOrderInGlyph.asterisk 0 com.schriftgestaltung.layerOrderInGlyph.asterisk-ar 0 com.schriftgestaltung.layerOrderInGlyph.asteriskArt-ar 0 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga 0 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga 0 com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga 0 com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.at 0 com.schriftgestaltung.layerOrderInGlyph.atilde 0 com.schriftgestaltung.layerOrderInGlyph.ayin-hb 0 com.schriftgestaltung.layerOrderInGlyph.b 0 com.schriftgestaltung.layerOrderInGlyph.backslash 0 com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga 0 com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.backspaceControl 0 com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.baht 0 com.schriftgestaltung.layerOrderInGlyph.bar 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.be-cy 0 com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.beeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.beh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behDotless-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behMeemabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotshorizontalbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behThreedotsupbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behTwodotsbelowDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.behVinvertedbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.beheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.behhamzaabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.bellControl 0 com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.bet-hb 0 com.schriftgestaltung.layerOrderInGlyph.beta 0 com.schriftgestaltung.layerOrderInGlyph.betdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.bitcoin 0 com.schriftgestaltung.layerOrderInGlyph.blackCircle 0 com.schriftgestaltung.layerOrderInGlyph.blackDiamond 0 com.schriftgestaltung.layerOrderInGlyph.blackHexagon 0 com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse 0 com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond 0 com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle 0 com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred 0 com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred 0 com.schriftgestaltung.layerOrderInGlyph.blackParallelogram 0 com.schriftgestaltung.layerOrderInGlyph.blackPentagon 0 com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond 0 com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge 0 com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace 0 com.schriftgestaltung.layerOrderInGlyph.blackSquare 0 com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse 0 com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect 0 com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.blank 0 com.schriftgestaltung.layerOrderInGlyph.blank-braille 0 com.schriftgestaltung.layerOrderInGlyph.blankSymbol 0 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle 0 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDown 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUp 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.braceleft 0 com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.braceright 0 com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga 0 com.schriftgestaltung.layerOrderInGlyph.bracketleft 0 com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.bracketright 0 com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga 0 com.schriftgestaltung.layerOrderInGlyph.breve 0 com.schriftgestaltung.layerOrderInGlyph.brevecomb 0 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy 0 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case 0 com.schriftgestaltung.layerOrderInGlyph.brevecomb.case 0 com.schriftgestaltung.layerOrderInGlyph.brokenbar 0 com.schriftgestaltung.layerOrderInGlyph.bullet 0 com.schriftgestaltung.layerOrderInGlyph.bulletoperator 0 com.schriftgestaltung.layerOrderInGlyph.bullseye 0 com.schriftgestaltung.layerOrderInGlyph.c 0 com.schriftgestaltung.layerOrderInGlyph.cacute 0 com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.cancelControl 0 com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.careof 0 com.schriftgestaltung.layerOrderInGlyph.caron 0 com.schriftgestaltung.layerOrderInGlyph.caroncomb 0 com.schriftgestaltung.layerOrderInGlyph.caroncomb.case 0 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl 0 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.ccaron 0 com.schriftgestaltung.layerOrderInGlyph.ccedilla 0 com.schriftgestaltung.layerOrderInGlyph.ccircumflex 0 com.schriftgestaltung.layerOrderInGlyph.cdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.cedi 0 com.schriftgestaltung.layerOrderInGlyph.cedilla 0 com.schriftgestaltung.layerOrderInGlyph.cedillacomb 0 com.schriftgestaltung.layerOrderInGlyph.cent 0 com.schriftgestaltung.layerOrderInGlyph.che-cy 0 com.schriftgestaltung.layerOrderInGlyph.checkmark 0 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.chi 0 com.schriftgestaltung.layerOrderInGlyph.circumflex 0 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb 0 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case 0 com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit 0 com.schriftgestaltung.layerOrderInGlyph.colon 0 com.schriftgestaltung.layerOrderInGlyph.colon.center 0 com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga 0 com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga 0 com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.colonsign 0 com.schriftgestaltung.layerOrderInGlyph.colontriangularmod 0 com.schriftgestaltung.layerOrderInGlyph.comma 0 com.schriftgestaltung.layerOrderInGlyph.comma-ar 0 com.schriftgestaltung.layerOrderInGlyph.commaabovecomb 0 com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb 0 com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb 0 com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb 0 com.schriftgestaltung.layerOrderInGlyph.commaturnedmod 0 com.schriftgestaltung.layerOrderInGlyph.copyright 0 com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.cuberoot-ar 0 com.schriftgestaltung.layerOrderInGlyph.currency 0 com.schriftgestaltung.layerOrderInGlyph.d 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.dad-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.dadDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.dagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.dagger 0 com.schriftgestaltung.layerOrderInGlyph.daggerdbl 0 com.schriftgestaltung.layerOrderInGlyph.dahal-ar 0 com.schriftgestaltung.layerOrderInGlyph.dahal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dal-ar 0 com.schriftgestaltung.layerOrderInGlyph.dal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalDotbelowTah-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalFourdots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalThreedotsdown-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalTwodotsverticalbelowTahabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.dalVinvertedbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dalet-hb 0 com.schriftgestaltung.layerOrderInGlyph.daletdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.damma-ar 0 com.schriftgestaltung.layerOrderInGlyph.dammatan-ar 0 com.schriftgestaltung.layerOrderInGlyph.dashdownArrow 0 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl 0 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.dateseparator-ar 0 com.schriftgestaltung.layerOrderInGlyph.dcaron 0 com.schriftgestaltung.layerOrderInGlyph.dcaron.alt 0 com.schriftgestaltung.layerOrderInGlyph.dcroat 0 com.schriftgestaltung.layerOrderInGlyph.ddahal-ar 0 com.schriftgestaltung.layerOrderInGlyph.ddahal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ddal-ar 0 com.schriftgestaltung.layerOrderInGlyph.ddal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.de-cy 0 com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.decimalseparator-ar 0 com.schriftgestaltung.layerOrderInGlyph.degree 0 com.schriftgestaltung.layerOrderInGlyph.deleteControl 0 com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl 0 com.schriftgestaltung.layerOrderInGlyph.delta 0 com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl 0 com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl 0 com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl 0 com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl 0 com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit 0 com.schriftgestaltung.layerOrderInGlyph.dieresis 0 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb 0 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case 0 com.schriftgestaltung.layerOrderInGlyph.dieresistonos 0 com.schriftgestaltung.layerOrderInGlyph.divide 0 com.schriftgestaltung.layerOrderInGlyph.divisionslash 0 com.schriftgestaltung.layerOrderInGlyph.dje-cy 0 com.schriftgestaltung.layerOrderInGlyph.dollar 0 com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.dong 0 com.schriftgestaltung.layerOrderInGlyph.dotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.dotaccent 0 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb 0 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case 0 com.schriftgestaltung.layerOrderInGlyph.dotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb 0 com.schriftgestaltung.layerOrderInGlyph.dotcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.dots1-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1234-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12345-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12346-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12347-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12348-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1235-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12356-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12357-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12358-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1236-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12367-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots123678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12368-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1237-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12378-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1238-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots124-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1245-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots124567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots124568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots124578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1246-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots124678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1247-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1248-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots125-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1256-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots125678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1257-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1258-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots126-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1267-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots12678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1268-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots127-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1278-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots128-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots134-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1345-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots134567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots134568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots134578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1346-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots134678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1347-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1348-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots135-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1356-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots135678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1357-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1358-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots136-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1367-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots13678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1368-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots137-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1378-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots138-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots14-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots145-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots14567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots145678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots14568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots14578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots146-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots14678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots147-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots148-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots15-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots156-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots15678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots157-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots158-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots16-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots167-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots1678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots168-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots17-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots178-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots18-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots234-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2345-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots234567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots234568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots234578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2346-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots234678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2347-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2348-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots235-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2356-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots235678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2357-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2358-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots236-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2367-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots23678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2368-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots237-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2378-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots238-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots24-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots245-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots24567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots245678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots24568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots24578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots246-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots24678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots247-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots248-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots25-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots256-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots25678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots257-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots258-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots26-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots267-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots2678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots268-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots27-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots278-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots28-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots34-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots345-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots34567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots345678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots34568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots34578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots346-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots34678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots347-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots348-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots35-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots356-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots35678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots357-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots358-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots36-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots367-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots3678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots368-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots37-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots378-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots38-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots4-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots45-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots456-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots4567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots45678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots4568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots457-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots4578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots458-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots46-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots467-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots4678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots468-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots47-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots478-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots48-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots5-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots56-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots567-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots5678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots568-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots57-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots578-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots58-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots6-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots67-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots678-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots68-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots7-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots78-braille 0 com.schriftgestaltung.layerOrderInGlyph.dots8-braille 0 com.schriftgestaltung.layerOrderInGlyph.dottedCircle 0 com.schriftgestaltung.layerOrderInGlyph.dottedSquare 0 com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar 0 com.schriftgestaltung.layerOrderInGlyph.doubleverticalbarbelowSymbol-ar.comb 0 com.schriftgestaltung.layerOrderInGlyph.downArrow 0 com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow 0 com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle 0 com.schriftgestaltung.layerOrderInGlyph.dtail 0 com.schriftgestaltung.layerOrderInGlyph.dul-ar 0 com.schriftgestaltung.layerOrderInGlyph.dul-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.dyeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.dze-cy 0 com.schriftgestaltung.layerOrderInGlyph.dzhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.e 0 com.schriftgestaltung.layerOrderInGlyph.e-ar 0 com.schriftgestaltung.layerOrderInGlyph.e-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.e-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.e-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.e-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.e-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.e-cy 0 com.schriftgestaltung.layerOrderInGlyph.eacute 0 com.schriftgestaltung.layerOrderInGlyph.ebreve 0 com.schriftgestaltung.layerOrderInGlyph.ecaron 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflex 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.edieresis 0 com.schriftgestaltung.layerOrderInGlyph.edotaccent 0 com.schriftgestaltung.layerOrderInGlyph.edotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ef-cy 0 com.schriftgestaltung.layerOrderInGlyph.ef-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.egrave 0 com.schriftgestaltung.layerOrderInGlyph.ehookabove 0 com.schriftgestaltung.layerOrderInGlyph.eight 0 com.schriftgestaltung.layerOrderInGlyph.eight-ar 0 com.schriftgestaltung.layerOrderInGlyph.eight-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.eight-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.eight-persian 0 com.schriftgestaltung.layerOrderInGlyph.eight-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.eight-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.eight.dnom 0 com.schriftgestaltung.layerOrderInGlyph.eight.numr 0 com.schriftgestaltung.layerOrderInGlyph.eightinferior 0 com.schriftgestaltung.layerOrderInGlyph.eightsuperior 0 com.schriftgestaltung.layerOrderInGlyph.el-cy 0 com.schriftgestaltung.layerOrderInGlyph.el-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.ellipsis 0 com.schriftgestaltung.layerOrderInGlyph.em-cy 0 com.schriftgestaltung.layerOrderInGlyph.emacron 0 com.schriftgestaltung.layerOrderInGlyph.emdash 0 com.schriftgestaltung.layerOrderInGlyph.en-cy 0 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl 0 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl 0 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl 0 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl 0 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.endash 0 com.schriftgestaltung.layerOrderInGlyph.endescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.endofayah-ar 0 com.schriftgestaltung.layerOrderInGlyph.eng 0 com.schriftgestaltung.layerOrderInGlyph.enquiryControl 0 com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.eogonek 0 com.schriftgestaltung.layerOrderInGlyph.eopen 0 com.schriftgestaltung.layerOrderInGlyph.epsilon 0 com.schriftgestaltung.layerOrderInGlyph.epsilontonos 0 com.schriftgestaltung.layerOrderInGlyph.equal 0 com.schriftgestaltung.layerOrderInGlyph.equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.equivalence 0 com.schriftgestaltung.layerOrderInGlyph.er-cy 0 com.schriftgestaltung.layerOrderInGlyph.ereversed-cy 0 com.schriftgestaltung.layerOrderInGlyph.es-cy 0 com.schriftgestaltung.layerOrderInGlyph.escapeControl 0 com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.esh 0 com.schriftgestaltung.layerOrderInGlyph.estimated 0 com.schriftgestaltung.layerOrderInGlyph.eta 0 com.schriftgestaltung.layerOrderInGlyph.etatonos 0 com.schriftgestaltung.layerOrderInGlyph.eth 0 com.schriftgestaltung.layerOrderInGlyph.etilde 0 com.schriftgestaltung.layerOrderInGlyph.eturned 0 com.schriftgestaltung.layerOrderInGlyph.euro 0 com.schriftgestaltung.layerOrderInGlyph.eurocurrency 0 com.schriftgestaltung.layerOrderInGlyph.exclam 0 com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga 0 com.schriftgestaltung.layerOrderInGlyph.exclamdouble 0 com.schriftgestaltung.layerOrderInGlyph.exclamdown 0 com.schriftgestaltung.layerOrderInGlyph.ezh 0 com.schriftgestaltung.layerOrderInGlyph.f 0 com.schriftgestaltung.layerOrderInGlyph.fatha-ar 0 com.schriftgestaltung.layerOrderInGlyph.fathatan-ar 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.feh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehDotMovedbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehDotbelowThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehDotless-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehThreedotsupbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.fehTwodotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.fi 0 com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl 0 com.schriftgestaltung.layerOrderInGlyph.filledRect 0 com.schriftgestaltung.layerOrderInGlyph.finalkaf-hb 0 com.schriftgestaltung.layerOrderInGlyph.finalkafdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.finalmem-hb 0 com.schriftgestaltung.layerOrderInGlyph.finalnun-hb 0 com.schriftgestaltung.layerOrderInGlyph.finalpe-hb 0 com.schriftgestaltung.layerOrderInGlyph.finalpedagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.finaltsadi-hb 0 com.schriftgestaltung.layerOrderInGlyph.firsttonechinese 0 com.schriftgestaltung.layerOrderInGlyph.fisheye 0 com.schriftgestaltung.layerOrderInGlyph.five 0 com.schriftgestaltung.layerOrderInGlyph.five-ar 0 com.schriftgestaltung.layerOrderInGlyph.five-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.five-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.five-persian 0 com.schriftgestaltung.layerOrderInGlyph.five-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.five-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.five.dnom 0 com.schriftgestaltung.layerOrderInGlyph.five.numr 0 com.schriftgestaltung.layerOrderInGlyph.fiveeighths 0 com.schriftgestaltung.layerOrderInGlyph.fiveinferior 0 com.schriftgestaltung.layerOrderInGlyph.fivesuperior 0 com.schriftgestaltung.layerOrderInGlyph.fl 0 com.schriftgestaltung.layerOrderInGlyph.florin 0 com.schriftgestaltung.layerOrderInGlyph.footnotemarker-ar 0 com.schriftgestaltung.layerOrderInGlyph.formFeedControl 0 com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.four 0 com.schriftgestaltung.layerOrderInGlyph.four-ar 0 com.schriftgestaltung.layerOrderInGlyph.four-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.four-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.four-persian 0 com.schriftgestaltung.layerOrderInGlyph.four-persian.small01 0 com.schriftgestaltung.layerOrderInGlyph.four-persian.urdu 0 com.schriftgestaltung.layerOrderInGlyph.four-persian.urduinferior 0 com.schriftgestaltung.layerOrderInGlyph.four-persian.urdusuperior 0 com.schriftgestaltung.layerOrderInGlyph.four-persianbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.four-persiancenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.four-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.four-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.four.dnom 0 com.schriftgestaltung.layerOrderInGlyph.four.half 0 com.schriftgestaltung.layerOrderInGlyph.four.numr 0 com.schriftgestaltung.layerOrderInGlyph.fourdotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.fourdotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.fourdotscenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.fourinferior 0 com.schriftgestaltung.layerOrderInGlyph.foursuperior 0 com.schriftgestaltung.layerOrderInGlyph.fourthroot-ar 0 com.schriftgestaltung.layerOrderInGlyph.fraction 0 com.schriftgestaltung.layerOrderInGlyph.franc 0 com.schriftgestaltung.layerOrderInGlyph.fullBlock 0 com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.fullstop-ar 0 com.schriftgestaltung.layerOrderInGlyph.g 0 com.schriftgestaltung.layerOrderInGlyph.gaf-ar 0 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gaf-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar 0 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gafInvertedstroke-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gafRing-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gafThreedots-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gafTwodotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.gafsarkashabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.gamma 0 com.schriftgestaltung.layerOrderInGlyph.gamma-latin 0 com.schriftgestaltung.layerOrderInGlyph.gbreve 0 com.schriftgestaltung.layerOrderInGlyph.gcaron 0 com.schriftgestaltung.layerOrderInGlyph.gcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.gcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.gdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.ge-cy 0 com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.geresh-hb 0 com.schriftgestaltung.layerOrderInGlyph.germandbls 0 com.schriftgestaltung.layerOrderInGlyph.gershayim-hb 0 com.schriftgestaltung.layerOrderInGlyph.ghain-ar 0 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ghain-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ghainDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy 0 com.schriftgestaltung.layerOrderInGlyph.gimel-hb 0 com.schriftgestaltung.layerOrderInGlyph.gimeldagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.gje-cy 0 com.schriftgestaltung.layerOrderInGlyph.glottalstop 0 com.schriftgestaltung.layerOrderInGlyph.glottalstopmod 0 com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed 0 com.schriftgestaltung.layerOrderInGlyph.grave 0 com.schriftgestaltung.layerOrderInGlyph.gravecomb 0 com.schriftgestaltung.layerOrderInGlyph.gravecomb.case 0 com.schriftgestaltung.layerOrderInGlyph.gravetonecomb 0 com.schriftgestaltung.layerOrderInGlyph.greater 0 com.schriftgestaltung.layerOrderInGlyph.greater.alt 0 com.schriftgestaltung.layerOrderInGlyph.greater.center 0 com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.greaterequal 0 com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl 0 com.schriftgestaltung.layerOrderInGlyph.gstroke 0 com.schriftgestaltung.layerOrderInGlyph.guarani 0 com.schriftgestaltung.layerOrderInGlyph.gueh-ar 0 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.gueh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.guillemetleft 0 com.schriftgestaltung.layerOrderInGlyph.guillemetright 0 com.schriftgestaltung.layerOrderInGlyph.guilsinglleft 0 com.schriftgestaltung.layerOrderInGlyph.guilsinglright 0 com.schriftgestaltung.layerOrderInGlyph.h 0 com.schriftgestaltung.layerOrderInGlyph.ha-cy 0 com.schriftgestaltung.layerOrderInGlyph.hadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.hah-ar 0 com.schriftgestaltung.layerOrderInGlyph.hah-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hah-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hah-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahFourbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahHamzaabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahTahTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahTahabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahTahbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahThreedotsupbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hahTwodotsverticalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hamza-ar 0 com.schriftgestaltung.layerOrderInGlyph.hamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hamzabelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.hbar 0 com.schriftgestaltung.layerOrderInGlyph.hcaron 0 com.schriftgestaltung.layerOrderInGlyph.hcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.hdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.he-hb 0 com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit 0 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament 0 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament 0 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament 0 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament 0 com.schriftgestaltung.layerOrderInGlyph.hedagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.heh-ar 0 com.schriftgestaltung.layerOrderInGlyph.heh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.heh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.heh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hehAlefabove-ar.init.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar 0 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hehDoachashmee-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hehHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hehVinvertedabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar 0 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.hehgoal-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.hehgoalHamzaabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.het-hb 0 com.schriftgestaltung.layerOrderInGlyph.highhamza-ar 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaAlef-ar.fina.rlig 1 com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaWaw-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.highhamzaYeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.holam-hb 0 com.schriftgestaltung.layerOrderInGlyph.holamhaser-hb 0 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb 0 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case 0 com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon 0 com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl 0 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.horizontalbar 0 com.schriftgestaltung.layerOrderInGlyph.horizontallineextension 0 com.schriftgestaltung.layerOrderInGlyph.horncomb 0 com.schriftgestaltung.layerOrderInGlyph.horncomb.case 0 com.schriftgestaltung.layerOrderInGlyph.house 0 com.schriftgestaltung.layerOrderInGlyph.hryvnia 0 com.schriftgestaltung.layerOrderInGlyph.hungarumlaut 0 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb 0 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case 0 com.schriftgestaltung.layerOrderInGlyph.hyphen 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.hyphentwo 0 com.schriftgestaltung.layerOrderInGlyph.i 0 com.schriftgestaltung.layerOrderInGlyph.i-cy 0 com.schriftgestaltung.layerOrderInGlyph.ia-cy 0 com.schriftgestaltung.layerOrderInGlyph.iacute 0 com.schriftgestaltung.layerOrderInGlyph.ibreve 0 com.schriftgestaltung.layerOrderInGlyph.icircumflex 0 com.schriftgestaltung.layerOrderInGlyph.idieresis 0 com.schriftgestaltung.layerOrderInGlyph.idotbelow 0 com.schriftgestaltung.layerOrderInGlyph.idotless 0 com.schriftgestaltung.layerOrderInGlyph.ie-cy 0 com.schriftgestaltung.layerOrderInGlyph.iegrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.igrave 0 com.schriftgestaltung.layerOrderInGlyph.ihookabove 0 com.schriftgestaltung.layerOrderInGlyph.ii-cy 0 com.schriftgestaltung.layerOrderInGlyph.ii-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.iishort-cy 0 com.schriftgestaltung.layerOrderInGlyph.iishort-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.ij 0 com.schriftgestaltung.layerOrderInGlyph.ij_acute 0 com.schriftgestaltung.layerOrderInGlyph.imacron 0 com.schriftgestaltung.layerOrderInGlyph.imacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.increment 0 com.schriftgestaltung.layerOrderInGlyph.infinity 0 com.schriftgestaltung.layerOrderInGlyph.integral 0 com.schriftgestaltung.layerOrderInGlyph.integralbt 0 com.schriftgestaltung.layerOrderInGlyph.integraltp 0 com.schriftgestaltung.layerOrderInGlyph.intersection 0 com.schriftgestaltung.layerOrderInGlyph.inverseBullet 0 com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.io-cy 0 com.schriftgestaltung.layerOrderInGlyph.iogonek 0 com.schriftgestaltung.layerOrderInGlyph.iota 0 com.schriftgestaltung.layerOrderInGlyph.iota-latin 0 com.schriftgestaltung.layerOrderInGlyph.iotadieresis 0 com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos 0 com.schriftgestaltung.layerOrderInGlyph.iotatonos 0 com.schriftgestaltung.layerOrderInGlyph.itilde 0 com.schriftgestaltung.layerOrderInGlyph.iu-cy 0 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.j 0 com.schriftgestaltung.layerOrderInGlyph.jacute 0 com.schriftgestaltung.layerOrderInGlyph.jcaron 0 com.schriftgestaltung.layerOrderInGlyph.jcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.jdotless 0 com.schriftgestaltung.layerOrderInGlyph.je-cy 0 com.schriftgestaltung.layerOrderInGlyph.jeem-ar 0 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.jeem-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.jeemTwodotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.jeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.jeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.k 0 com.schriftgestaltung.layerOrderInGlyph.ka-cy 0 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.kadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.kaf-ar 0 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kaf-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kaf-hb 0 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kafDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kafRing-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kafThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kafTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kafdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kafswash-ar.medi.alt 0 com.schriftgestaltung.layerOrderInGlyph.kaiSymbol 0 com.schriftgestaltung.layerOrderInGlyph.kappa 0 com.schriftgestaltung.layerOrderInGlyph.kashida-ar 0 com.schriftgestaltung.layerOrderInGlyph.kasra-ar 0 com.schriftgestaltung.layerOrderInGlyph.kasratan-ar 0 com.schriftgestaltung.layerOrderInGlyph.kcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.kdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.keheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.keheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kehehDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kehehThreedotsupbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.kehehTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kgreenlandic 0 com.schriftgestaltung.layerOrderInGlyph.khah-ar 0 com.schriftgestaltung.layerOrderInGlyph.khah-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.khah-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.khah-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.kip 0 com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar 0 com.schriftgestaltung.layerOrderInGlyph.kirghizoe-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar 0 com.schriftgestaltung.layerOrderInGlyph.kirghizyu-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.kje-cy 0 com.schriftgestaltung.layerOrderInGlyph.klinebelow 0 com.schriftgestaltung.layerOrderInGlyph.l 0 com.schriftgestaltung.layerOrderInGlyph.lacute 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lam-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamBar-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamDotabove-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamDoublebar-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsabove-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamThreedotsbelow-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.init.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.lamVabove-ar.medi.rlig 0 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.fina.short 0 com.schriftgestaltung.layerOrderInGlyph.lam_alef-ar.short 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefHamzabelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefMadda-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar 0 com.schriftgestaltung.layerOrderInGlyph.lam_alefWasla-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.lam_lam_heh-ar 0 com.schriftgestaltung.layerOrderInGlyph.lambda 0 com.schriftgestaltung.layerOrderInGlyph.lambdastroke 0 com.schriftgestaltung.layerOrderInGlyph.lamed-hb 0 com.schriftgestaltung.layerOrderInGlyph.lameddagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.largeCircle 0 com.schriftgestaltung.layerOrderInGlyph.lari 0 com.schriftgestaltung.layerOrderInGlyph.lbar 0 com.schriftgestaltung.layerOrderInGlyph.lbelt 0 com.schriftgestaltung.layerOrderInGlyph.lcaron 0 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.ldot 0 com.schriftgestaltung.layerOrderInGlyph.ldotbelow 0 com.schriftgestaltung.layerOrderInGlyph.leftArrow 0 com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer 0 com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.leftBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle 0 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond 0 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftRightArrow 0 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer 0 com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle 0 com.schriftgestaltung.layerOrderInGlyph.less 0 com.schriftgestaltung.layerOrderInGlyph.less.alt 0 com.schriftgestaltung.layerOrderInGlyph.less.center 0 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_plus.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.lessequal 0 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl 0 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.lineseparator 0 com.schriftgestaltung.layerOrderInGlyph.lira 0 com.schriftgestaltung.layerOrderInGlyph.liraTurkish 0 com.schriftgestaltung.layerOrderInGlyph.literSign 0 com.schriftgestaltung.layerOrderInGlyph.lje-cy 0 com.schriftgestaltung.layerOrderInGlyph.llinebelow 0 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde 0 com.schriftgestaltung.layerOrderInGlyph.logicalnot 0 com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed 0 com.schriftgestaltung.layerOrderInGlyph.longs 0 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightArc 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle 0 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek 0 com.schriftgestaltung.layerOrderInGlyph.lowlinecomb 0 com.schriftgestaltung.layerOrderInGlyph.lozenge 0 com.schriftgestaltung.layerOrderInGlyph.lslash 0 com.schriftgestaltung.layerOrderInGlyph.m 0 com.schriftgestaltung.layerOrderInGlyph.macron 0 com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb 0 com.schriftgestaltung.layerOrderInGlyph.macroncomb 0 com.schriftgestaltung.layerOrderInGlyph.macroncomb.case 0 com.schriftgestaltung.layerOrderInGlyph.madda-ar 0 com.schriftgestaltung.layerOrderInGlyph.manat 0 com.schriftgestaltung.layerOrderInGlyph.maqaf-hb 0 com.schriftgestaltung.layerOrderInGlyph.mars 0 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament 0 com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament 0 com.schriftgestaltung.layerOrderInGlyph.meem-ar 0 com.schriftgestaltung.layerOrderInGlyph.meem-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.meem-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.meem-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.meemDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.meemDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.meemStopabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.meemThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.mem-hb 0 com.schriftgestaltung.layerOrderInGlyph.memdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.micro 0 com.schriftgestaltung.layerOrderInGlyph.minus 0 com.schriftgestaltung.layerOrderInGlyph.minute 0 com.schriftgestaltung.layerOrderInGlyph.misraComma-ar 0 com.schriftgestaltung.layerOrderInGlyph.mu 0 com.schriftgestaltung.layerOrderInGlyph.multiply 0 com.schriftgestaltung.layerOrderInGlyph.n 0 com.schriftgestaltung.layerOrderInGlyph.nacute 0 com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.naira 0 com.schriftgestaltung.layerOrderInGlyph.napostrophe 0 com.schriftgestaltung.layerOrderInGlyph.nbspace 0 com.schriftgestaltung.layerOrderInGlyph.ncaron 0 com.schriftgestaltung.layerOrderInGlyph.ncommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl 0 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.newlineControl 0 com.schriftgestaltung.layerOrderInGlyph.ng-ar 0 com.schriftgestaltung.layerOrderInGlyph.ng-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ng-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ng-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.ngoeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.nhookleft 0 com.schriftgestaltung.layerOrderInGlyph.nine 0 com.schriftgestaltung.layerOrderInGlyph.nine-ar 0 com.schriftgestaltung.layerOrderInGlyph.nine-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.nine-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.nine-persian 0 com.schriftgestaltung.layerOrderInGlyph.nine-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.nine-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.nine.dnom 0 com.schriftgestaltung.layerOrderInGlyph.nine.numr 0 com.schriftgestaltung.layerOrderInGlyph.nineinferior 0 com.schriftgestaltung.layerOrderInGlyph.ninesuperior 0 com.schriftgestaltung.layerOrderInGlyph.nje-cy 0 com.schriftgestaltung.layerOrderInGlyph.nlinebelow 0 com.schriftgestaltung.layerOrderInGlyph.nmod 0 com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen 0 com.schriftgestaltung.layerOrderInGlyph.noon-ar 0 com.schriftgestaltung.layerOrderInGlyph.noon-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noon-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noon-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noon-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonAfrican-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonRing-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonTahabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonTwodotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonVabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar 0 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.noonghunna-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.noonghunnaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.note-musical 0 com.schriftgestaltung.layerOrderInGlyph.notedbl-musical 0 com.schriftgestaltung.layerOrderInGlyph.notequal 0 com.schriftgestaltung.layerOrderInGlyph.notidentical 0 com.schriftgestaltung.layerOrderInGlyph.ntilde 0 com.schriftgestaltung.layerOrderInGlyph.nu 0 com.schriftgestaltung.layerOrderInGlyph.nullControl 0 com.schriftgestaltung.layerOrderInGlyph.number-ar 0 com.schriftgestaltung.layerOrderInGlyph.numbermark-ar 0 com.schriftgestaltung.layerOrderInGlyph.numbersign 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga 0 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga 0 com.schriftgestaltung.layerOrderInGlyph.numeral-greek 0 com.schriftgestaltung.layerOrderInGlyph.numero 0 com.schriftgestaltung.layerOrderInGlyph.nun-hb 0 com.schriftgestaltung.layerOrderInGlyph.nundagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.nyeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.o 0 com.schriftgestaltung.layerOrderInGlyph.o-cy 0 com.schriftgestaltung.layerOrderInGlyph.oacute 0 com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.obarred-cy 0 com.schriftgestaltung.layerOrderInGlyph.obreve 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflex 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove 0 com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde 0 com.schriftgestaltung.layerOrderInGlyph.odieresis 0 com.schriftgestaltung.layerOrderInGlyph.odotbelow 0 com.schriftgestaltung.layerOrderInGlyph.oe 0 com.schriftgestaltung.layerOrderInGlyph.oe-ar 0 com.schriftgestaltung.layerOrderInGlyph.oe-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ogonek 0 com.schriftgestaltung.layerOrderInGlyph.ogonekcomb 0 com.schriftgestaltung.layerOrderInGlyph.ograve 0 com.schriftgestaltung.layerOrderInGlyph.ohookabove 0 com.schriftgestaltung.layerOrderInGlyph.ohorn 0 com.schriftgestaltung.layerOrderInGlyph.ohornacute 0 com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ohorngrave 0 com.schriftgestaltung.layerOrderInGlyph.ohornhookabove 0 com.schriftgestaltung.layerOrderInGlyph.ohorntilde 0 com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut 0 com.schriftgestaltung.layerOrderInGlyph.omacron 0 com.schriftgestaltung.layerOrderInGlyph.omacronacute 0 com.schriftgestaltung.layerOrderInGlyph.omacrongrave 0 com.schriftgestaltung.layerOrderInGlyph.omega 0 com.schriftgestaltung.layerOrderInGlyph.omegatonos 0 com.schriftgestaltung.layerOrderInGlyph.omicron 0 com.schriftgestaltung.layerOrderInGlyph.omicrontonos 0 com.schriftgestaltung.layerOrderInGlyph.one 0 com.schriftgestaltung.layerOrderInGlyph.one-ar 0 com.schriftgestaltung.layerOrderInGlyph.one-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.one-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.one-persian 0 com.schriftgestaltung.layerOrderInGlyph.one-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.one-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.one.dnom 0 com.schriftgestaltung.layerOrderInGlyph.one.half 0 com.schriftgestaltung.layerOrderInGlyph.one.numr 0 com.schriftgestaltung.layerOrderInGlyph.onedotenleader 0 com.schriftgestaltung.layerOrderInGlyph.oneeighth 0 com.schriftgestaltung.layerOrderInGlyph.onehalf 0 com.schriftgestaltung.layerOrderInGlyph.oneinferior 0 com.schriftgestaltung.layerOrderInGlyph.onequarter 0 com.schriftgestaltung.layerOrderInGlyph.onesuperior 0 com.schriftgestaltung.layerOrderInGlyph.oogonek 0 com.schriftgestaltung.layerOrderInGlyph.oopen 0 com.schriftgestaltung.layerOrderInGlyph.ordfeminine 0 com.schriftgestaltung.layerOrderInGlyph.ordmasculine 0 com.schriftgestaltung.layerOrderInGlyph.orthogonal 0 com.schriftgestaltung.layerOrderInGlyph.oslash 0 com.schriftgestaltung.layerOrderInGlyph.oslashacute 0 com.schriftgestaltung.layerOrderInGlyph.otilde 0 com.schriftgestaltung.layerOrderInGlyph.overline 0 com.schriftgestaltung.layerOrderInGlyph.p 0 com.schriftgestaltung.layerOrderInGlyph.pagenumber-ar 0 com.schriftgestaltung.layerOrderInGlyph.palochka-cy 0 com.schriftgestaltung.layerOrderInGlyph.paragraph 0 com.schriftgestaltung.layerOrderInGlyph.parenleft 0 com.schriftgestaltung.layerOrderInGlyph.parenleft-ar 0 com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga 0 com.schriftgestaltung.layerOrderInGlyph.parenright 0 com.schriftgestaltung.layerOrderInGlyph.parenright-ar 0 com.schriftgestaltung.layerOrderInGlyph.partialdiff 0 com.schriftgestaltung.layerOrderInGlyph.paseq-hb 0 com.schriftgestaltung.layerOrderInGlyph.patah-hb 0 com.schriftgestaltung.layerOrderInGlyph.pe-cy 0 com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.pe-hb 0 com.schriftgestaltung.layerOrderInGlyph.pedagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.peh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.pehMeemabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.peheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.percent 0 com.schriftgestaltung.layerOrderInGlyph.percent-ar 0 com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga 0 com.schriftgestaltung.layerOrderInGlyph.period 0 com.schriftgestaltung.layerOrderInGlyph.period_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_period.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga 0 com.schriftgestaltung.layerOrderInGlyph.period_question.liga 0 com.schriftgestaltung.layerOrderInGlyph.periodcentered 0 com.schriftgestaltung.layerOrderInGlyph.perispomenicomb 0 com.schriftgestaltung.layerOrderInGlyph.perthousand 0 com.schriftgestaltung.layerOrderInGlyph.perthousand-ar 0 com.schriftgestaltung.layerOrderInGlyph.peseta 0 com.schriftgestaltung.layerOrderInGlyph.peso 0 com.schriftgestaltung.layerOrderInGlyph.phi 0 com.schriftgestaltung.layerOrderInGlyph.pi 0 com.schriftgestaltung.layerOrderInGlyph.plus 0 com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga 0 com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga 0 com.schriftgestaltung.layerOrderInGlyph.plusminus 0 com.schriftgestaltung.layerOrderInGlyph.prescription 0 com.schriftgestaltung.layerOrderInGlyph.product 0 com.schriftgestaltung.layerOrderInGlyph.psi 0 com.schriftgestaltung.layerOrderInGlyph.published 0 com.schriftgestaltung.layerOrderInGlyph.punctuationspace 0 com.schriftgestaltung.layerOrderInGlyph.q 0 com.schriftgestaltung.layerOrderInGlyph.qaf-ar 0 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.qaf-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar 0 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.qafAfrican-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.qafDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qafDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar 0 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.qafDotless-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.qafThreedotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.qamats-hb 0 com.schriftgestaltung.layerOrderInGlyph.qamatsqatan-hb 0 com.schriftgestaltung.layerOrderInGlyph.qof-hb 0 com.schriftgestaltung.layerOrderInGlyph.qofdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.question 0 com.schriftgestaltung.layerOrderInGlyph.question-ar 0 com.schriftgestaltung.layerOrderInGlyph.question_colon.liga 0 com.schriftgestaltung.layerOrderInGlyph.question_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.question_period.liga 0 com.schriftgestaltung.layerOrderInGlyph.question_question.liga 0 com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.questiondown 0 com.schriftgestaltung.layerOrderInGlyph.questiongreek 0 com.schriftgestaltung.layerOrderInGlyph.quotedbl 0 com.schriftgestaltung.layerOrderInGlyph.quotedblbase 0 com.schriftgestaltung.layerOrderInGlyph.quotedblleft 0 com.schriftgestaltung.layerOrderInGlyph.quotedblright 0 com.schriftgestaltung.layerOrderInGlyph.quoteleft 0 com.schriftgestaltung.layerOrderInGlyph.quotereversed 0 com.schriftgestaltung.layerOrderInGlyph.quoteright 0 com.schriftgestaltung.layerOrderInGlyph.quotesinglbase 0 com.schriftgestaltung.layerOrderInGlyph.quotesingle 0 com.schriftgestaltung.layerOrderInGlyph.r 0 com.schriftgestaltung.layerOrderInGlyph.racute 0 com.schriftgestaltung.layerOrderInGlyph.radical 0 com.schriftgestaltung.layerOrderInGlyph.ratio 0 com.schriftgestaltung.layerOrderInGlyph.ray-ar 0 com.schriftgestaltung.layerOrderInGlyph.rcaron 0 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.rdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl 0 com.schriftgestaltung.layerOrderInGlyph.registered 0 com.schriftgestaltung.layerOrderInGlyph.reh-ar 0 com.schriftgestaltung.layerOrderInGlyph.reh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehAlefabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehDotbelowdotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehFourdots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehLoop-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehStroke-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodotshorizontalaboveTahabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehTwodotsverticalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehVbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehVinvertedabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rehv-ar 0 com.schriftgestaltung.layerOrderInGlyph.rehv-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.replacementCharacter 0 com.schriftgestaltung.layerOrderInGlyph.resh-hb 0 com.schriftgestaltung.layerOrderInGlyph.reshdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.returnsymbol 0 com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet 0 com.schriftgestaltung.layerOrderInGlyph.rho 0 com.schriftgestaltung.layerOrderInGlyph.rightArrow 0 com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer 0 com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.rightBlock 0 com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle 0 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond 0 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer 0 com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle 0 com.schriftgestaltung.layerOrderInGlyph.ring 0 com.schriftgestaltung.layerOrderInGlyph.ringArabic 0 com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb 0 com.schriftgestaltung.layerOrderInGlyph.ringcomb 0 com.schriftgestaltung.layerOrderInGlyph.ringcomb.case 0 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar 0 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.rnoon-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet 0 com.schriftgestaltung.layerOrderInGlyph.rreh-ar 0 com.schriftgestaltung.layerOrderInGlyph.rreh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ruble 0 com.schriftgestaltung.layerOrderInGlyph.rupee 0 com.schriftgestaltung.layerOrderInGlyph.rupeeIndian 0 com.schriftgestaltung.layerOrderInGlyph.s 0 com.schriftgestaltung.layerOrderInGlyph.sacute 0 com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sad-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedots-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sadThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sadTwodotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.samekh-hb 0 com.schriftgestaltung.layerOrderInGlyph.samekhdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.samvat-ar 0 com.schriftgestaltung.layerOrderInGlyph.scaron 0 com.schriftgestaltung.layerOrderInGlyph.scedilla 0 com.schriftgestaltung.layerOrderInGlyph.schwa 0 com.schriftgestaltung.layerOrderInGlyph.schwa-cy 0 com.schriftgestaltung.layerOrderInGlyph.scircumflex 0 com.schriftgestaltung.layerOrderInGlyph.scommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.sdotbelow 0 com.schriftgestaltung.layerOrderInGlyph.second 0 com.schriftgestaltung.layerOrderInGlyph.section 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seen-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenDotbelowDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenFourabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenFourdotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenTahTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenThreedotsbelowthreedots-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotshorizontalabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenTwodotsverticalabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.seenVinvertedabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.semicolon 0 com.schriftgestaltung.layerOrderInGlyph.semicolon-ar 0 com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga 0 com.schriftgestaltung.layerOrderInGlyph.seven 0 com.schriftgestaltung.layerOrderInGlyph.seven-ar 0 com.schriftgestaltung.layerOrderInGlyph.seven-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.seven-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.seven-persian 0 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdu 0 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urduinferior 0 com.schriftgestaltung.layerOrderInGlyph.seven-persian.urdusuperior 0 com.schriftgestaltung.layerOrderInGlyph.seven-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.seven-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.seven.dnom 0 com.schriftgestaltung.layerOrderInGlyph.seven.numr 0 com.schriftgestaltung.layerOrderInGlyph.seveneighths 0 com.schriftgestaltung.layerOrderInGlyph.seveninferior 0 com.schriftgestaltung.layerOrderInGlyph.sevensuperior 0 com.schriftgestaltung.layerOrderInGlyph.sha-cy 0 com.schriftgestaltung.layerOrderInGlyph.sha-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.shadda-ar 0 com.schriftgestaltung.layerOrderInGlyph.shadedark 0 com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shadelight 0 com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shademedium 0 com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shcha-cy 0 com.schriftgestaltung.layerOrderInGlyph.shcha-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sheen-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.sheenDotbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.sheqel 0 com.schriftgestaltung.layerOrderInGlyph.shha-cy 0 com.schriftgestaltung.layerOrderInGlyph.shiftInControl 0 com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl 0 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.shin-hb 0 com.schriftgestaltung.layerOrderInGlyph.shindagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.shindageshshindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.shindageshsindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.shindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.shinshindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.shinsindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.sigma 0 com.schriftgestaltung.layerOrderInGlyph.sigmafinal 0 com.schriftgestaltung.layerOrderInGlyph.sindhiampersand-ar 0 com.schriftgestaltung.layerOrderInGlyph.sindhipostpositionmen-ar 0 com.schriftgestaltung.layerOrderInGlyph.sindot-hb 0 com.schriftgestaltung.layerOrderInGlyph.six 0 com.schriftgestaltung.layerOrderInGlyph.six-ar 0 com.schriftgestaltung.layerOrderInGlyph.six-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.six-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.six-persian 0 com.schriftgestaltung.layerOrderInGlyph.six-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.six-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.six.dnom 0 com.schriftgestaltung.layerOrderInGlyph.six.numr 0 com.schriftgestaltung.layerOrderInGlyph.sixinferior 0 com.schriftgestaltung.layerOrderInGlyph.sixsuperior 0 com.schriftgestaltung.layerOrderInGlyph.slash 0 com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga 0 com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga 0 com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga 0 com.schriftgestaltung.layerOrderInGlyph.softhyphen 0 com.schriftgestaltung.layerOrderInGlyph.softsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.softsign-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.space 0 com.schriftgestaltung.layerOrderInGlyph.spaceControl 0 com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit 0 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl 0 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl 0 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.sterling 0 com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto 0 com.schriftgestaltung.layerOrderInGlyph.substituteControl 0 com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl 0 com.schriftgestaltung.layerOrderInGlyph.sukun-ar 0 com.schriftgestaltung.layerOrderInGlyph.summation 0 com.schriftgestaltung.layerOrderInGlyph.sunWithRays 0 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl 0 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.t 0 com.schriftgestaltung.layerOrderInGlyph.tah-ar 0 com.schriftgestaltung.layerOrderInGlyph.tah-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tah-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tah-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tahThreedots-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tahTwodotsabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tahbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.tahcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.tau 0 com.schriftgestaltung.layerOrderInGlyph.tav-hb 0 com.schriftgestaltung.layerOrderInGlyph.tavdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.tbar 0 com.schriftgestaltung.layerOrderInGlyph.tcaron 0 com.schriftgestaltung.layerOrderInGlyph.tcedilla 0 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tcheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tchehDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tcheheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tcommaaccent 0 com.schriftgestaltung.layerOrderInGlyph.te-cy 0 com.schriftgestaltung.layerOrderInGlyph.te-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.teh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehMarbuta-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehMarbutagoal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehRing-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehTehabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsdown-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tehThreedotsupbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tehabove-ar.small 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.teheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tenge 0 com.schriftgestaltung.layerOrderInGlyph.tesh 0 com.schriftgestaltung.layerOrderInGlyph.tet-hb 0 com.schriftgestaltung.layerOrderInGlyph.tetdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.thal-ar 0 com.schriftgestaltung.layerOrderInGlyph.thal-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.thalAlefabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.theh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.theta 0 com.schriftgestaltung.layerOrderInGlyph.thetamod 0 com.schriftgestaltung.layerOrderInGlyph.thorn 0 com.schriftgestaltung.layerOrderInGlyph.thousandseparator-ar 0 com.schriftgestaltung.layerOrderInGlyph.three 0 com.schriftgestaltung.layerOrderInGlyph.three-ar 0 com.schriftgestaltung.layerOrderInGlyph.three-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.three-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.three-persian 0 com.schriftgestaltung.layerOrderInGlyph.three-persian.small01 0 com.schriftgestaltung.layerOrderInGlyph.three-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.three-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.three.dnom 0 com.schriftgestaltung.layerOrderInGlyph.three.half 0 com.schriftgestaltung.layerOrderInGlyph.three.numr 0 com.schriftgestaltung.layerOrderInGlyph.threedots-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsdownabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsdownbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsdowncenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsupabove-ar.v2 0 com.schriftgestaltung.layerOrderInGlyph.threedotsupbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.threedotsupcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.threeeighths 0 com.schriftgestaltung.layerOrderInGlyph.threeinferior 0 com.schriftgestaltung.layerOrderInGlyph.threequarters 0 com.schriftgestaltung.layerOrderInGlyph.threesuperior 0 com.schriftgestaltung.layerOrderInGlyph.tilde 0 com.schriftgestaltung.layerOrderInGlyph.tildecomb 0 com.schriftgestaltung.layerOrderInGlyph.tildecomb.case 0 com.schriftgestaltung.layerOrderInGlyph.tonos 0 com.schriftgestaltung.layerOrderInGlyph.tonos.case 0 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle 0 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond 0 com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.trademark 0 com.schriftgestaltung.layerOrderInGlyph.tsadi-hb 0 com.schriftgestaltung.layerOrderInGlyph.tsadidagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.tse-cy 0 com.schriftgestaltung.layerOrderInGlyph.tse-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.tshe-cy 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.tteheh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.tugrik 0 com.schriftgestaltung.layerOrderInGlyph.two 0 com.schriftgestaltung.layerOrderInGlyph.two-ar 0 com.schriftgestaltung.layerOrderInGlyph.two-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.two-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.two-persian 0 com.schriftgestaltung.layerOrderInGlyph.two-persian.small01 0 com.schriftgestaltung.layerOrderInGlyph.two-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.two-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.two.dnom 0 com.schriftgestaltung.layerOrderInGlyph.two.half 0 com.schriftgestaltung.layerOrderInGlyph.two.numr 0 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalabove-ar.v2 0 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotshorizontalcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotstahbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotstahcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.twodotsverticalcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.twoinferior 0 com.schriftgestaltung.layerOrderInGlyph.twosuperior 0 com.schriftgestaltung.layerOrderInGlyph.u 0 com.schriftgestaltung.layerOrderInGlyph.u-ar 0 com.schriftgestaltung.layerOrderInGlyph.u-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.u-cy 0 com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.uHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.uacute 0 com.schriftgestaltung.layerOrderInGlyph.ubreve 0 com.schriftgestaltung.layerOrderInGlyph.ucircumflex 0 com.schriftgestaltung.layerOrderInGlyph.udieresis 0 com.schriftgestaltung.layerOrderInGlyph.udotbelow 0 com.schriftgestaltung.layerOrderInGlyph.ugrave 0 com.schriftgestaltung.layerOrderInGlyph.uhookabove 0 com.schriftgestaltung.layerOrderInGlyph.uhorn 0 com.schriftgestaltung.layerOrderInGlyph.uhornacute 0 com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow 0 com.schriftgestaltung.layerOrderInGlyph.uhorngrave 0 com.schriftgestaltung.layerOrderInGlyph.uhornhookabove 0 com.schriftgestaltung.layerOrderInGlyph.uhorntilde 0 com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut 0 com.schriftgestaltung.layerOrderInGlyph.umacron 0 com.schriftgestaltung.layerOrderInGlyph.umacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.underscore 0 com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq 0 com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq 0 com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq 0 com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga 0 com.schriftgestaltung.layerOrderInGlyph.underscoredbl 0 com.schriftgestaltung.layerOrderInGlyph.uni08B3 0 com.schriftgestaltung.layerOrderInGlyph.uni08B3.fina 0 com.schriftgestaltung.layerOrderInGlyph.uni08B3.init 0 com.schriftgestaltung.layerOrderInGlyph.uni08B3.medi 0 com.schriftgestaltung.layerOrderInGlyph.uni08B4 0 com.schriftgestaltung.layerOrderInGlyph.uni08B4.fina 0 com.schriftgestaltung.layerOrderInGlyph.uni08B4.init 0 com.schriftgestaltung.layerOrderInGlyph.uni08B4.medi 0 com.schriftgestaltung.layerOrderInGlyph.uni08B9.fina 0 com.schriftgestaltung.layerOrderInGlyph.uniFBC0 0 com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl 0 com.schriftgestaltung.layerOrderInGlyph.uogonek 0 com.schriftgestaltung.layerOrderInGlyph.upArrow 0 com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upDashArrow 0 com.schriftgestaltung.layerOrderInGlyph.upDownArrow 0 com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow 0 com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfArc 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftArc 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightArc 0 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle 0 com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.upsilon 0 com.schriftgestaltung.layerOrderInGlyph.upsilon-latin 0 com.schriftgestaltung.layerOrderInGlyph.upsilondieresis 0 com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos 0 com.schriftgestaltung.layerOrderInGlyph.upsilontonos 0 com.schriftgestaltung.layerOrderInGlyph.uring 0 com.schriftgestaltung.layerOrderInGlyph.ushort-cy 0 com.schriftgestaltung.layerOrderInGlyph.ustraight-cy 0 com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.utilde 0 com.schriftgestaltung.layerOrderInGlyph.v 0 com.schriftgestaltung.layerOrderInGlyph.vabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.vav-hb 0 com.schriftgestaltung.layerOrderInGlyph.vavdagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.vavholam-hb 0 com.schriftgestaltung.layerOrderInGlyph.ve-ar 0 com.schriftgestaltung.layerOrderInGlyph.ve-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.ve-cy 0 com.schriftgestaltung.layerOrderInGlyph.ve-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.alt 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.veh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.venus 0 com.schriftgestaltung.layerOrderInGlyph.verseComma-ar 0 com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle 0 com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare 0 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl 0 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20 0 com.schriftgestaltung.layerOrderInGlyph.vhook 0 com.schriftgestaltung.layerOrderInGlyph.vinvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.vturned 0 com.schriftgestaltung.layerOrderInGlyph.w 0 com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga 0 com.schriftgestaltung.layerOrderInGlyph.wacute 0 com.schriftgestaltung.layerOrderInGlyph.wasla-ar 0 com.schriftgestaltung.layerOrderInGlyph.wavyhamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.wavyhamzabelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.waw-ar 0 com.schriftgestaltung.layerOrderInGlyph.waw-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawDotcenter-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawStraight-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawThreeAbove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawTwoabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawTwodots-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wawring-ar 0 com.schriftgestaltung.layerOrderInGlyph.wawring-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.wcircumflex 0 com.schriftgestaltung.layerOrderInGlyph.wdieresis 0 com.schriftgestaltung.layerOrderInGlyph.wgrave 0 com.schriftgestaltung.layerOrderInGlyph.whiteBullet 0 com.schriftgestaltung.layerOrderInGlyph.whiteCircle 0 com.schriftgestaltung.layerOrderInGlyph.whiteDiamond 0 com.schriftgestaltung.layerOrderInGlyph.whiteHexagon 0 com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse 0 com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond 0 com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge 0 com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram 0 com.schriftgestaltung.layerOrderInGlyph.whitePentagon 0 com.schriftgestaltung.layerOrderInGlyph.whiteRect 0 com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge 0 com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace 0 com.schriftgestaltung.layerOrderInGlyph.whiteSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare 0 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse 0 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect 0 com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare 0 com.schriftgestaltung.layerOrderInGlyph.wmod 0 com.schriftgestaltung.layerOrderInGlyph.won 0 com.schriftgestaltung.layerOrderInGlyph.x 0 com.schriftgestaltung.layerOrderInGlyph.x.multiply 0 com.schriftgestaltung.layerOrderInGlyph.xi 0 com.schriftgestaltung.layerOrderInGlyph.y 0 com.schriftgestaltung.layerOrderInGlyph.yacute 0 com.schriftgestaltung.layerOrderInGlyph.ycircumflex 0 com.schriftgestaltung.layerOrderInGlyph.ydieresis 0 com.schriftgestaltung.layerOrderInGlyph.ydotbelow 0 com.schriftgestaltung.layerOrderInGlyph.year-ar 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yeh-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yeh-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehFourbelow-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehHamzaabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehKashmiri-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehRohingya-ar.isol 0 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTail-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreeabove-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsabove-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehThreedotsbelow-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwoabove-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsabove-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowDotabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowHamzaabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehTwodotsbelowNoonabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehVabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.fina.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehVinverted-farsi.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehbarree-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeHamzaabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeThreeabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.init.alt 0 com.schriftgestaltung.layerOrderInGlyph.yehbarreeTwoabove-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.yen 0 com.schriftgestaltung.layerOrderInGlyph.yeru-cy 0 com.schriftgestaltung.layerOrderInGlyph.ygrave 0 com.schriftgestaltung.layerOrderInGlyph.yhookabove 0 com.schriftgestaltung.layerOrderInGlyph.yi-cy 0 com.schriftgestaltung.layerOrderInGlyph.ymacron 0 com.schriftgestaltung.layerOrderInGlyph.ymod 0 com.schriftgestaltung.layerOrderInGlyph.yod-hb 0 com.schriftgestaltung.layerOrderInGlyph.yoddagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.ytilde 0 com.schriftgestaltung.layerOrderInGlyph.yu-ar 0 com.schriftgestaltung.layerOrderInGlyph.yu-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.z 0 com.schriftgestaltung.layerOrderInGlyph.zacute 0 com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK 0 com.schriftgestaltung.layerOrderInGlyph.zah-ar 0 com.schriftgestaltung.layerOrderInGlyph.zah-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.zah-ar.init 0 com.schriftgestaltung.layerOrderInGlyph.zah-ar.medi 0 com.schriftgestaltung.layerOrderInGlyph.zain-ar 0 com.schriftgestaltung.layerOrderInGlyph.zain-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar 0 com.schriftgestaltung.layerOrderInGlyph.zainVInvertedabove-ar.fina 0 com.schriftgestaltung.layerOrderInGlyph.zayin-hb 0 com.schriftgestaltung.layerOrderInGlyph.zayindagesh-hb 0 com.schriftgestaltung.layerOrderInGlyph.zcaron 0 com.schriftgestaltung.layerOrderInGlyph.zdotaccent 0 com.schriftgestaltung.layerOrderInGlyph.ze-cy 0 com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.zero 0 com.schriftgestaltung.layerOrderInGlyph.zero-ar 0 com.schriftgestaltung.layerOrderInGlyph.zero-arinferior 0 com.schriftgestaltung.layerOrderInGlyph.zero-arsuperior 0 com.schriftgestaltung.layerOrderInGlyph.zero-persian 0 com.schriftgestaltung.layerOrderInGlyph.zero-persianinferior 0 com.schriftgestaltung.layerOrderInGlyph.zero-persiansuperior 0 com.schriftgestaltung.layerOrderInGlyph.zero.dnom 0 com.schriftgestaltung.layerOrderInGlyph.zero.numr 0 com.schriftgestaltung.layerOrderInGlyph.zero.zero 0 com.schriftgestaltung.layerOrderInGlyph.zeroinferior 0 com.schriftgestaltung.layerOrderInGlyph.zerosuperior 0 com.schriftgestaltung.layerOrderInGlyph.zeta 0 com.schriftgestaltung.layerOrderInGlyph.zhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.zmod 0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lbelt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ldot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ldotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackP_ointer.glif ================================================ triaglf ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ uni25C2 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lackT_riangle.glif ================================================ uni25C0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ uni25D6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ uni2B16 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ uni25E7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftR_ightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ uni25C5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ uni25C3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ uni25C1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_plus.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_plus_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/less_slash_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lessequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lineseparator.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lira.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/liraT_urkish.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/literS_ign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/llinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lmiddletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/logicalnot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/logicalnotR_eversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/longs.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfA_rc.glif ================================================ uni25E1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D2 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DB ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ uni2B12 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftA_rc.glif ================================================ uni25DF ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ uni25E3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ uni2B14 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ uni25FA ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightA_rc.glif ================================================ uni25DE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ uni25E2 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ uni25EA ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ uni25FF ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowernumeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lowlinecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lozenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/lslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/m.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/macronbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/macroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/macroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/madda-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/manat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/maqaf-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mars.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ uni25FE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumB_lackS_quare.glif ================================================ uni25FC ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ uni25FD ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ uni25FB ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meem-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemS_topabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/meemT_hreedotsabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mem-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/memdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/micro.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/minus.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/minute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/misraC_omma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/mu.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/n.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/naira.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/napostrophe.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nbspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ncaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ncommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/newlineC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ng-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ngoeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar.v2 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nhookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey nine-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey nine-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name nine-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name nine-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nine.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nineinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ninesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nlinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nonbreakinghyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noon-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonA_frican-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_ahabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _onedotstah public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonT_wodotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _dotVabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunna-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/noonghunnaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/note-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/notedbl-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/notequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/notidentical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nu.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nullC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name U.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/number-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbermark-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/numero.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nun-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nundagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/nyeh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/o.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/obarred-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/obreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexgrave.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name gravecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflexhookabove.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top_viet index 2 name hookabovecomb ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ocircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/odieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/odotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oe-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oe-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oe.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ogonekcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ograve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ohungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omacronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omacrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omega.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omegatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omicron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/omicrontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name one-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name one-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/one.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onedotenleader.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oneeighth.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onehalf.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oneinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onequarter.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/onesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ordfeminine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ordmasculine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/orthogonal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/oslashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/otilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/overline.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pagenumber-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/palochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/paragraph.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/parenright-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name parenleft-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/parenright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/partialdiff.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/paseq-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/patah-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pe-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pedagesh-hb.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pedagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pehM_eemabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name meemStopabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/percent-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/percent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/percent_percent.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_period_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/period_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/periodcentered.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/perispomenicomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/perthousand-ar.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/perthousand.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peseta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/peso.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/phi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/pi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/plus.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_greater.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name plus ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_plus.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/plus_plus_plus.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/plusminus.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/prescription.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/product.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/psi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/published.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/punctuationspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey period ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/q.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qaf-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafA_frican-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.init.alt.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.init.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafD_otless-ar.medi.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qafT_hreedotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qamats-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qamatsqatan-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qof-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/qofdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/question_question_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/questiondown.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/questiongreek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblbase.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotedblright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quoteleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotereversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quoteright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotesinglbase.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/quotesingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/r.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/racute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/radical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ratio.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ray-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name R.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/registered.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/reh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/reh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelowdotabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehD_otbelowdotabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name reh-ar alignment -1 index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehF_ourdots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehF_ourdots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehL_oop-ar.fina.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehL_oop-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _ringArabic com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehS_troke-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehS_troke-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name _stroke com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey reh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey reh-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotsverticalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehT_wodotsverticalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_below-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_below-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name _vbelow-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey reh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehv-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rehv-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/replacementC_haracter.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/resh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/reshdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/returnsymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rho.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackP_ointer.glif ================================================ triagrt ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ uni25B8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lackT_riangle.glif ================================================ uni25B6 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ uni25D7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ uni2B17 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ uni25E8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ uni25BB ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ uni25B9 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ uni25B7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ringA_rabic.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ringbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ringcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ringcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove com.schriftgestaltung.Glyphs.glyph.leftMetricsKey noonghunna-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey noonghunna-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rnoon-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rreh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rreh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ruble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rupee.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/rupeeI_ndian.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/s.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sad-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sadT_wodotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/samekh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/samekhdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/samvat-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/scaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/scedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/schwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/schwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/scircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/scommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/second.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/section.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seen-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name dotbelow-ar anchor top.dot index 2 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenD_otbelowD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.init com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.init public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name four-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenF_ourdotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name _twodotstah com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seen-ar.medi com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seen-ar.medi public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotshorizontalabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotsverticalabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenT_wodotsverticalabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seenV_invertedabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit0.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit8.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/segmentedD_igit9.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name eight-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey seven-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey seven-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urdu.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urduinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persian.urdusuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name seven-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name seven-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seven.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seveneighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/seveninferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sevensuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sha-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shadda-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shadedark.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shadedark.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shadelight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shadelight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shademedium.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shademedium.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shcha-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheen-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name dotbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheenD_otbelow-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sheqel.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name I.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name O.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shindagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shindageshshindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shindageshsindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shindot-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shinshindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/shinsindot-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sigma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sigmafinal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sindhiampersand-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey hamza-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey hamza-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sindhipostpositionmen-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =meem-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =meem-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sindot-hb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/six.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sixinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sixsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash alignment -1 index 1 name slash ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/slash_slash_slash.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name slash alignment -1 index 1 name slash alignment -1 index 2 name slash ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/softhyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/softsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/softsign-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/space.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/spaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name P.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/spadeB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name H.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sterling.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/strictlyequivalentto.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sukun-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/summation.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/sunW_ithR_ays.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name S.half alignment -1 index 1 name Y.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/t.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tah-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_hreedots-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahT_wodotsabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tahcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tau.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tav-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tavdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey tcheh-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey tcheh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcheheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name fourdotsbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/te-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/te-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbuta-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbuta-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbutagoal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehM_arbutagoal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehR_ing-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar alignment -1 index 2 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.fina com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_ehabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name tehabove-ar.small com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsdown-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsdownabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehT_hreedotsupbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tehabove-ar.small.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/teheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name fourdotsabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tesh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tet-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tetdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thal-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thal-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thalA_lefabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey thal-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thalA_lefabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name alefabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/theta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thetamod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/thousandseparator-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name three-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name three-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/three.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdownabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdownbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsdowncenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupabove-ar.v2.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dotabove-ar alignment -1 index 1 name dotabove-ar alignment -1 index 2 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threedotsupcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _threedots-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threeeighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threeinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threequarters.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/threesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tildecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tildecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tonos.case.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ uni2BCA ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ uni2B18 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ uni2B13 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ uni2B15 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/trademark.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tsadi-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tsadidagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tse-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tse-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tshe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top index 1 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tteheh-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/tugrik.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persian.small01.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name two-arinferior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name two-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/two.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _twodotshorizontal-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalabove-ar.v2.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name dotabove-ar alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotshorizontalcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _dot-ar alignment -1 index 1 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotstahbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabovesmall alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotstahcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabovesmall alignment -1 index 1 name _dot-ar alignment -1 index 2 name _dot-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalbelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _twodotsverticalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twodotsverticalcenter-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twoinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/twosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/u-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/u-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/u.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar.fina alignment -1 index 1 name hamzaabove-ar alignment -1 index 2 name _damma-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name hamzaabove-ar alignment -1 index 2 name _damma-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ubreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ucircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/udieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/udotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ugrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uhungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/umacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/umacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscore_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/underscoredbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.init.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_3.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.fina.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.init.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_4.medi.glif ================================================ com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uni08B_9.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uniF_B_C_0.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _tahabove public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name U.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ uni25B4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upB_lackT_riangle.glif ================================================ triagup ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ashA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ uni25ED ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ uni25EE ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ uni25B5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteT_riangle.glif ================================================ uni25B3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ uni25EC ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfA_rc.glif ================================================ uni25E0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DA ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftA_rc.glif ================================================ uni25DC ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ uni25E4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ uni25E9 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftT_riangle.glif ================================================ uni25F8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ uni25D5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightA_rc.glif ================================================ uni25DD ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ uni25D4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ uni25E5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperR_ightT_riangle.glif ================================================ uni25F9 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ uni25A7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ uni25A8 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilon-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilondieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/upsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/uring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ushort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ustraight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ustraightstroke-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/utilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/v.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vav-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vavdagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vavholam-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ve-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/veh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/venus.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verseC_omma-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ uni25EB ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalF_illC_ircle.glif ================================================ uni25CD ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalF_illS_quare.glif ================================================ uni25A5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name V.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vhook.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vinvertedabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _vabove com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/vturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/w.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/w_w_w.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wasla-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wavyhamzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzawavy public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wavyhamzabelow-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name _hamzawavy com.schriftgestaltung.Glyphs.originalWidth 1200 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/waw-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/waw-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otcenter-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotcenter-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawD_otcenter-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotcenter-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawS_traight-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_hreeA_bove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_hreeA_bove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name waw-ar alignment 1 anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey waw-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_wodots-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawT_wodots-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawring-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wawring-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic com.schriftgestaltung.Glyphs.glyph.rightMetricsKey waw-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wdieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteB_ullet.glif ================================================ openbullet ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteC_ircle.glif ================================================ circle ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteD_iamond.glif ================================================ uni25C7 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteH_exagon.glif ================================================ uni2B21 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ uni2B2D ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ uni25A3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_argeS_quare.glif ================================================ uni2B1C ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ uni25F1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ uni25F2 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ uni2B26 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ uni2B28 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteP_arallelogram.glif ================================================ uni25B1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteP_entagon.glif ================================================ uni2B20 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteR_ect.glif ================================================ uni25AD ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ uni25A2 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ uni2B2B ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_mallS_quare.glif ================================================ H18551 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteS_quare.glif ================================================ H22073 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ uni25F0 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ uni25F3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ uni2B2F ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ uni25AF ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ uni2B1E ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/wmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/won.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/x.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/x.multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/xi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/y.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ycircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ydieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ydotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/year-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name alefMaksura-ar.fina.alt public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-ar.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.init.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeh-farsi.medi.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.init.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.init.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehF_ourbelow-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name four-persianbelow-ar com.schriftgestaltung.Glyphs.glyph.leftMetricsKey dotlessbeh-ar.medi.wide com.schriftgestaltung.Glyphs.glyph.rightMetricsKey dotlessbeh-ar.medi.wide public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehH_amzaabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehK_ashmiri-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name ringArabic public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey _part.instroke public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehR_ohingya-ar.isol.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_ail-ar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreeabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name threedotsupabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name threedotsupabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.fina.alt.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_hreedotsbelow-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name threedotsdownbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar.fina com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar.fina public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name two-persian.small01 com.schriftgestaltung.Glyphs.glyph.leftMetricsKey alefMaksura-ar com.schriftgestaltung.Glyphs.glyph.rightMetricsKey alefMaksura-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_woabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top index 1 name twodotshorizontalabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsabove-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name twodotshorizontalabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar anchor top.dot index 2 name noonabove-ar com.schriftgestaltung.Glyphs.category Letter com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Other public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name vabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_above-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vabove-ar anchor bottom.dot index 2 name twodotshorizontalbelow-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.fina.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehV_inverted-farsi.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name vinvertedabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarree-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarree-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeH_amzaabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeH_amzaabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name hamzaabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment -1 index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_hreeabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor bottom.dot index 1 name twodotshorizontalbelow-ar alignment 1 anchor top.dot index 2 name three-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 anchor top.dot index 1 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.init.alt.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.init.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yehbarreeT_woabove-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 anchor top.dot index 2 name two-persian.small01 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yeru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ygrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yi-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ymacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ymod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yod-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yoddagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ytilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yu-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/yu-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/z.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.fina.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.init.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zah-ar.medi.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo anchor top.dot index 1 name dotabove-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zain-ar.fina.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zain-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zainV_I_nvertedabove-ar.fina.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zainV_I_nvertedabove-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zayin-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zayindagesh-hb.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ze-cy.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ public.markColor 0.85,0.26,0.06,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-ar.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-arinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-arsuperior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persian.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persianinferior.glif ================================================ com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero-persiansuperior.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment 1 index 0 name zero-arsuperior com.schriftgestaltung.Glyphs.category Number com.schriftgestaltung.Glyphs.script arabic com.schriftgestaltung.Glyphs.subCategory Small public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zero.zero.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey zero com.schriftgestaltung.Glyphs.glyph.rightMetricsKey zero ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zeroinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zerosuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zeta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zhedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs/zmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/allah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam_lam_heh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/contents.plist ================================================ allah-ar allah-ar.glif ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed B_lack/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId E5C955C8-F661-4960-B659-F2A3D2582D0D com.schriftgestaltung.layerOrderInGlyph.allah-ar 3 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/allah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam_lam_heh-ar alignment -1 index 1 name alef-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/contents.plist ================================================ allah-ar allah-ar.glif ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed R_egular/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId 2F00052B-4CEF-4C35-9869-AAD90889B4C2 com.schriftgestaltung.layerOrderInGlyph.allah-ar 5 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/allah-ar.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name lam_lam_heh-ar public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/contents.plist ================================================ allah-ar allah-ar.glif ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.E_xtraC_ondensed T_hin/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId E67DA94D-AF90-4AFA-8684-14D1F5822449 com.schriftgestaltung.layerOrderInGlyph.allah-ar 4 ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/_alefF_athatan-ar.fina.rlig.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/_tahabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/allah-ar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/bar_braceright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/contents.plist ================================================ _alefFathatan-ar.fina.rlig _alefF_athatan-ar.fina.rlig.glif _tahabove _tahabove.glif allah-ar allah-ar.glif bar_braceright.liga bar_braceright.liga.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif question-ar question-ar.glif ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/question-ar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/groups.plist ================================================ public.kern1.eight-ar.inferior eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior public.kern1.five-ar.inferior five-arinferior five-arsuperior public.kern1.four-persian.urdu.inferior four-persian.urduinferior four-persian.urdusuperior public.kern1.seven-ar.inferior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior public.kern2.dot_below pehMeemabove-ar.init public.kern2.eight-ar.inferior eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior public.kern2.nine-ar.inferior nine-arinferior nine-arsuperior nine-persianinferior nine-persiansuperior public.kern2.seven-ar.inferior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior public.kern2.seven-persian.urdu.inferior seven-persian.urduinferior seven-persian.urdusuperior public.kern2.six-ar.inferior six-arinferior six-arsuperior ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/layercontents.plist ================================================ public.default glyphs public.background glyphs.public.background ExtraCondensed Black glyphs.E_xtraC_ondensed B_lack ExtraCondensed Thin glyphs.E_xtraC_ondensed T_hin ExtraCondensed Regular glyphs.E_xtraC_ondensed R_egular ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/lib.plist ================================================ com.github.googlei18n.ufo2ft.filters name decomposeTransformedComponents pre 1 exclude ij_acute baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen baht.BRACKET.600 dollar.BRACKET.600 lam_alef-ar lam_alef-ar.fina lam_alef-ar.fina.short lam_alef-ar.short lam_lam_heh-ar allah-ar _tahabove name propagateAnchors pre 1 com.schriftgestaltung.appVersion 1352 com.schriftgestaltung.customName Extra com.schriftgestaltung.customParameter.GSFont.Axes Name Weight Tag wght com.schriftgestaltung.customParameter.GSFont.DisplayStrings {}/braceleft_bar.liga com.schriftgestaltung.customParameter.GSFont.disablesAutomaticAlignment com.schriftgestaltung.customParameter.GSFont.disablesLastChange com.schriftgestaltung.customParameter.GSFont.note #Macro to convert the ligatures from editable to production mode def ligatureProcess(production): for glyph in Glyphs.font.glyphs: if glyph.color == 3: #2 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 1200 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 1200 elif glyph.color == 4: #3 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 2400 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 2400 elif glyph.color == 9: #4 width if production == True: glyph.layers[0].LSB = glyph.layers[0].LSB - 3600 if production == False: glyph.layers[0].LSB = glyph.layers[0].LSB + 3600 ligatureProcess(True) #True for production mode, False for editable Settings for scaler for halves and thirds Third 30 30 30 40 40 40 80 -160 -340 Half 70 70 70 45 45 45 60 -220 -360 com.schriftgestaltung.customParameter.GSFont.useNiceNames 1 com.schriftgestaltung.customParameter.GSFontMaster.customValue 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue1 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue2 0 com.schriftgestaltung.customParameter.GSFontMaster.customValue3 0 com.schriftgestaltung.customParameter.GSFontMaster.iconName com.schriftgestaltung.customParameter.GSFontMaster.weightValue 140 com.schriftgestaltung.customParameter.GSFontMaster.widthValue 0 com.schriftgestaltung.fontMasterID master01 com.schriftgestaltung.fontMasterOrder 0 com.schriftgestaltung.keyboardIncrement 1 com.schriftgestaltung.weight Light com.schriftgestaltung.weightValue 140 com.schriftgestaltung.width Regular public.glyphOrder A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half Asmall Gsmall Ismall Lsmall a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehookabove abrevetilde acaron acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhookabove acircumflextilde adieresis adotbelow agrave ahookabove alpha-latin amacron aogonek aring aringacute atilde ae aeacute b c cacute ccaron ccedilla ccircumflex cdotaccent d eth dcaron dcroat dtail e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhookabove ecircumflextilde edieresis edotaccent edotbelow egrave ehookabove emacron eogonek eopen esh etilde eturned schwa ezh f g gamma-latin gbreve gcaron gcircumflex gcommaaccent gdotaccent glottalstop glottalstopreversed gstroke h hbar hcaron hcircumflex hdotbelow i idotless iacute ibreve icircumflex idieresis idotbelow igrave ihookabove ij ij_acute imacron iogonek iota-latin itilde j jdotless jacute jcaron jcircumflex k kcommaaccent kdotbelow kgreenlandic klinebelow l lacute lambdastroke lbar lbelt lcaron lcommaaccent ldot ldotbelow llinebelow lmiddletilde lslash m n nacute napostrophe ncaron ncommaaccent eng nhookleft nlinebelow ntilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhookabove ocircumflextilde odieresis odotbelow ograve ohookabove ohorn ohornacute ohorndotbelow ohorngrave ohornhookabove ohorntilde ohungarumlaut omacron omacronacute omacrongrave oogonek oopen oslash oslashacute otilde oe p thorn q r racute rcaron rcommaaccent rdotbelow s sacute scaron scedilla scircumflex scommaaccent sdotbelow germandbls longs t tbar tcaron tcedilla tcommaaccent tesh u uacute ubreve ucircumflex udieresis udotbelow ugrave uhookabove uhorn uhornacute uhorndotbelow uhorngrave uhornhookabove uhorntilde uhungarumlaut umacron uogonek upsilon-latin uring utilde v vhook vturned w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ydotbelow ygrave yhookabove ymacron ytilde z zacute zcaron zdotaccent dcaron.alt cacute.loclPLK nacute.loclPLK oacute.loclPLK sacute.loclPLK zacute.loclPLK x.multiply fi fl w_w_w.liga ordfeminine ordmasculine nmod wmod ymod A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR a-cy be-cy ve-cy ge-cy gje-cy gheupturn-cy de-cy ie-cy iegrave-cy io-cy zhe-cy ze-cy ii-cy iishort-cy iigrave-cy ka-cy kje-cy el-cy em-cy en-cy o-cy pe-cy er-cy es-cy te-cy u-cy ushort-cy ef-cy ha-cy che-cy tse-cy sha-cy shcha-cy dzhe-cy softsign-cy hardsign-cy yeru-cy lje-cy nje-cy dze-cy e-cy ereversed-cy i-cy yi-cy je-cy tshe-cy iu-cy ia-cy dje-cy ghestroke-cy zhedescender-cy kadescender-cy endescender-cy ustraight-cy ustraightstroke-cy hadescender-cy chedescender-cy shha-cy palochka-cy schwa-cy imacron-cy obarred-cy umacron-cy ve-cy.loclBGR ge-cy.loclBGR de-cy.loclBGR zhe-cy.loclBGR ze-cy.loclBGR ii-cy.loclBGR iishort-cy.loclBGR iigrave-cy.loclBGR ka-cy.loclBGR el-cy.loclBGR pe-cy.loclBGR te-cy.loclBGR ef-cy.loclBGR tse-cy.loclBGR sha-cy.loclBGR shcha-cy.loclBGR softsign-cy.loclBGR hardsign-cy.loclBGR iu-cy.loclBGR be-cy.loclSRB Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol alpha beta gamma delta epsilon zeta eta theta iota kappa lambda mu nu xi omicron pi rho sigmafinal sigma tau upsilon phi chi psi omega iotatonos iotadieresis iotadieresistonos upsilontonos upsilondieresis upsilondieresistonos omicrontonos omegatonos alphatonos epsilontonos etatonos kaiSymbol hamza-ar highhamza-ar alef-ar alef-ar.fina alef-ar.fina.alt alef-ar.fina.rlig alef-ar.short alef-ar.fina.short alef-ar.fina.short.alt alef-ar.fina.short.rlig alefHamzaabove-ar alefHamzaabove-ar.fina alefHamzaabove-ar.fina.alt alefHamzaabove-ar.fina.rlig alefHamzabelow-ar alefHamzabelow-ar.fina alefHamzabelow-ar.fina.alt alefHamzabelow-ar.fina.rlig alefWavyhamzaabove-ar alefWavyhamzaabove-ar.fina alefWavyhamzaabove-ar.fina.alt alefWavyhamzaabove-ar.fina.rlig alefWavyhamzabelow-ar alefWavyhamzabelow-ar.fina alefWavyhamzabelow-ar.fina.alt alefWavyhamzabelow-ar.fina.rlig alefMadda-ar alefMadda-ar.fina alefMadda-ar.fina.alt alefMadda-ar.fina.rlig alefWasla-ar alefWasla-ar.fina alefWasla-ar.fina.alt alefWasla-ar.fina.rlig alefFathatan-ar alefFathatan-ar.fina alefFathatan-ar.fina.rlig highhamzaAlef-ar highhamzaAlef-ar.fina highhamzaAlef-ar.fina.rlig behDotless-ar behDotless-ar.alt behDotless-ar.fina behDotless-ar.fina.alt behDotless-ar.medi behDotless-ar.init behDotless-ar.init.alt beh-ar beh-ar.alt beh-ar.fina beh-ar.fina.alt beh-ar.medi beh-ar.init beh-ar.init.alt peh-ar peh-ar.fina peh-ar.fina.alt peh-ar.medi peh-ar.init peh-ar.init.alt peh-ar.alt beeh-ar beeh-ar.alt beeh-ar.fina beeh-ar.fina.alt beeh-ar.medi beeh-ar.init beeh-ar.init.alt beheh-ar beheh-ar.alt beheh-ar.fina beheh-ar.fina.alt beheh-ar.medi beheh-ar.init beheh-ar.init.alt alefMaksura-ar.medi alefMaksura-ar.init alefMaksura-ar.init.alt teh-ar teh-ar.alt teh-ar.fina teh-ar.fina.alt teh-ar.medi teh-ar.init teh-ar.init.alt tehRing-ar tehRing-ar.fina tehRing-ar.fina.alt tehRing-ar.medi tehRing-ar.init tehRing-ar.init.alt tehRing-ar.alt tehThreedotsdown-ar tehThreedotsdown-ar.fina tehThreedotsdown-ar.fina.alt tehThreedotsdown-ar.medi tehThreedotsdown-ar.init tehThreedotsdown-ar.init.alt tehThreedotsdown-ar.alt theh-ar theh-ar.alt theh-ar.fina theh-ar.fina.alt theh-ar.medi theh-ar.init theh-ar.init.alt tteh-ar tteh-ar.alt tteh-ar.fina tteh-ar.fina.alt tteh-ar.medi tteh-ar.init tteh-ar.init.alt tteheh-ar tteheh-ar.alt tteheh-ar.fina tteheh-ar.fina.alt tteheh-ar.medi tteheh-ar.init tteheh-ar.init.alt teheh-ar teheh-ar.alt teheh-ar.fina teheh-ar.fina.alt teheh-ar.medi teheh-ar.init teheh-ar.init.alt behThreedotshorizontalbelow-ar behThreedotshorizontalbelow-ar.fina behThreedotshorizontalbelow-ar.fina.alt behThreedotshorizontalbelow-ar.medi behThreedotshorizontalbelow-ar.init behThreedotshorizontalbelow-ar.init.alt behThreedotshorizontalbelow-ar.alt behThreedotsupabove-ar behThreedotsupabove-ar.fina behThreedotsupabove-ar.fina.alt behThreedotsupabove-ar.medi behThreedotsupabove-ar.init behThreedotsupabove-ar.init.alt behThreedotsupabove-ar.alt behThreedotsupbelow-ar behThreedotsupbelow-ar.fina behThreedotsupbelow-ar.fina.alt behThreedotsupbelow-ar.medi behThreedotsupbelow-ar.init behThreedotsupbelow-ar.init.alt behThreedotsupbelow-ar.alt tehThreedotsupbelow-ar tehThreedotsupbelow-ar.fina tehThreedotsupbelow-ar.fina.alt tehThreedotsupbelow-ar.medi tehThreedotsupbelow-ar.init tehThreedotsupbelow-ar.init.alt tehThreedotsupbelow-ar.alt behTwodotsbelowDotabove-ar behTwodotsbelowDotabove-ar.fina behTwodotsbelowDotabove-ar.fina.alt behTwodotsbelowDotabove-ar.medi behTwodotsbelowDotabove-ar.init behTwodotsbelowDotabove-ar.init.alt behTwodotsbelowDotabove-ar.alt behVinvertedbelow-ar behVinvertedbelow-ar.fina behVinvertedbelow-ar.fina.alt behVinvertedbelow-ar.medi behVinvertedbelow-ar.init behVinvertedbelow-ar.init.alt behVinvertedbelow-ar.alt behVabove-ar behVabove-ar.fina behVabove-ar.fina.alt behVabove-ar.medi behVabove-ar.init behVabove-ar.init.alt behVabove-ar.alt behVbelow-ar behVbelow-ar.fina behVbelow-ar.fina.alt behVbelow-ar.medi behVbelow-ar.init behVbelow-ar.init.alt behVbelow-ar.alt behhamzaabove-ar behhamzaabove-ar.fina behhamzaabove-ar.fina.alt behhamzaabove-ar.medi behhamzaabove-ar.init behhamzaabove-ar.alt jeem-ar jeem-ar.fina jeem-ar.medi jeem-ar.init tcheh-ar tcheh-ar.fina tcheh-ar.medi tcheh-ar.init tcheheh-ar tcheheh-ar.fina tcheheh-ar.medi tcheheh-ar.init tchehDotabove-ar tchehDotabove-ar.fina tchehDotabove-ar.medi tchehDotabove-ar.init nyeh-ar nyeh-ar.fina nyeh-ar.medi nyeh-ar.init dyeh-ar dyeh-ar.fina dyeh-ar.medi dyeh-ar.init hah-ar hah-ar.fina hah-ar.medi hah-ar.init hahHamzaabove-ar hahHamzaabove-ar.fina hahHamzaabove-ar.medi hahHamzaabove-ar.init hahTwodotsverticalabove-ar hahTwodotsverticalabove-ar.fina hahTwodotsverticalabove-ar.medi hahTwodotsverticalabove-ar.init hahTwodotshorizontalabove-ar hahTwodotshorizontalabove-ar.fina hahTwodotshorizontalabove-ar.medi hahTwodotshorizontalabove-ar.init hahThreedotsabove-ar hahThreedotsabove-ar.fina hahThreedotsabove-ar.medi hahThreedotsabove-ar.init hahThreedotsupbelow-ar hahThreedotsupbelow-ar.fina hahThreedotsupbelow-ar.medi hahThreedotsupbelow-ar.init khah-ar khah-ar.fina khah-ar.medi khah-ar.init hahTahbelow-ar hahTahbelow-ar.fina hahTahbelow-ar.medi hahTahbelow-ar.init hahTahTwodotshorizontalabove-ar hahTahTwodotshorizontalabove-ar.fina hahTahTwodotshorizontalabove-ar.medi hahTahTwodotshorizontalabove-ar.init hahFourbelow-ar hahFourbelow-ar.fina hahFourbelow-ar.medi hahFourbelow-ar.init jeemTwodotsabove-ar jeemTwodotsabove-ar.fina jeemTwodotsabove-ar.medi jeemTwodotsabove-ar.init dal-ar dal-ar.fina thal-ar thal-ar.fina thalAlefabove-ar thalAlefabove-ar.fina ddal-ar ddal-ar.fina dahal-ar dahal-ar.fina ddahal-ar ddahal-ar.fina dalRing-ar dalRing-ar.fina dalDotbelow-ar dalDotbelow-ar.fina dalDotbelowTah-ar dalDotbelowTah-ar.fina dul-ar dul-ar.fina dalThreedotsdown-ar dalThreedotsdown-ar.fina dalFourdots-ar dalFourdots-ar.fina dalVinvertedabove-ar dalVinvertedabove-ar.fina dalTwodotsverticalbelowTahabove-ar dalVinvertedbelow-ar dalVinvertedbelow-ar.fina dalThreedotsbelow-ar dalThreedotsbelow-ar.fina reh-ar reh-ar.fina zain-ar zain-ar.fina zainVInvertedabove-ar uni08B3 uni08B3.fina uni08B3.medi uni08B3.init uni08B4 uni08B4.fina uni08B4.medi uni08B4.init rreh-ar rreh-ar.fina rehv-ar rehv-ar.fina rehRing-ar rehRing-ar.fina rehDotbelow-ar rehDotbelow-ar.fina rehVbelow-ar rehVbelow-ar.fina rehDotbelowdotabove-ar rehDotbelowdotabove-ar.fina rehTwodots-ar rehTwodots-ar.fina jeh-ar jeh-ar.fina rehFourdots-ar rehFourdots-ar.fina rehVinvertedabove-ar rehVinvertedabove-ar.fina rehStroke-ar rehStroke-ar.fina rehTwodotsverticalabove-ar rehTwodotsverticalabove-ar.fina rehHamzaabove-ar rehHamzaabove-ar.fina rehTwodotshorizontalaboveTahabove-ar rehTwodotshorizontalaboveTahabove-ar.fina rehAlefabove-ar rehAlefabove-ar.fina rehLoop-ar rehLoop-ar.fina seen-ar seen-ar.alt seen-ar.fina seen-ar.fina.alt seen-ar.medi seen-ar.init seenDotbelowDotabove-ar seenDotbelowDotabove-ar.fina seenDotbelowDotabove-ar.fina.alt seenDotbelowDotabove-ar.medi seenDotbelowDotabove-ar.init seenDotbelowDotabove-ar.alt seenThreedotsbelow-ar seenThreedotsbelow-ar.fina seenThreedotsbelow-ar.fina.alt seenThreedotsbelow-ar.medi seenThreedotsbelow-ar.init seenThreedotsbelow-ar.alt sheen-ar sheen-ar.alt sheen-ar.fina sheen-ar.fina.alt sheen-ar.medi sheen-ar.init sheenDotbelow-ar sheenDotbelow-ar.fina sheenDotbelow-ar.fina.alt sheenDotbelow-ar.medi sheenDotbelow-ar.init sheenDotbelow-ar.alt seenThreedotsbelowthreedots-ar sad-ar sad-ar.alt sad-ar.fina sad-ar.fina.alt sad-ar.medi sad-ar.init sadTwodotsbelow-ar sadTwodotsbelow-ar.fina sadTwodotsbelow-ar.fina.alt sadTwodotsbelow-ar.medi sadTwodotsbelow-ar.init sadTwodotsbelow-ar.alt sadThreedots-ar sadThreedots-ar.fina sadThreedots-ar.fina.alt sadThreedots-ar.medi sadThreedots-ar.init sadThreedots-ar.alt sadThreedotsbelow-ar sadThreedotsbelow-ar.fina sadThreedotsbelow-ar.fina.alt sadThreedotsbelow-ar.medi sadThreedotsbelow-ar.init sadThreedotsbelow-ar.alt dad-ar dad-ar.alt dad-ar.fina dad-ar.fina.alt dad-ar.medi dad-ar.init dadDotbelow-ar dadDotbelow-ar.fina dadDotbelow-ar.fina.alt dadDotbelow-ar.medi dadDotbelow-ar.init dadDotbelow-ar.alt tah-ar tah-ar.fina tah-ar.medi tah-ar.init tahThreedots-ar tahThreedots-ar.fina tahThreedots-ar.medi tahThreedots-ar.init zah-ar zah-ar.fina zah-ar.medi zah-ar.init tahTwodotsabove-ar tahTwodotsabove-ar.fina tahTwodotsabove-ar.medi tahTwodotsabove-ar.init ain-ar ain-ar.fina ain-ar.medi ain-ar.init ainThreedots-ar ainThreedots-ar.fina ainThreedots-ar.medi ainThreedots-ar.init ghain-ar ghain-ar.fina ghain-ar.medi ghain-ar.init ghainDotbelow-ar ghainDotbelow-ar.fina ghainDotbelow-ar.medi ghainDotbelow-ar.init feh-ar feh-ar.alt feh-ar.fina feh-ar.fina.alt feh-ar.medi feh-ar.init feh-ar.init.alt veh-ar veh-ar.alt veh-ar.fina veh-ar.fina.alt veh-ar.medi veh-ar.init veh-ar.init.alt fehDotless-ar fehDotless-ar.alt fehDotless-ar.fina fehDotless-ar.fina.alt fehDotless-ar.medi fehDotless-ar.init fehDotless-ar.init.alt fehDotMovedbelow-ar fehDotbelow-ar fehDotbelow-ar.fina fehDotbelow-ar.fina.alt fehDotbelow-ar.medi fehDotbelow-ar.init fehDotbelow-ar.alt fehThreedotsbelow-ar fehThreedotsbelow-ar.fina fehThreedotsbelow-ar.fina.alt fehThreedotsbelow-ar.medi fehThreedotsbelow-ar.init fehThreedotsbelow-ar.alt fehDotbelowThreedotsabove-ar fehDotbelowThreedotsabove-ar.fina fehDotbelowThreedotsabove-ar.fina.alt fehDotbelowThreedotsabove-ar.medi fehDotbelowThreedotsabove-ar.init fehDotbelowThreedotsabove-ar.alt peheh-ar peheh-ar.fina peheh-ar.fina.alt peheh-ar.medi peheh-ar.init peheh-ar.init.alt peheh-ar.alt qafDotless-ar qafDotless-ar.medi qafDotless-ar.init qafDotless-ar.init.alt qafDotless-ar.fina qaf-ar qaf-ar.fina qaf-ar.medi qaf-ar.init qaf-ar.init.alt qafDotabove-ar qafDotabove-ar.fina qafDotabove-ar.medi qafDotabove-ar.init qafDotabove-ar.init.alt qafThreedotsabove-ar qafThreedotsabove-ar.fina qafThreedotsabove-ar.medi qafThreedotsabove-ar.init qafDotbelow-ar qafDotbelow-ar.fina qafDotbelow-ar.medi qafDotbelow-ar.init qafAfrican-ar qafAfrican-ar.fina qafAfrican-ar.medi qafAfrican-ar.init qafAfrican-ar.init.alt kaf-ar kaf-ar.fina kaf-ar.medi kaf-ar.init keheh-ar keheh-ar.fina keheh-ar.medi keheh-ar.init kehehTwodotshorizontalabove-ar kehehTwodotshorizontalabove-ar.fina kehehTwodotshorizontalabove-ar.medi kehehTwodotshorizontalabove-ar.init kehehThreedotsbelow-ar kehehThreedotsbelow-ar.fina kehehThreedotsbelow-ar.medi kehehThreedotsbelow-ar.init kehehDotabove-ar kehehDotabove-ar.fina kehehDotabove-ar.medi kehehDotabove-ar.init kehehThreedotsabove-ar kehehThreedotsabove-ar.fina kehehThreedotsabove-ar.medi kehehThreedotsabove-ar.init kehehThreedotsupbelow-ar kehehThreedotsupbelow-ar.fina kehehThreedotsupbelow-ar.medi kehehThreedotsupbelow-ar.init gaf-ar gaf-ar.fina gaf-ar.medi gaf-ar.init gafRing-ar gafRing-ar.fina gafRing-ar.medi gafRing-ar.init gafThreedots-ar gafThreedots-ar.fina gafThreedots-ar.medi gafThreedots-ar.init kafswash-ar kafswash-ar.fina kafswash-ar.fina.alt kafswash-ar.medi kafswash-ar.medi.alt kafswash-ar.init kafswash-ar.init.alt kafswash-ar.alt kafRing-ar kafRing-ar.fina kafRing-ar.medi kafRing-ar.init kafDotabove-ar kafDotabove-ar.fina kafDotabove-ar.medi kafDotabove-ar.init kafTwodotshorizontalabove-ar kafTwodotshorizontalabove-ar.fina kafTwodotshorizontalabove-ar.medi kafTwodotshorizontalabove-ar.init kafThreedotsbelow-ar kafThreedotsbelow-ar.fina kafThreedotsbelow-ar.medi kafThreedotsbelow-ar.init gafTwodotsbelow-ar gafTwodotsbelow-ar.fina gafTwodotsbelow-ar.medi gafTwodotsbelow-ar.init gafInvertedstroke-ar gafInvertedstroke-ar.fina gafInvertedstroke-ar.medi gafInvertedstroke-ar.init ng-ar ng-ar.fina ng-ar.medi ng-ar.init ngoeh-ar ngoeh-ar.fina ngoeh-ar.medi ngoeh-ar.init gueh-ar gueh-ar.fina gueh-ar.medi gueh-ar.init lam-ar lam-ar.fina lam-ar.medi lam-ar.medi.rlig lam-ar.init lam-ar.init.rlig lamVabove-ar lamVabove-ar.fina lamVabove-ar.medi lamVabove-ar.medi.rlig lamVabove-ar.init lamVabove-ar.init.rlig lamDotabove-ar lamDotabove-ar.fina lamDotabove-ar.medi lamDotabove-ar.medi.rlig lamDotabove-ar.init lamDotabove-ar.init.rlig lamThreedotsabove-ar lamThreedotsabove-ar.fina lamThreedotsabove-ar.medi lamThreedotsabove-ar.medi.rlig lamThreedotsabove-ar.init lamThreedotsabove-ar.init.rlig lamThreedotsbelow-ar lamThreedotsbelow-ar.fina lamThreedotsbelow-ar.medi lamThreedotsbelow-ar.medi.rlig lamThreedotsbelow-ar.init lamThreedotsbelow-ar.init.rlig lamDoublebar-ar lamDoublebar-ar.fina lamDoublebar-ar.medi lamDoublebar-ar.medi.rlig lamDoublebar-ar.init lamDoublebar-ar.init.rlig meem-ar meem-ar.fina meem-ar.medi meem-ar.init meemThreedotsabove-ar meemThreedotsabove-ar.fina meemThreedotsabove-ar.medi meemThreedotsabove-ar.init noon-ar noon-ar.fina noon-ar.medi noon-ar.init noon-ar.init.alt noonDotbelow-ar noonDotbelow-ar.fina noonDotbelow-ar.medi noonDotbelow-ar.init noonDotbelow-ar.init.alt noonghunna-ar noonghunna-ar.medi noonghunna-ar.init noonghunna-ar.init.alt noonghunna-ar.fina rnoon-ar rnoon-ar.fina rnoon-ar.medi rnoon-ar.init rnoon-ar.init.alt noonRing-ar noonRing-ar.fina noonRing-ar.medi noonRing-ar.init noonRing-ar.init.alt noonThreedotsabove-ar noonThreedotsabove-ar.fina noonThreedotsabove-ar.medi noonThreedotsabove-ar.init noonThreedotsabove-ar.init.alt noonAfrican-ar noonAfrican-ar.fina noonAfrican-ar.medi noonAfrican-ar.init noonAfrican-ar.init.alt heh-ar heh-ar.fina heh-ar.medi heh-ar.init hehHamzaabove-ar hehHamzaabove-ar.fina hehgoal-ar hehgoal-ar.fina hehgoal-ar.medi hehgoal-ar.init hehgoal-ar.init.alt hehgoalHamzaabove-ar hehgoalHamzaabove-ar.fina hehgoalHamzaabove-ar.medi hehgoalHamzaabove-ar.init hehgoalHamzaabove-ar.init.alt hehDoachashmee-ar hehDoachashmee-ar.fina hehDoachashmee-ar.medi hehDoachashmee-ar.init hehVinvertedabove-ar hehVinvertedabove-ar.fina hehVinvertedabove-ar.medi hehVinvertedabove-ar.init hehAlefabove-ar.init hehAlefabove-ar.init.fina tehMarbuta-ar tehMarbuta-ar.fina tehMarbutagoal-ar tehMarbutagoal-ar.fina waw-ar waw-ar.fina wawring-ar wawring-ar.fina wawTwodots-ar wawTwodots-ar.fina wawDotabove-ar wawDotabove-ar.fina wawHamzaabove-ar wawHamzaabove-ar.fina wawTwoabove-ar wawTwoabove-ar.fina wawThreeAbove-ar wawThreeAbove-ar.fina wawDotcenter-ar wawDotcenter-ar.fina wawStraight-ar kirghizoe-ar kirghizoe-ar.fina oe-ar oe-ar.fina u-ar u-ar.fina yu-ar yu-ar.fina kirghizyu-ar kirghizyu-ar.fina ve-ar ve-ar.fina alefMaksura-ar alefMaksura-ar.fina alefMaksura-ar.fina.alt alefMaksuraAlefabove-ar alefMaksuraAlefabove-ar.fina alefMaksuraAlefabove-ar.fina.alt alefTwoabove-ar alefTwoabove-ar.fina alefTwoabove-ar.fina.alt alefTwoabove-ar.fina.rlig alefThreeabove-ar alefThreeabove-ar.fina alefThreeabove-ar.fina.alt alefThreeabove-ar.fina.rlig yeh-ar yeh-ar.fina yeh-ar.fina.alt yeh-ar.medi yeh-ar.init yeh-ar.init.alt yehHamzaabove-ar yehHamzaabove-ar.fina yehHamzaabove-ar.fina.alt yehHamzaabove-ar.medi yehHamzaabove-ar.init yehHamzaabove-ar.init.alt yehVabove-ar yehVabove-ar.fina yehVabove-ar.fina.alt yehVabove-ar.medi yehVabove-ar.init yehVabove-ar.init.alt yehTwodotsbelowHamzaabove-ar yehTwodotsbelowHamzaabove-ar.fina yehTwodotsbelowHamzaabove-ar.medi yehTwodotsbelowHamzaabove-ar.init yehTwodotsbelowHamzaabove-ar.init.alt yehTwodotsbelowDotabove-ar yehTwodotsbelowDotabove-ar.fina yehTwodotsbelowDotabove-ar.medi yehTwodotsbelowDotabove-ar.init yehTwodotsbelowDotabove-ar.init.alt yehVinverted-farsi yehVinverted-farsi.fina yehVinverted-farsi.fina.alt yehVinverted-farsi.medi yehVinverted-farsi.init yehVinverted-farsi.init.alt yeh-farsi yeh-farsi.fina yeh-farsi.fina.alt yeh-farsi.medi yeh-farsi.init yeh-farsi.init.alt yehTwodotsabove-farsi yehTwodotsabove-farsi.fina yehTwodotsabove-farsi.fina.alt yehTwodotsabove-farsi.medi yehTwodotsabove-farsi.init yehTwodotsabove-farsi.init.alt yehThreedotsabove-farsi yehThreedotsabove-farsi.fina yehThreedotsabove-farsi.fina.alt yehThreedotsabove-farsi.medi yehThreedotsabove-farsi.init yehThreedotsabove-farsi.init.alt yehTwoabove-farsi yehTwoabove-farsi.fina yehTwoabove-farsi.fina.alt yehTwoabove-farsi.medi yehTwoabove-farsi.init yehTwoabove-farsi.init.alt yehThreeabove-farsi yehThreeabove-farsi.fina yehThreeabove-farsi.fina.alt yehThreeabove-farsi.medi yehThreeabove-farsi.init yehThreeabove-farsi.init.alt yehFourbelow-farsi yehFourbelow-farsi.fina yehFourbelow-farsi.fina.alt yehFourbelow-farsi.medi yehFourbelow-farsi.init yehFourbelow-farsi.init.alt yehTail-ar yehTail-ar.fina yehTail-ar.fina.alt yehKashmiri-ar yehKashmiri-ar.fina yehKashmiri-ar.fina.alt yehKashmiri-ar.medi yehKashmiri-ar.init yehKashmiri-ar.init.alt e-ar e-ar.fina e-ar.fina.alt e-ar.medi e-ar.init e-ar.init.alt yehThreedotsbelow-ar yehThreedotsbelow-ar.fina yehThreedotsbelow-ar.fina.alt yehThreedotsbelow-ar.medi yehThreedotsbelow-ar.init yehThreedotsbelow-ar.init.alt yehbarree-ar yehbarree-ar.fina yehbarreeHamzaabove-ar yehbarreeHamzaabove-ar.fina yehbarreeTwoabove-ar yehbarreeTwoabove-ar.fina yehbarreeTwoabove-ar.medi yehbarreeTwoabove-ar.init yehbarreeTwoabove-ar.init.alt yehbarreeThreeabove-ar yehbarreeThreeabove-ar.fina yehbarreeThreeabove-ar.medi yehbarreeThreeabove-ar.init yehbarreeThreeabove-ar.init.alt yehRohingya-ar yehRohingya-ar.isol yehRohingya-ar.fina highhamzaWaw-ar highhamzaWaw-ar.fina uHamzaabove-ar uHamzaabove-ar.fina highhamzaYeh-ar highhamzaYeh-ar.fina highhamzaYeh-ar.fina.alt highhamzaYeh-ar.medi highhamzaYeh-ar.init highhamzaYeh-ar.init.alt ae-ar ae-ar.fina seenFourdotsabove-ar seenFourdotsabove-ar.fina seenFourdotsabove-ar.fina.alt seenFourdotsabove-ar.medi seenFourdotsabove-ar.init seenFourdotsabove-ar.alt ainTwodotshorizontalabove-ar ainTwodotshorizontalabove-ar.fina ainTwodotshorizontalabove-ar.medi ainTwodotshorizontalabove-ar.init ainThreedotsdownabove-ar ainThreedotsdownabove-ar.fina ainThreedotsdownabove-ar.medi ainThreedotsdownabove-ar.init ainTwodotsverticalabove-ar ainTwodotsverticalabove-ar.fina ainTwodotsverticalabove-ar.medi ainTwodotsverticalabove-ar.init fehTwodotsbelow-ar fehTwodotsbelow-ar.fina fehTwodotsbelow-ar.fina.alt fehTwodotsbelow-ar.medi fehTwodotsbelow-ar.init fehTwodotsbelow-ar.alt fehThreedotsupbelow-ar fehThreedotsupbelow-ar.fina fehThreedotsupbelow-ar.fina.alt fehThreedotsupbelow-ar.medi fehThreedotsupbelow-ar.init fehThreedotsupbelow-ar.alt meemDotabove-ar meemDotabove-ar.fina meemDotabove-ar.medi meemDotabove-ar.init meemDotbelow-ar meemDotbelow-ar.fina meemDotbelow-ar.medi meemDotbelow-ar.init noonTwodotsbelow-ar noonTwodotsbelow-ar.fina noonTwodotsbelow-ar.medi noonTwodotsbelow-ar.init noonTwodotsbelow-ar.init.alt noonTahabove-ar noonTahabove-ar.fina noonTahabove-ar.medi noonTahabove-ar.init noonTahabove-ar.init.alt noonVabove-ar noonVabove-ar.fina noonVabove-ar.medi noonVabove-ar.init noonVabove-ar.init.alt lamBar-ar lamBar-ar.fina lamBar-ar.medi lamBar-ar.medi.rlig lamBar-ar.init lamBar-ar.init.rlig seenTwodotshorizontalabove-ar seenTwodotshorizontalabove-ar.fina seenTwodotsverticalabove-ar.fina.alt seenTwodotshorizontalabove-ar.medi seenTwodotshorizontalabove-ar.init seenTwodotsverticalabove-ar.alt seenTahTwodotshorizontalabove-ar seenTahTwodotshorizontalabove-ar.fina seenTahTwodotshorizontalabove-ar.fina.alt seenTahTwodotshorizontalabove-ar.medi seenTahTwodotshorizontalabove-ar.init seenTahTwodotshorizontalabove-ar.alt hahTahabove-ar hahTahabove-ar.fina hahTahabove-ar.medi hahTahabove-ar.init seenFourabove-ar seenFourabove-ar.fina seenFourabove-ar.fina.alt seenFourabove-ar.medi seenFourabove-ar.init seenFourabove-ar.alt seenVinvertedabove-ar seenVinvertedabove-ar.fina seenVinvertedabove-ar.fina.alt seenVinvertedabove-ar.medi seenVinvertedabove-ar.init seenVinvertedabove-ar.alt kashida-ar behMeemabove-ar behMeemabove-ar.fina behMeemabove-ar.fina.alt behMeemabove-ar.medi behMeemabove-ar.init behMeemabove-ar.init.alt behMeemabove-ar.alt fehDotMovedbelow-ar.init fehDotMovedbelow-ar.medi pehMeemabove-ar pehMeemabove-ar.fina pehMeemabove-ar.fina.alt pehMeemabove-ar.medi pehMeemabove-ar.init pehMeemabove-ar.init.alt pehMeemabove-ar.alt uni08B9.fina tehTehabove-ar tehTehabove-ar.fina tehTehabove-ar.fina.alt tehTehabove-ar.medi tehTehabove-ar.init tehTehabove-ar.init.alt tehTehabove-ar.alt yehTwodotsbelowNoonabove-ar yehTwodotsbelowNoonabove-ar.fina yehTwodotsbelowNoonabove-ar.fina.alt yehTwodotsbelowNoonabove-ar.medi yehTwodotsbelowNoonabove-ar.init yehTwodotsbelowNoonabove-ar.init.alt lam_alef-ar lam_alef-ar.fina lam_alef-ar.fina.short lam_alef-ar.short lam_alefHamzaabove-ar lam_alefHamzaabove-ar.fina lam_alefHamzabelow-ar lam_alefHamzabelow-ar.fina lam_alefMadda-ar lam_alefMadda-ar.fina lam_lam_heh-ar lam_alefWasla-ar lam_alefWasla-ar.fina allah-ar alef-hb alefpatah-hb alefqamats-hb alefdagesh-hb bet-hb betdagesh-hb gimel-hb gimeldagesh-hb dalet-hb daletdagesh-hb he-hb hedagesh-hb vav-hb vavdagesh-hb vavholam-hb zayin-hb zayindagesh-hb het-hb tet-hb tetdagesh-hb yod-hb yoddagesh-hb finalkaf-hb finalkafdagesh-hb kaf-hb kafdagesh-hb lamed-hb lameddagesh-hb finalmem-hb mem-hb memdagesh-hb finalnun-hb nun-hb nundagesh-hb samekh-hb samekhdagesh-hb ayin-hb finalpe-hb finalpedagesh-hb pe-hb pedagesh-hb finaltsadi-hb tsadi-hb tsadidagesh-hb qof-hb qofdagesh-hb resh-hb reshdagesh-hb shin-hb shinshindot-hb shinsindot-hb shindageshshindot-hb shindageshsindot-hb shindagesh-hb tav-hb tavdagesh-hb thetamod zmod zero one two three four five six seven eight nine zero.zero one.half two.half three.half four.half zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior fraction onehalf onequarter threequarters oneeighth threeeighths fiveeighths seveneighths decimalseparator-ar thousandseparator-ar zero-ar one-ar two-ar three-ar four-ar five-ar six-ar seven-ar eight-ar nine-ar zero-persian one-persian two-persian three-persian four-persian five-persian six-persian seven-persian eight-persian nine-persian two-persian.small01 three-persian.small01 four-persian.small01 four-persian.urdu seven-persian.urdu eight-arinferior eight-arsuperior eight-persianinferior eight-persiansuperior five-arinferior five-arsuperior five-persianinferior five-persiansuperior four-arinferior four-arsuperior four-persianinferior four-persiansuperior nine-arinferior nine-arsuperior nine-persianinferior nine-persiansuperior one-arinferior one-arsuperior one-persianinferior one-persiansuperior seven-arinferior seven-arsuperior seven-persianinferior seven-persiansuperior six-arinferior six-arsuperior six-persianinferior six-persiansuperior three-arinferior three-arsuperior three-persianinferior three-persiansuperior two-arinferior two-arsuperior two-persianinferior two-persiansuperior four-persian.urduinferior seven-persian.urduinferior four-persian.urdusuperior seven-persian.urdusuperior zero-arinferior zero-arsuperior zero-persianinferior zero-persiansuperior period comma colon semicolon ellipsis exclam exclamdown question questiondown periodcentered bullet asterisk exclamdouble numbersign onedotenleader overline slash backslash colon.center parenleft parenright braceleft braceright bracketleft bracketright heavyleftpointinganglebracketornament heavyleftpointinganglequotationmarkornament heavyrightpointinganglebracketornament heavyrightpointinganglequotationmarkornament mediumleftpointinganglebracketornament mediumrightpointinganglebracketornament hyphen softhyphen endash emdash horizontalbar hyphentwo nonbreakinghyphen underscore underscoredbl quotesinglbase quotedblbase quotedblleft quotedblright quoteleft quoteright quotereversed guillemetleft guillemetright guilsinglleft guilsinglright quotedbl quotesingle hyphen_hyphen.liga hyphen_hyphen_hyphen.liga hyphen_asciitilde.liga parenleft_asterisk.liga braceleft_bar.liga braceright_numbersign.liga bracketleft_bar.liga bracketright_numbersign.liga period_hyphen.liga period_period.liga period_period_period.liga period_period_equal.liga period_period_less.liga period_question.liga period_equal.liga colon_colon.liga colon_colon_colon.liga colon_colon_equal.liga colon_equal.liga colon_slash_slash.liga semicolon_semicolon.liga exclam_period.liga exclam_colon.liga exclam_exclam.liga exclam_exclam_period.liga exclam_equal.liga exclam_equal_equal.liga question_period.liga question_colon.liga question_question.liga question_question_equal.liga question_equal.liga asterisk_parenright.liga asterisk_asterisk.liga asterisk_asterisk_asterisk.liga asterisk_greater.liga asterisk_slash.liga numbersign_parenleft.liga numbersign_braceleft.liga numbersign_bracketleft.liga numbersign_colon.liga numbersign_exclam.liga numbersign_question.liga numbersign_equal.liga numbersign_underscore.liga numbersign_underscore_parenleft.liga slash_asterisk.liga slash_greater.liga slash_slash.liga slash_slash_slash.liga slash_backslash.liga backslash_slash.liga backslash_backslash.liga underscore_underscore.liga hyphen_middle.seq hyphen_start.seq hyphen_end.seq colon_equal_middle.seq exclam_equal_middle.seq numbersign_end.seq numbersign_middle.seq numbersign_start.seq slash_equal_end.seq slash_equal_middle.seq slash_equal_start.seq slash_slash_equal_end.seq slash_slash_equal_middle.seq slash_slash_equal_start.seq underscore_end.seq underscore_middle.seq underscore_start.seq paseq-hb geresh-hb gershayim-hb maqaf-hb threedots-ar doubleverticalbarbelowSymbol-ar doubleverticalbarbelowSymbol-ar.comb asteriskArt-ar fullstop-ar comma-ar semicolon-ar question-ar number-ar asterisk-ar year-ar footnotemarker-ar pagenumber-ar dateseparator-ar verseComma-ar misraComma-ar sindhiampersand-ar endofayah-ar parenleft-ar parenright-ar anoteleia questiongreek punctuationspace space nbspace CR lineseparator .notdef ray-ar afghani-ar baht bitcoin cedi cent colonsign currency dollar dong euro eurocurrency florin franc guarani hryvnia kip lari lira liraTurkish manat naira peseta peso ruble rupee rupeeIndian sheqel sterling tenge tugrik won yen bulletoperator divisionslash equivalence horizontallineextension integralbt integraltp logicalnotReversed notidentical plus minus multiply divide equal notequal greater less greaterequal lessequal plusminus approxequal asciitilde logicalnot asciicircum infinity intersection integral Ohm increment product summation radical micro partialdiff orthogonal percent perthousand ratio strictlyequivalentto vectorOrCrossProduct greater.alt less.alt greater.center less.center upArrow rightArrow downArrow leftArrow leftRightArrow upDownArrow upDownbaseArrow downTipLeftArrow upDashArrow dashdownArrow lowerOneEighthBlock lowerOneQuarterBlock lowerThreeEighthsBlock lowerHalfBlock lowerFiveEighthsBlock lowerThreeQuartersBlock lowerSevenEighthsBlock fullBlock upperHalfBlock upperOneEighthBlock leftOneEighthBlock leftOneQuarterBlock leftThreeEighthsBlock leftBlock leftFiveEighthsBlock leftThreeQuartersBlock leftSevenEighthsBlock rightBlock rightOneEighthBlock lowerLeftBlock lowerRightBlock upperLeftBlock upperLeftAndLowerLeftAndLowerRightBlock upperLeftAndLowerRightBlock upperLeftAndUpperRightAndLowerLeftBlock upperLeftAndUpperRightAndLowerRightBlock upperRightBlock upperRightAndLowerLeftBlock upperRightAndLowerLeftAndLowerRightBlock shadelight shademedium shadedark blackCircle whiteCircle largeCircle leftHalfBlackWhiteCircle rightHalfBlackWhiteCircle lowerHalfBlackWhiteCircle upperHalfBlackWhiteCircle leftHalfBlackCircle rightHalfBlackCircle upperRightBlackCircle upperLeftWhiteCircle upperLeftQuadrantWhiteCircle lowerLeftQuadrantWhiteCircle lowerRightQuadrantWhiteCircle upperRightQuadrantWhiteCircle verticalFillCircle dottedCircle fisheye bullseye whiteBullet inverseBullet inverseWhiteCircle upperHalfInverseWhiteCircle lowerHalfInverseWhiteCircle upperHalfArc lowerHalfArc upperLeftArc upperRightArc lowerRightArc lowerLeftArc blackDiamond whiteDiamond leftHalfBlackDiamond rightHalfBlackDiamond topHalfBlackDiamond bottomHalfBlackDiamond blackInWhiteDiamond lozenge blackParallelogram whiteParallelogram blackVerticalRect filledRect whiteRect whiteVerticalRect blackSquare whiteSquare whiteRoundedCornersSquare whiteInBlackSquare dottedSquare horizontalFillSquare verticalFillSquare crosshatchFillSquare upperlefttolowerrightFillSquare upperrighttolowerleftFillSquare diagonalcrosshatchFillSquare blackSmallSquare whiteSmallSquare leftHalfBlackSquare rightHalfBlackSquare upperLeftDiagonalHalfBlackSquare lowerRightDiagonalHalfBlackSquare verticalBisectingLineWhiteSquare whiteUpperLeftQuadrantSquare whiteLowerLeftQuadrantSquare whiteLowerRightQuadrantSquare whiteUpperRightQuadrantSquare mediumWhiteSquare mediumBlackSquare mediumWhiteSmallSquare mediumBlackSmallSquare upBlackTriangle rightBlackTriangle downBlackTriangle leftBlackTriangle upWhiteTriangle rightWhiteTriangle downWhiteTriangle leftWhiteTriangle upWhiteTriangleWithDot upLeftHalfBlackTriangle upRightHalfBlackTriangle rightBlackPointer leftBlackPointer rightWhitePointer leftWhitePointer upBlackSmallTriangle rightBlackSmallTriangle downBlackSmallTriangle leftBlackSmallTriangle upWhiteSmallTriangle rightWhiteSmallTriangle downWhiteSmallTriangle leftWhiteSmallTriangle upperRightBlackTriangle lowerRightBlackTriangle lowerLeftBlackTriangle upperLeftBlackTriangle upperRightTriangle lowerRightTriangle lowerLeftTriangle upperLeftTriangle boxDoubleDownAndHorizontal boxDoubleDownAndLeft boxDoubleDownAndRight boxDoubleHorizontal boxDoubleUpAndHorizontal boxDoubleUpAndLeft boxDoubleUpAndRight boxDoubleVertical boxDoubleVerticalAndHorizontal boxDoubleVerticalAndLeft boxDoubleVerticalAndRight boxDownDoubleAndHorizontalSingle boxDownDoubleAndLeftSingle boxDownDoubleAndRightSingle boxDownHeavyAndHorizontalLight boxDownHeavyAndLeftLight boxDownHeavyAndLeftUpLight boxDownHeavyAndRightLight boxDownHeavyAndRightUpLight boxDownHeavyAndUpHorizontalLight boxDownLightAndHorizontalHeavy boxDownLightAndLeftHeavy boxDownLightAndLeftUpHeavy boxDownLightAndRightHeavy boxDownLightAndRightUpHeavy boxDownLightAndUpHorizontalHeavy boxDownSingleAndHorizontalDouble boxDownSingleAndLeftDouble boxDownSingleAndRightDouble boxHeavyDoubleDashHorizontal boxHeavyDoubleDashVertical boxHeavyDown boxHeavyDownAndHorizontal boxHeavyDownAndLeft boxHeavyDownAndRight boxHeavyHorizontal boxHeavyLeft boxHeavyLeftAndLightRight boxHeavyQuadrupleDashHorizontal boxHeavyQuadrupleDashVertical boxHeavyRight boxHeavyTripleDashHorizontal boxHeavyTripleDashVertical boxHeavyUp boxHeavyUpAndHorizontal boxHeavyUpAndLeft boxHeavyUpAndLightDown boxHeavyUpAndRight boxHeavyVertical boxHeavyVerticalAndHorizontal boxHeavyVerticalAndLeft boxHeavyVerticalAndRight boxLeftDownHeavyAndRightUpLight boxLeftHeavyAndRightDownLight boxLeftHeavyAndRightUpLight boxLeftHeavyAndRightVerticalLight boxLeftLightAndRightDownHeavy boxLeftLightAndRightUpHeavy boxLeftLightAndRightVerticalHeavy boxLeftUpHeavyAndRightDownLight boxLightArcDownAndLeft boxLightArcDownAndRight boxLightArcUpAndLeft boxLightArcUpAndRight boxLightDiagonalCross boxLightDiagonalUpperLeftToLowerRight boxLightDiagonalUpperRightToLowerLeft boxLightDoubleDashHorizontal boxLightDoubleDashVertical boxLightDown boxLightDownAndHorizontal boxLightDownAndLeft boxLightDownAndRight boxLightHorizontal boxLightLeft boxLightLeftAndHeavyRight boxLightQuadrupleDashHorizontal boxLightQuadrupleDashVertical boxLightRight boxLightTripleDashHorizontal boxLightTripleDashVertical boxLightUp boxLightUpAndHeavyDown boxLightUpAndHorizontal boxLightUpAndLeft boxLightUpAndRight boxLightVertical boxLightVerticalAndHorizontal boxLightVerticalAndLeft boxLightVerticalAndRight boxRightDownHeavyAndLeftUpLight boxRightHeavyAndLeftDownLight boxRightHeavyAndLeftUpLight boxRightHeavyAndLeftVerticalLight boxRightLightAndLeftDownHeavy boxRightLightAndLeftUpHeavy boxRightLightAndLeftVerticalHeavy boxRightUpHeavyAndLeftDownLight boxUpDoubleAndHorizontalSingle boxUpDoubleAndLeftSingle boxUpDoubleAndRightSingle boxUpHeavyAndDownHorizontalLight boxUpHeavyAndHorizontalLight boxUpHeavyAndLeftDownLight boxUpHeavyAndLeftLight boxUpHeavyAndRightDownLight boxUpHeavyAndRightLight boxUpLightAndDownHorizontalHeavy boxUpLightAndHorizontalHeavy boxUpLightAndLeftDownHeavy boxUpLightAndLeftHeavy boxUpLightAndRightDownHeavy boxUpLightAndRightHeavy boxUpSingleAndHorizontalDouble boxUpSingleAndLeftDouble boxUpSingleAndRightDouble boxVerticalDoubleAndHorizontalSingle boxVerticalDoubleAndLeftSingle boxVerticalDoubleAndRightSingle boxVerticalHeavyAndHorizontalLight boxVerticalHeavyAndLeftLight boxVerticalHeavyAndRightLight boxVerticalLightAndHorizontalHeavy boxVerticalLightAndLeftHeavy boxVerticalLightAndRightHeavy boxVerticalSingleAndHorizontalDouble boxVerticalSingleAndLeftDouble boxVerticalSingleAndRightDouble lowerOneEighthBlock.stypo lowerOneQuarterBlock.stypo lowerThreeEighthsBlock.stypo lowerHalfBlock.stypo lowerFiveEighthsBlock.stypo lowerThreeQuartersBlock.stypo lowerSevenEighthsBlock.stypo fullBlock.stypo upperHalfBlock.stypo upperOneEighthBlock.stypo leftOneEighthBlock.stypo leftOneQuarterBlock.stypo leftThreeEighthsBlock.stypo leftBlock.stypo leftFiveEighthsBlock.stypo leftThreeQuartersBlock.stypo leftSevenEighthsBlock.stypo rightBlock.stypo rightOneEighthBlock.stypo lowerLeftBlock.stypo lowerRightBlock.stypo upperLeftBlock.stypo upperLeftAndLowerLeftAndLowerRightBlock.stypo upperLeftAndLowerRightBlock.stypo upperLeftAndUpperRightAndLowerLeftBlock.stypo upperLeftAndUpperRightAndLowerRightBlock.stypo upperRightBlock.stypo upperRightAndLowerLeftBlock.stypo upperRightAndLowerLeftAndLowerRightBlock.stypo shadelight.stypo shademedium.stypo shadedark.stypo boxDoubleDownAndHorizontal.stypo boxDoubleDownAndLeft.stypo boxDoubleDownAndRight.stypo boxDoubleHorizontal.stypo boxDoubleUpAndHorizontal.stypo boxDoubleUpAndLeft.stypo boxDoubleUpAndRight.stypo boxDoubleVertical.stypo boxDoubleVerticalAndHorizontal.stypo boxDoubleVerticalAndLeft.stypo boxDoubleVerticalAndRight.stypo boxDownDoubleAndHorizontalSingle.stypo boxDownDoubleAndLeftSingle.stypo boxDownDoubleAndRightSingle.stypo boxDownHeavyAndHorizontalLight.stypo boxDownHeavyAndLeftLight.stypo boxDownHeavyAndLeftUpLight.stypo boxDownHeavyAndRightLight.stypo boxDownHeavyAndRightUpLight.stypo boxDownHeavyAndUpHorizontalLight.stypo boxDownLightAndHorizontalHeavy.stypo boxDownLightAndLeftHeavy.stypo boxDownLightAndLeftUpHeavy.stypo boxDownLightAndRightHeavy.stypo boxDownLightAndRightUpHeavy.stypo boxDownLightAndUpHorizontalHeavy.stypo boxDownSingleAndHorizontalDouble.stypo boxDownSingleAndLeftDouble.stypo boxDownSingleAndRightDouble.stypo boxHeavyDoubleDashHorizontal.stypo boxHeavyDoubleDashVertical.stypo boxHeavyDown.stypo boxHeavyDownAndHorizontal.stypo boxHeavyDownAndLeft.stypo boxHeavyDownAndRight.stypo boxHeavyHorizontal.stypo boxHeavyLeft.stypo boxHeavyLeftAndLightRight.stypo boxHeavyQuadrupleDashHorizontal.stypo boxHeavyQuadrupleDashVertical.stypo boxHeavyRight.stypo boxHeavyTripleDashHorizontal.stypo boxHeavyTripleDashVertical.stypo boxHeavyUp.stypo boxHeavyUpAndHorizontal.stypo boxHeavyUpAndLeft.stypo boxHeavyUpAndLightDown.stypo boxHeavyUpAndRight.stypo boxHeavyVertical.stypo boxHeavyVerticalAndHorizontal.stypo boxHeavyVerticalAndLeft.stypo boxHeavyVerticalAndRight.stypo boxLeftDownHeavyAndRightUpLight.stypo boxLeftHeavyAndRightDownLight.stypo boxLeftHeavyAndRightUpLight.stypo boxLeftHeavyAndRightVerticalLight.stypo boxLeftLightAndRightDownHeavy.stypo boxLeftLightAndRightUpHeavy.stypo boxLeftLightAndRightVerticalHeavy.stypo boxLeftUpHeavyAndRightDownLight.stypo boxLightArcDownAndLeft.stypo boxLightArcDownAndRight.stypo boxLightArcUpAndLeft.stypo boxLightArcUpAndRight.stypo boxLightDiagonalCross.stypo boxLightDiagonalUpperLeftToLowerRight.stypo boxLightDiagonalUpperRightToLowerLeft.stypo boxLightDoubleDashHorizontal.stypo boxLightDoubleDashVertical.stypo boxLightDown.stypo boxLightDownAndHorizontal.stypo boxLightDownAndLeft.stypo boxLightDownAndRight.stypo boxLightHorizontal.stypo boxLightLeft.stypo boxLightLeftAndHeavyRight.stypo boxLightQuadrupleDashHorizontal.stypo boxLightQuadrupleDashVertical.stypo boxLightRight.stypo boxLightTripleDashHorizontal.stypo boxLightTripleDashVertical.stypo boxLightUp.stypo boxLightUpAndHeavyDown.stypo boxLightUpAndHorizontal.stypo boxLightUpAndLeft.stypo boxLightUpAndRight.stypo boxLightVertical.stypo boxLightVerticalAndHorizontal.stypo boxLightVerticalAndLeft.stypo boxLightVerticalAndRight.stypo boxRightDownHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftDownLight.stypo boxRightHeavyAndLeftUpLight.stypo boxRightHeavyAndLeftVerticalLight.stypo boxRightLightAndLeftDownHeavy.stypo boxRightLightAndLeftUpHeavy.stypo boxRightLightAndLeftVerticalHeavy.stypo boxRightUpHeavyAndLeftDownLight.stypo boxUpDoubleAndHorizontalSingle.stypo boxUpDoubleAndLeftSingle.stypo boxUpDoubleAndRightSingle.stypo boxUpHeavyAndDownHorizontalLight.stypo boxUpHeavyAndHorizontalLight.stypo boxUpHeavyAndLeftDownLight.stypo boxUpHeavyAndLeftLight.stypo boxUpHeavyAndRightDownLight.stypo boxUpHeavyAndRightLight.stypo boxUpLightAndDownHorizontalHeavy.stypo boxUpLightAndHorizontalHeavy.stypo boxUpLightAndLeftDownHeavy.stypo boxUpLightAndLeftHeavy.stypo boxUpLightAndRightDownHeavy.stypo boxUpLightAndRightHeavy.stypo boxUpSingleAndHorizontalDouble.stypo boxUpSingleAndLeftDouble.stypo boxUpSingleAndRightDouble.stypo boxVerticalDoubleAndHorizontalSingle.stypo boxVerticalDoubleAndLeftSingle.stypo boxVerticalDoubleAndRightSingle.stypo boxVerticalHeavyAndHorizontalLight.stypo boxVerticalHeavyAndLeftLight.stypo boxVerticalHeavyAndRightLight.stypo boxVerticalLightAndHorizontalHeavy.stypo boxVerticalLightAndLeftHeavy.stypo boxVerticalLightAndRightHeavy.stypo boxVerticalSingleAndHorizontalDouble.stypo boxVerticalSingleAndLeftDouble.stypo boxVerticalSingleAndRightDouble.stypo reversedRotatedFloralHeartBullet whiteSmilingFace blackSmilingFace sunWithRays venus mars spadeBlackSuit clubBlackSuit heartBlackSuit diamondBlackSuit checkmark rotatedFloralHeartBullet acknowledgeControl backspaceControl at ampersand paragraph section copyright registered published trademark careof degree minute second bar brokenbar dagger literSign daggerdbl estimated numero bellControl blackHexagon blackHorizontalEllipse blackLargeCircle blackLargeSquare blackMediumDiamond blackMediumDownTriangleCentred blackMediumLeftTriangleCentred blackMediumLozenge blackMediumRightTriangleCentred blackMediumUpTriangleCentred blackPentagon blackSmallDiamond blackSmallLozenge blackVerticalEllipse blackVerysmallSquare blank blankSymbol bottomHalfBlackCircle cancelControl carriageReturnControl dataLinkEscapeControl deleteControl deleteFormTwoControl deviceControlFourControl deviceControlOneControl deviceControlThreeControl deviceControlTwoControl endOfMediumControl endOfTextControl endOfTransmissionBlockControl endOfTransmissionControl enquiryControl escapeControl fileSeparatorControl formFeedControl groupSeparatorControl horizontalBlackHexagon horizontalTabulationControl house returnsymbol lineFeedControl lowerHalfWhiteSquare lowerLeftHalfWhiteSquare negativeAcknowledgeControl newlineControl nullControl prescription recordSeparatorControl replacementCharacter shiftInControl shiftOutControl spaceControl startOfHeadingControl startOfTextControl substituteControl substituteFormTwoControl synchronousIdleControl topHalfBlackCircle topHalfWhiteSquare topRightHalfWhiteSquare unitSeparatorControl verticalTabulationControl whiteHexagon whiteHorizontalEllipse whiteLargeSquare whiteMediumDiamond whiteMediumLozenge whitePentagon whiteSmallLozenge whiteVerticalEllipse whiteVerysmallSquare acknowledgeControl.ss20 backspaceControl.ss20 bellControl.ss20 cancelControl.ss20 carriageReturnControl.ss20 dataLinkEscapeControl.ss20 endOfMediumControl.ss20 endOfTextControl.ss20 endOfTransmissionBlockControl.ss20 endOfTransmissionControl.ss20 enquiryControl.ss20 escapeControl.ss20 formFeedControl.ss20 horizontalTabulationControl.ss20 lineFeedControl.ss20 negativeAcknowledgeControl.ss20 shiftInControl.ss20 shiftOutControl.ss20 startOfHeadingControl.ss20 startOfTextControl.ss20 substituteControl.ss20 synchronousIdleControl.ss20 verticalTabulationControl.ss20 ampersand_ampersand.liga bar_braceright.liga bar_bracketright.liga bar_bar.liga bar_bar_bar.liga bar_bar_bar_greater.liga bar_bar_greater.liga bar_greater.liga dollar_greater.liga plus_plus.liga plus_plus_plus.liga plus_greater.liga equal_equal.liga equal_equal_equal.liga equal_greater_greater.liga equal_less_less.liga greater_equal.liga greater_greater.liga greater_greater_equal.liga greater_greater_greater.liga less_exclam_hyphen_hyphen.liga less_asterisk.liga less_asterisk_greater.liga less_bar.liga less_bar_bar.liga less_bar_bar_bar.liga less_bar_greater.liga less_dollar.liga less_dollar_greater.liga less_plus.liga less_plus_greater.liga less_equal.liga less_greater.liga less_less.liga less_less_equal.liga less_less_less.liga less_asciitilde.liga less_asciitilde_greater.liga less_asciitilde_asciitilde.liga less_slash.liga less_slash_greater.liga asciitilde_hyphen.liga asciitilde_at.liga asciitilde_equal.liga asciitilde_greater.liga asciitilde_asciitilde.liga asciitilde_asciitilde_greater.liga asciicircum_equal.liga percent_percent.liga bar_underscore_middle.seq bar_bar_equal_middle.seq bar_equal_middle.seq bar_bar_equal_end.seq bar_bar_equal_start.seq bar_bar_hyphen_middle.seq bar_hyphen_middle.seq bar_bar_hyphen_end.seq bar_bar_hyphen_start.seq bar_equal_end.seq bar_equal_start.seq bar_hyphen_end.seq bar_hyphen_start.seq equal_middle.seq equal_end.seq equal_start.seq greater_greater_equal_middle.seq greater_equal_middle.seq greater_greater_equal_end.seq greater_greater_equal_start.seq greater_equal_start.seq greater_equal_end.seq greater_greater_hyphen_middle.seq greater_hyphen_middle.seq greater_greater_hyphen_end.seq greater_greater_hyphen_start.seq greater_hyphen_start.seq greater_hyphen_end.seq less_less_equal_middle.seq less_equal_middle.seq less_less_equal_end.seq less_less_equal_start.seq less_equal_end.seq less_equal_start.seq less_less_hyphen_middle.seq less_hyphen_middle.seq less_less_hyphen_end.seq less_less_hyphen_start.seq less_hyphen_end.seq less_hyphen_start.seq note-musical notedbl-musical blank-braille dots1-braille dots12-braille dots123-braille dots1234-braille dots12345-braille dots123456-braille dots1234567-braille dots12345678-braille dots1234568-braille dots123457-braille dots1234578-braille dots123458-braille dots12346-braille dots123467-braille dots1234678-braille dots123468-braille dots12347-braille dots123478-braille dots12348-braille dots1235-braille dots12356-braille dots123567-braille dots1235678-braille dots123568-braille dots12357-braille dots123578-braille dots12358-braille dots1236-braille dots12367-braille dots123678-braille dots12368-braille dots1237-braille dots12378-braille dots1238-braille dots124-braille dots1245-braille dots12456-braille dots124567-braille dots1245678-braille dots124568-braille dots12457-braille dots124578-braille dots12458-braille dots1246-braille dots12467-braille dots124678-braille dots12468-braille dots1247-braille dots12478-braille dots1248-braille dots125-braille dots1256-braille dots12567-braille dots125678-braille dots12568-braille dots1257-braille dots12578-braille dots1258-braille dots126-braille dots1267-braille dots12678-braille dots1268-braille dots127-braille dots1278-braille dots128-braille dots13-braille dots134-braille dots1345-braille dots13456-braille dots134567-braille dots1345678-braille dots134568-braille dots13457-braille dots134578-braille dots13458-braille dots1346-braille dots13467-braille dots134678-braille dots13468-braille dots1347-braille dots13478-braille dots1348-braille dots135-braille dots1356-braille dots13567-braille dots135678-braille dots13568-braille dots1357-braille dots13578-braille dots1358-braille dots136-braille dots1367-braille dots13678-braille dots1368-braille dots137-braille dots1378-braille dots138-braille dots14-braille dots145-braille dots1456-braille dots14567-braille dots145678-braille dots14568-braille dots1457-braille dots14578-braille dots1458-braille dots146-braille dots1467-braille dots14678-braille dots1468-braille dots147-braille dots1478-braille dots148-braille dots15-braille dots156-braille dots1567-braille dots15678-braille dots1568-braille dots157-braille dots1578-braille dots158-braille dots16-braille dots167-braille dots1678-braille dots168-braille dots17-braille dots178-braille dots18-braille dots2-braille dots23-braille dots234-braille dots2345-braille dots23456-braille dots234567-braille dots2345678-braille dots234568-braille dots23457-braille dots234578-braille dots23458-braille dots2346-braille dots23467-braille dots234678-braille dots23468-braille dots2347-braille dots23478-braille dots2348-braille dots235-braille dots2356-braille dots23567-braille dots235678-braille dots23568-braille dots2357-braille dots23578-braille dots2358-braille dots236-braille dots2367-braille dots23678-braille dots2368-braille dots237-braille dots2378-braille dots238-braille dots24-braille dots245-braille dots2456-braille dots24567-braille dots245678-braille dots24568-braille dots2457-braille dots24578-braille dots2458-braille dots246-braille dots2467-braille dots24678-braille dots2468-braille dots247-braille dots2478-braille dots248-braille dots25-braille dots256-braille dots2567-braille dots25678-braille dots2568-braille dots257-braille dots2578-braille dots258-braille dots26-braille dots267-braille dots2678-braille dots268-braille dots27-braille dots278-braille dots28-braille dots3-braille dots34-braille dots345-braille dots3456-braille dots34567-braille dots345678-braille dots34568-braille dots3457-braille dots34578-braille dots3458-braille dots346-braille dots3467-braille dots34678-braille dots3468-braille dots347-braille dots3478-braille dots348-braille dots35-braille dots356-braille dots3567-braille dots35678-braille dots3568-braille dots357-braille dots3578-braille dots358-braille dots36-braille dots367-braille dots3678-braille dots368-braille dots37-braille dots378-braille dots38-braille dots4-braille dots45-braille dots456-braille dots4567-braille dots45678-braille dots4568-braille dots457-braille dots4578-braille dots458-braille dots46-braille dots467-braille dots4678-braille dots468-braille dots47-braille dots478-braille dots48-braille dots5-braille dots56-braille dots567-braille dots5678-braille dots568-braille dots57-braille dots578-braille dots58-braille dots6-braille dots67-braille dots678-braille dots68-braille dots7-braille dots78-braille dots8-braille sindhipostpositionmen-ar percent-ar cuberoot-ar fourthroot-ar perthousand-ar numbermark-ar samvat-ar numeral-greek lowernumeral-greek apostrophemod colontriangularmod commaturnedmod firsttonechinese glottalstopmod dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb commaturnedabovecomb commaabovecomb commaaboverightcomb horncomb dotbelowcomb ringbelowcomb commaaccentcomb cedillacomb ogonekcomb macronbelowcomb lowlinecomb gravetonecomb acutetonecomb dieresis dotaccent grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case acutecomb.loclPLK acutecomb.case.loclPLK shindot-hb patah-hb qamats-hb holam-hb holamhaser-hb dagesh-hb sindot-hb qamatsqatan-hb tahcenter-ar tahbelow-ar dotabove-ar dotbelow-ar dotcenter-ar twodotsverticalabove-ar twodotsverticalbelow-ar twodotsverticalcenter-ar twodotshorizontalabove-ar twodotshorizontalabove-ar.v2 twodotshorizontalbelow-ar twodotshorizontalcenter-ar threedotsdownabove-ar threedotsdownbelow-ar threedotsdowncenter-ar threedotsupabove-ar threedotsupabove-ar.v2 threedotsupbelow-ar threedotsupcenter-ar fourdotsabove-ar fourdotsbelow-ar fourdotscenter-ar wasla-ar wavyhamzaabove-ar gafsarkashabove-ar wavyhamzabelow-ar alefabove-ar alefbelow-ar hamzaabove-ar hamzabelow-ar fathatan-ar dammatan-ar kasratan-ar fatha-ar damma-ar kasra-ar shadda-ar sukun-ar madda-ar noonghunnaabove-ar vabove-ar vinvertedabove-ar meemStopabove-ar noonabove-ar perispomenicomb tonos tonos.case dieresistonos brevecomb-cy brevecomb-cy.case uniFBC0 LIG _twodotsverticalabove-ar _fourdotscenter-ar seenThreedotsbelowthreedots-ar.init _four-persian.small01 _alefWavyhamzabelow-ar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _highhamzaAlef-ar.fina.rlig _alefThreeabove-ar.fina.rlig _alefTwoabove-ar.fina.rlig _alefWasla-ar.fina.rlig _alefMadda-ar.fina.rlig _alefHamzabelow-ar.fina.rlig _alefHamzaabove-ar.fina.rlig _alef-ar.fina.short.rlig _alef-ar.fina.rlig seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedots-ar.fina.alt fehDotMovedbelow-ar.alt dalTwodotsverticalbelowTahabove-ar.fina seenThreedotsbelowthreedots-ar.fina seenThreedotsbelowthreedots-ar.medi _fatha-ar _twodotshorizontal-ar _hamzasmall-ar _threedots-ar _dot-ar _tahabove _hehgoalcomma _alefabove ringArabic _ringArabic _dots.horz.below _vinvertedbelow-ar _vabove _vbelow-ar twodotstahcenter-ar _tahabovesmall twodotstahbelow-ar four-persiancenter-ar _dotVInvertedabove _stroke _twodotstah _invertedstroke _doublebar _bar _damma-ar four-persianbelow-ar _yehRohingya-ar.fina _yehRohingya-ar _onedotstah _dotVabove tehabove-ar.small _cuberoot_fourthroot-ar _fourthroot-ar _hamzawavy _alefFathatan-ar.fina.rlig zainVInvertedabove-ar.fina fehDotMovedbelow-ar.fina fehDotMovedbelow-ar.fina.alt checkerBoardDeleteApple2 checkerBoardDeleteTrs80 checkerBoardDeleteAmstradCpc checkerBoardDeleteAmstradCpc.stypo checkerBoardFill checkerBoardFill.stypo checkerBoardFillInverse checkerBoardFillInverse.stypo blockQuadrant-UC blockQuadrant-UC.stypo blockQuadrant-LC blockQuadrant-LC.stypo blockQuadrant-ML blockQuadrant-ML.stypo blockQuadrant-MR blockQuadrant-MR.stypo blockTriangle-1 blockTriangle-1.stypo blockTriangle-2 blockTriangle-2.stypo blockTriangle-3 blockTriangle-3.stypo blockTriangle-4 blockTriangle-4.stypo blockTriangle-14 blockTriangle-14.stypo blockTriangle-23 blockTriangle-23.stypo blockTriangle-123 blockTriangle-123.stypo blockTriangle-124 blockTriangle-124.stypo blockTriangle-134 blockTriangle-134.stypo blockTriangle-234 blockTriangle-234.stypo blockCircle-1 blockCircle-1.stypo blockCircle-2 blockCircle-2.stypo blockCircle-3 blockCircle-3.stypo blockCircle-4 blockCircle-4.stypo blockCircle-UC blockCircle-UC.stypo blockCircle-LC blockCircle-LC.stypo blockCircle-ML blockCircle-ML.stypo blockCircle-MR blockCircle-MR.stypo blockSextant-1 blockSextant-1.stypo blockSextant-2 blockSextant-2.stypo blockSextant-12 blockSextant-12.stypo blockSextant-3 blockSextant-3.stypo blockSextant-13 blockSextant-13.stypo blockSextant-23 blockSextant-23.stypo blockSextant-123 blockSextant-123.stypo blockSextant-4 blockSextant-4.stypo blockSextant-14 blockSextant-14.stypo blockSextant-24 blockSextant-24.stypo blockSextant-124 blockSextant-124.stypo blockSextant-34 blockSextant-34.stypo blockSextant-134 blockSextant-134.stypo blockSextant-234 blockSextant-234.stypo blockSextant-1234 blockSextant-1234.stypo blockSextant-5 blockSextant-5.stypo blockSextant-15 blockSextant-15.stypo blockSextant-25 blockSextant-25.stypo blockSextant-125 blockSextant-125.stypo blockSextant-35 blockSextant-35.stypo blockSextant-235 blockSextant-235.stypo blockSextant-1235 blockSextant-1235.stypo blockSextant-45 blockSextant-45.stypo blockSextant-145 blockSextant-145.stypo blockSextant-245 blockSextant-245.stypo blockSextant-1245 blockSextant-1245.stypo blockSextant-345 blockSextant-345.stypo blockSextant-1345 blockSextant-1345.stypo blockSextant-2345 blockSextant-2345.stypo blockSextant-12345 blockSextant-12345.stypo blockSextant-6 blockSextant-6.stypo blockSextant-16 blockSextant-16.stypo blockSextant-26 blockSextant-26.stypo blockSextant-126 blockSextant-126.stypo blockSextant-36 blockSextant-36.stypo blockSextant-136 blockSextant-136.stypo blockSextant-236 blockSextant-236.stypo blockSextant-1236 blockSextant-1236.stypo blockSextant-46 blockSextant-46.stypo blockSextant-146 blockSextant-146.stypo blockSextant-1246 blockSextant-1246.stypo blockSextant-346 blockSextant-346.stypo blockSextant-1346 blockSextant-1346.stypo blockSextant-2346 blockSextant-2346.stypo blockSextant-12346 blockSextant-12346.stypo blockSextant-56 blockSextant-56.stypo blockSextant-156 blockSextant-156.stypo blockSextant-256 blockSextant-256.stypo blockSextant-1256 blockSextant-1256.stypo blockSextant-356 blockSextant-356.stypo blockSextant-1356 blockSextant-1356.stypo blockSextant-2356 blockSextant-2356.stypo blockSextant-12356 blockSextant-12356.stypo blockSextant-456 blockSextant-456.stypo blockSextant-1456 blockSextant-1456.stypo blockSextant-2456 blockSextant-2456.stypo blockSextant-12456 blockSextant-12456.stypo blockSextant-3456 blockSextant-3456.stypo blockSextant-13456 blockSextant-13456.stypo blockSextant-23456 blockSextant-23456.stypo blockDiagonal-1FB3C blockDiagonal-1FB3C.stypo blockDiagonal-1FB3D blockDiagonal-1FB3D.stypo blockDiagonal-1FB3E blockDiagonal-1FB3E.stypo blockDiagonal-1FB3F blockDiagonal-1FB3F.stypo blockDiagonal-1FB40 blockDiagonal-1FB40.stypo blockDiagonal-1FB41 blockDiagonal-1FB41.stypo blockDiagonal-1FB42 blockDiagonal-1FB42.stypo blockDiagonal-1FB43 blockDiagonal-1FB43.stypo blockDiagonal-1FB44 blockDiagonal-1FB44.stypo blockDiagonal-1FB45 blockDiagonal-1FB45.stypo blockDiagonal-1FB46 blockDiagonal-1FB46.stypo blockDiagonal-1FB47 blockDiagonal-1FB47.stypo blockDiagonal-1FB48 blockDiagonal-1FB48.stypo blockDiagonal-1FB49 blockDiagonal-1FB49.stypo blockDiagonal-1FB4A blockDiagonal-1FB4A.stypo blockDiagonal-1FB4B blockDiagonal-1FB4B.stypo blockDiagonal-1FB4C blockDiagonal-1FB4C.stypo blockDiagonal-1FB4D blockDiagonal-1FB4D.stypo blockDiagonal-1FB4E blockDiagonal-1FB4E.stypo blockDiagonal-1FB4F blockDiagonal-1FB4F.stypo blockDiagonal-1FB50 blockDiagonal-1FB50.stypo blockDiagonal-1FB51 blockDiagonal-1FB51.stypo blockDiagonal-1FB52 blockDiagonal-1FB52.stypo blockDiagonal-1FB53 blockDiagonal-1FB53.stypo blockDiagonal-1FB54 blockDiagonal-1FB54.stypo blockDiagonal-1FB55 blockDiagonal-1FB55.stypo blockDiagonal-1FB56 blockDiagonal-1FB56.stypo blockDiagonal-1FB57 blockDiagonal-1FB57.stypo blockDiagonal-1FB58 blockDiagonal-1FB58.stypo blockDiagonal-1FB59 blockDiagonal-1FB59.stypo blockDiagonal-1FB5A blockDiagonal-1FB5A.stypo blockDiagonal-1FB5B blockDiagonal-1FB5B.stypo blockDiagonal-1FB5C blockDiagonal-1FB5C.stypo blockDiagonal-1FB5D blockDiagonal-1FB5D.stypo blockDiagonal-1FB5E blockDiagonal-1FB5E.stypo blockDiagonal-1FB5F blockDiagonal-1FB5F.stypo blockDiagonal-1FB60 blockDiagonal-1FB60.stypo blockDiagonal-1FB61 blockDiagonal-1FB61.stypo blockDiagonal-1FB62 blockDiagonal-1FB62.stypo blockDiagonal-1FB63 blockDiagonal-1FB63.stypo blockDiagonal-1FB64 blockDiagonal-1FB64.stypo blockDiagonal-1FB65 blockDiagonal-1FB65.stypo blockDiagonal-1FB66 blockDiagonal-1FB66.stypo blockDiagonal-1FB67 blockDiagonal-1FB67.stypo blockOctant-1 blockOctant-1.stypo blockOctant-2 blockOctant-2.stypo blockOctant-12 blockOctant-12.stypo blockOctant-3 blockOctant-3.stypo blockOctant-23 blockOctant-23.stypo blockOctant-123 blockOctant-123.stypo blockOctant-4 blockOctant-4.stypo blockOctant-14 blockOctant-14.stypo blockOctant-124 blockOctant-124.stypo blockOctant-34 blockOctant-34.stypo blockOctant-134 blockOctant-134.stypo blockOctant-234 blockOctant-234.stypo blockOctant-5 blockOctant-5.stypo blockOctant-15 blockOctant-15.stypo blockOctant-25 blockOctant-25.stypo blockOctant-125 blockOctant-125.stypo blockOctant-135 blockOctant-135.stypo blockOctant-235 blockOctant-235.stypo blockOctant-1235 blockOctant-1235.stypo blockOctant-45 blockOctant-45.stypo blockOctant-145 blockOctant-145.stypo blockOctant-245 blockOctant-245.stypo blockOctant-1245 blockOctant-1245.stypo blockOctant-345 blockOctant-345.stypo blockOctant-1345 blockOctant-1345.stypo blockOctant-2345 blockOctant-2345.stypo blockOctant-12345 blockOctant-12345.stypo blockOctant-6 blockOctant-6.stypo blockOctant-16 blockOctant-16.stypo blockOctant-26 blockOctant-26.stypo blockOctant-126 blockOctant-126.stypo blockOctant-36 blockOctant-36.stypo blockOctant-136 blockOctant-136.stypo blockOctant-236 blockOctant-236.stypo blockOctant-1236 blockOctant-1236.stypo blockOctant-146 blockOctant-146.stypo blockOctant-246 blockOctant-246.stypo blockOctant-1246 blockOctant-1246.stypo blockOctant-346 blockOctant-346.stypo blockOctant-1346 blockOctant-1346.stypo blockOctant-2346 blockOctant-2346.stypo blockOctant-12346 blockOctant-12346.stypo blockOctant-56 blockOctant-56.stypo blockOctant-156 blockOctant-156.stypo blockOctant-256 blockOctant-256.stypo blockOctant-1256 blockOctant-1256.stypo blockOctant-356 blockOctant-356.stypo blockOctant-1356 blockOctant-1356.stypo blockOctant-2356 blockOctant-2356.stypo blockOctant-12356 blockOctant-12356.stypo blockOctant-456 blockOctant-456.stypo blockOctant-1456 blockOctant-1456.stypo blockOctant-2456 blockOctant-2456.stypo blockOctant-12456 blockOctant-12456.stypo blockOctant-3456 blockOctant-3456.stypo blockOctant-13456 blockOctant-13456.stypo blockOctant-23456 blockOctant-23456.stypo blockOctant-123456 blockOctant-123456.stypo blockOctant-7 blockOctant-7.stypo blockOctant-17 blockOctant-17.stypo blockOctant-27 blockOctant-27.stypo blockOctant-127 blockOctant-127.stypo blockOctant-37 blockOctant-37.stypo blockOctant-137 blockOctant-137.stypo blockOctant-237 blockOctant-237.stypo blockOctant-1237 blockOctant-1237.stypo blockOctant-47 blockOctant-47.stypo blockOctant-147 blockOctant-147.stypo blockOctant-247 blockOctant-247.stypo blockOctant-1247 blockOctant-1247.stypo blockOctant-347 blockOctant-347.stypo blockOctant-1347 blockOctant-1347.stypo blockOctant-2347 blockOctant-2347.stypo blockOctant-12347 blockOctant-12347.stypo blockOctant-157 blockOctant-157.stypo blockOctant-257 blockOctant-257.stypo blockOctant-1257 blockOctant-1257.stypo blockOctant-357 blockOctant-357.stypo blockOctant-2357 blockOctant-2357.stypo blockOctant-12357 blockOctant-12357.stypo blockOctant-457 blockOctant-457.stypo blockOctant-1457 blockOctant-1457.stypo blockOctant-12457 blockOctant-12457.stypo blockOctant-3457 blockOctant-3457.stypo blockOctant-13457 blockOctant-13457.stypo blockOctant-23457 blockOctant-23457.stypo blockOctant-67 blockOctant-67.stypo blockOctant-167 blockOctant-167.stypo blockOctant-267 blockOctant-267.stypo blockOctant-1267 blockOctant-1267.stypo blockOctant-367 blockOctant-367.stypo blockOctant-1367 blockOctant-1367.stypo blockOctant-2367 blockOctant-2367.stypo blockOctant-12367 blockOctant-12367.stypo blockOctant-467 blockOctant-467.stypo blockOctant-1467 blockOctant-1467.stypo blockOctant-2467 blockOctant-2467.stypo blockOctant-12467 blockOctant-12467.stypo blockOctant-3467 blockOctant-3467.stypo blockOctant-13467 blockOctant-13467.stypo blockOctant-23467 blockOctant-23467.stypo blockOctant-123467 blockOctant-123467.stypo blockOctant-567 blockOctant-567.stypo blockOctant-1567 blockOctant-1567.stypo blockOctant-2567 blockOctant-2567.stypo blockOctant-12567 blockOctant-12567.stypo blockOctant-3567 blockOctant-3567.stypo blockOctant-13567 blockOctant-13567.stypo blockOctant-23567 blockOctant-23567.stypo blockOctant-123567 blockOctant-123567.stypo blockOctant-4567 blockOctant-4567.stypo blockOctant-14567 blockOctant-14567.stypo blockOctant-24567 blockOctant-24567.stypo blockOctant-124567 blockOctant-124567.stypo blockOctant-34567 blockOctant-34567.stypo blockOctant-134567 blockOctant-134567.stypo blockOctant-234567 blockOctant-234567.stypo blockOctant-1234567 blockOctant-1234567.stypo blockOctant-8 blockOctant-8.stypo blockOctant-18 blockOctant-18.stypo blockOctant-28 blockOctant-28.stypo blockOctant-128 blockOctant-128.stypo blockOctant-38 blockOctant-38.stypo blockOctant-138 blockOctant-138.stypo blockOctant-238 blockOctant-238.stypo blockOctant-1238 blockOctant-1238.stypo blockOctant-48 blockOctant-48.stypo blockOctant-148 blockOctant-148.stypo blockOctant-248 blockOctant-248.stypo blockOctant-1248 blockOctant-1248.stypo blockOctant-348 blockOctant-348.stypo blockOctant-1348 blockOctant-1348.stypo blockOctant-2348 blockOctant-2348.stypo blockOctant-12348 blockOctant-12348.stypo blockOctant-58 blockOctant-58.stypo blockOctant-158 blockOctant-158.stypo blockOctant-258 blockOctant-258.stypo blockOctant-1258 blockOctant-1258.stypo blockOctant-358 blockOctant-358.stypo blockOctant-1358 blockOctant-1358.stypo blockOctant-2358 blockOctant-2358.stypo blockOctant-12358 blockOctant-12358.stypo blockOctant-458 blockOctant-458.stypo blockOctant-1458 blockOctant-1458.stypo blockOctant-2458 blockOctant-2458.stypo blockOctant-12458 blockOctant-12458.stypo blockOctant-3458 blockOctant-3458.stypo blockOctant-13458 blockOctant-13458.stypo blockOctant-23458 blockOctant-23458.stypo blockOctant-123458 blockOctant-123458.stypo blockOctant-168 blockOctant-168.stypo blockOctant-268 blockOctant-268.stypo blockOctant-1268 blockOctant-1268.stypo blockOctant-368 blockOctant-368.stypo blockOctant-2368 blockOctant-2368.stypo blockOctant-12368 blockOctant-12368.stypo blockOctant-468 blockOctant-468.stypo blockOctant-1468 blockOctant-1468.stypo blockOctant-12468 blockOctant-12468.stypo blockOctant-3468 blockOctant-3468.stypo blockOctant-13468 blockOctant-13468.stypo blockOctant-23468 blockOctant-23468.stypo blockOctant-568 blockOctant-568.stypo blockOctant-1568 blockOctant-1568.stypo blockOctant-2568 blockOctant-2568.stypo blockOctant-12568 blockOctant-12568.stypo blockOctant-3568 blockOctant-3568.stypo blockOctant-13568 blockOctant-13568.stypo blockOctant-23568 blockOctant-23568.stypo blockOctant-123568 blockOctant-123568.stypo blockOctant-4568 blockOctant-4568.stypo blockOctant-14568 blockOctant-14568.stypo blockOctant-24568 blockOctant-24568.stypo blockOctant-124568 blockOctant-124568.stypo blockOctant-34568 blockOctant-34568.stypo blockOctant-134568 blockOctant-134568.stypo blockOctant-234568 blockOctant-234568.stypo blockOctant-1234568 blockOctant-1234568.stypo blockOctant-178 blockOctant-178.stypo blockOctant-278 blockOctant-278.stypo blockOctant-1278 blockOctant-1278.stypo blockOctant-378 blockOctant-378.stypo blockOctant-1378 blockOctant-1378.stypo blockOctant-2378 blockOctant-2378.stypo blockOctant-12378 blockOctant-12378.stypo blockOctant-478 blockOctant-478.stypo blockOctant-1478 blockOctant-1478.stypo blockOctant-2478 blockOctant-2478.stypo blockOctant-12478 blockOctant-12478.stypo blockOctant-3478 blockOctant-3478.stypo blockOctant-13478 blockOctant-13478.stypo blockOctant-23478 blockOctant-23478.stypo blockOctant-123478 blockOctant-123478.stypo blockOctant-578 blockOctant-578.stypo blockOctant-1578 blockOctant-1578.stypo blockOctant-2578 blockOctant-2578.stypo blockOctant-12578 blockOctant-12578.stypo blockOctant-3578 blockOctant-3578.stypo blockOctant-13578 blockOctant-13578.stypo blockOctant-23578 blockOctant-23578.stypo blockOctant-123578 blockOctant-123578.stypo blockOctant-4578 blockOctant-4578.stypo blockOctant-14578 blockOctant-14578.stypo blockOctant-24578 blockOctant-24578.stypo blockOctant-124578 blockOctant-124578.stypo blockOctant-34578 blockOctant-34578.stypo blockOctant-134578 blockOctant-134578.stypo blockOctant-234578 blockOctant-234578.stypo blockOctant-1234578 blockOctant-1234578.stypo blockOctant-678 blockOctant-678.stypo blockOctant-1678 blockOctant-1678.stypo blockOctant-2678 blockOctant-2678.stypo blockOctant-12678 blockOctant-12678.stypo blockOctant-3678 blockOctant-3678.stypo blockOctant-13678 blockOctant-13678.stypo blockOctant-23678 blockOctant-23678.stypo blockOctant-123678 blockOctant-123678.stypo blockOctant-4678 blockOctant-4678.stypo blockOctant-14678 blockOctant-14678.stypo blockOctant-24678 blockOctant-24678.stypo blockOctant-124678 blockOctant-124678.stypo blockOctant-34678 blockOctant-34678.stypo blockOctant-134678 blockOctant-134678.stypo blockOctant-234678 blockOctant-234678.stypo blockOctant-1234678 blockOctant-1234678.stypo blockOctant-15678 blockOctant-15678.stypo blockOctant-25678 blockOctant-25678.stypo blockOctant-125678 blockOctant-125678.stypo blockOctant-35678 blockOctant-35678.stypo blockOctant-235678 blockOctant-235678.stypo blockOctant-1235678 blockOctant-1235678.stypo blockOctant-45678 blockOctant-45678.stypo blockOctant-145678 blockOctant-145678.stypo blockOctant-1245678 blockOctant-1245678.stypo blockOctant-1345678 blockOctant-1345678.stypo blockOctant-2345678 blockOctant-2345678.stypo blockSedecimant-1 blockSedecimant-1.stypo blockSedecimant-2 blockSedecimant-2.stypo blockSedecimant-3 blockSedecimant-3.stypo blockSedecimant-4 blockSedecimant-4.stypo blockSedecimant-5 blockSedecimant-5.stypo blockSedecimant-6 blockSedecimant-6.stypo blockSedecimant-7 blockSedecimant-7.stypo blockSedecimant-8 blockSedecimant-8.stypo blockSedecimant-9 blockSedecimant-9.stypo blockSedecimant-A blockSedecimant-A.stypo blockSedecimant-B blockSedecimant-B.stypo blockSedecimant-C blockSedecimant-C.stypo blockSedecimant-D blockSedecimant-D.stypo blockSedecimant-E blockSedecimant-E.stypo blockSedecimant-F blockSedecimant-F.stypo blockSedecimant-G blockSedecimant-G.stypo blockSedecimant-EFG blockSedecimant-EFG.stypo blockSedecimant-DEF blockSedecimant-DEF.stypo blockSedecimant-9D blockSedecimant-9D.stypo blockSedecimant-59D blockSedecimant-59D.stypo blockSedecimant-159 blockSedecimant-159.stypo blockSedecimant-15 blockSedecimant-15.stypo blockSedecimant-123 blockSedecimant-123.stypo blockSedecimant-234 blockSedecimant-234.stypo blockSedecimant-48 blockSedecimant-48.stypo blockSedecimant-48C blockSedecimant-48C.stypo blockSedecimant-8CG blockSedecimant-8CG.stypo blockSedecimant-CG blockSedecimant-CG.stypo verticalOneEighthBlock-2 verticalOneEighthBlock-2.stypo verticalOneEighthBlock-3 verticalOneEighthBlock-3.stypo verticalOneEighthBlock-4 verticalOneEighthBlock-4.stypo verticalOneEighthBlock-5 verticalOneEighthBlock-5.stypo verticalOneEighthBlock-6 verticalOneEighthBlock-6.stypo verticalOneEighthBlock-7 verticalOneEighthBlock-7.stypo horizontalOneEightBlock-2 horizontalOneEightBlock-2.stypo horizontalOneEightBlock-3 horizontalOneEightBlock-3.stypo horizontalOneEightBlock-4 horizontalOneEightBlock-4.stypo horizontalOneEightBlock-5 horizontalOneEightBlock-5.stypo horizontalOneEightBlock-6 horizontalOneEightBlock-6.stypo horizontalOneEightBlock-7 horizontalOneEightBlock-7.stypo leftAndLowerOneEightBlock leftAndLowerOneEightBlock.stypo leftAndUpperOneEightBlock leftAndUpperOneEightBlock.stypo rightAndUpperOneEightBlock rightAndUpperOneEightBlock.stypo rightAndLowerOneEightBlock rightAndLowerOneEightBlock.stypo upperAndLowerOneEightBlock upperAndLowerOneEightBlock.stypo upperThreeEighthsBlock upperThreeEighthsBlock.stypo upperFiveEighthsBlock upperFiveEighthsBlock.stypo upperSevenEighthsBlock upperSevenEighthsBlock.stypo rightOneQuarterBlock rightOneQuarterBlock.stypo rightThreeEighthsBlock rightThreeEighthsBlock.stypo rightFiveEighthsBlock rightFiveEighthsBlock.stypo rightThreeQuartersBlock rightThreeQuartersBlock.stypo rightSevenEighthsBlock rightSevenEighthsBlock.stypo leftTwoThirdsBlock leftTwoThirdsBlock.stypo leftOneThirdBlock leftOneThirdBlock.stypo heavyHorizontalFill heavyHorizontalFill.stypo blockSeparatedQuadrant-1 blockSeparatedQuadrant-1.stypo blockSeparatedQuadrant-2 blockSeparatedQuadrant-2.stypo blockSeparatedQuadrant-12 blockSeparatedQuadrant-12.stypo blockSeparatedQuadrant-3 blockSeparatedQuadrant-3.stypo blockSeparatedQuadrant-13 blockSeparatedQuadrant-13.stypo blockSeparatedQuadrant-23 blockSeparatedQuadrant-23.stypo blockSeparatedQuadrant-123 blockSeparatedQuadrant-123.stypo blockSeparatedQuadrant-4 blockSeparatedQuadrant-4.stypo blockSeparatedQuadrant-14 blockSeparatedQuadrant-14.stypo blockSeparatedQuadrant-24 blockSeparatedQuadrant-24.stypo blockSeparatedQuadrant-124 blockSeparatedQuadrant-124.stypo blockSeparatedQuadrant-34 blockSeparatedQuadrant-34.stypo blockSeparatedQuadrant-134 blockSeparatedQuadrant-134.stypo blockSeparatedQuadrant-234 blockSeparatedQuadrant-234.stypo blockSeparatedQuadrant-1234 blockSeparatedQuadrant-1234.stypo blockSeparatedSextant-1 blockSeparatedSextant-1.stypo blockSeparatedSextant-2 blockSeparatedSextant-2.stypo blockSeparatedSextant-12 blockSeparatedSextant-12.stypo blockSeparatedSextant-3 blockSeparatedSextant-3.stypo blockSeparatedSextant-13 blockSeparatedSextant-13.stypo blockSeparatedSextant-23 blockSeparatedSextant-23.stypo blockSeparatedSextant-123 blockSeparatedSextant-123.stypo blockSeparatedSextant-4 blockSeparatedSextant-4.stypo blockSeparatedSextant-14 blockSeparatedSextant-14.stypo blockSeparatedSextant-24 blockSeparatedSextant-24.stypo blockSeparatedSextant-124 blockSeparatedSextant-124.stypo blockSeparatedSextant-34 blockSeparatedSextant-34.stypo blockSeparatedSextant-134 blockSeparatedSextant-134.stypo blockSeparatedSextant-234 blockSeparatedSextant-234.stypo blockSeparatedSextant-1234 blockSeparatedSextant-1234.stypo blockSeparatedSextant-5 blockSeparatedSextant-5.stypo blockSeparatedSextant-15 blockSeparatedSextant-15.stypo blockSeparatedSextant-25 blockSeparatedSextant-25.stypo blockSeparatedSextant-125 blockSeparatedSextant-125.stypo blockSeparatedSextant-35 blockSeparatedSextant-35.stypo blockSeparatedSextant-135 blockSeparatedSextant-135.stypo blockSeparatedSextant-235 blockSeparatedSextant-235.stypo blockSeparatedSextant-1235 blockSeparatedSextant-1235.stypo blockSeparatedSextant-45 blockSeparatedSextant-45.stypo blockSeparatedSextant-145 blockSeparatedSextant-145.stypo blockSeparatedSextant-245 blockSeparatedSextant-245.stypo blockSeparatedSextant-1245 blockSeparatedSextant-1245.stypo blockSeparatedSextant-345 blockSeparatedSextant-345.stypo blockSeparatedSextant-1345 blockSeparatedSextant-1345.stypo blockSeparatedSextant-2345 blockSeparatedSextant-2345.stypo blockSeparatedSextant-12345 blockSeparatedSextant-12345.stypo blockSeparatedSextant-6 blockSeparatedSextant-6.stypo blockSeparatedSextant-16 blockSeparatedSextant-16.stypo blockSeparatedSextant-26 blockSeparatedSextant-26.stypo blockSeparatedSextant-126 blockSeparatedSextant-126.stypo blockSeparatedSextant-36 blockSeparatedSextant-36.stypo blockSeparatedSextant-136 blockSeparatedSextant-136.stypo blockSeparatedSextant-236 blockSeparatedSextant-236.stypo blockSeparatedSextant-1236 blockSeparatedSextant-1236.stypo blockSeparatedSextant-46 blockSeparatedSextant-46.stypo blockSeparatedSextant-146 blockSeparatedSextant-146.stypo blockSeparatedSextant-246 blockSeparatedSextant-246.stypo blockSeparatedSextant-1246 blockSeparatedSextant-1246.stypo blockSeparatedSextant-346 blockSeparatedSextant-346.stypo blockSeparatedSextant-1346 blockSeparatedSextant-1346.stypo blockSeparatedSextant-2346 blockSeparatedSextant-2346.stypo blockSeparatedSextant-12346 blockSeparatedSextant-12346.stypo blockSeparatedSextant-56 blockSeparatedSextant-56.stypo blockSeparatedSextant-156 blockSeparatedSextant-156.stypo blockSeparatedSextant-256 blockSeparatedSextant-256.stypo blockSeparatedSextant-1256 blockSeparatedSextant-1256.stypo blockSeparatedSextant-356 blockSeparatedSextant-356.stypo blockSeparatedSextant-1356 blockSeparatedSextant-1356.stypo blockSeparatedSextant-2356 blockSeparatedSextant-2356.stypo blockSeparatedSextant-12356 blockSeparatedSextant-12356.stypo blockSeparatedSextant-456 blockSeparatedSextant-456.stypo blockSeparatedSextant-1456 blockSeparatedSextant-1456.stypo blockSeparatedSextant-2456 blockSeparatedSextant-2456.stypo blockSeparatedSextant-12456 blockSeparatedSextant-12456.stypo blockSeparatedSextant-3456 blockSeparatedSextant-3456.stypo blockSeparatedSextant-13456 blockSeparatedSextant-13456.stypo blockSeparatedSextant-23456 blockSeparatedSextant-23456.stypo blockSeparatedSextant-123456 blockSeparatedSextant-123456.stypo segmentedDigit0 segmentedDigit1 segmentedDigit2 segmentedDigit3 segmentedDigit4 segmentedDigit5 segmentedDigit6 segmentedDigit7 segmentedDigit8 segmentedDigit9 largeType-1CE1A largeType-1CE1A.stypo largeType-1CE1B largeType-1CE1B.stypo largeType-1CE1C largeType-1CE1C.stypo largeType-1CE1D largeType-1CE1D.stypo largeType-1CE1E largeType-1CE1E.stypo largeType-1CE1F largeType-1CE1F.stypo largeType-1CE20 largeType-1CE20.stypo largeType-1CE21 largeType-1CE21.stypo largeType-1CE22 largeType-1CE22.stypo largeType-1CE23 largeType-1CE23.stypo largeType-1CE24 largeType-1CE24.stypo largeType-1CE25 largeType-1CE25.stypo largeType-1CE26 largeType-1CE26.stypo largeType-1CE27 largeType-1CE27.stypo largeType-1CE28 largeType-1CE28.stypo largeType-1CE29 largeType-1CE29.stypo largeType-1CE2A largeType-1CE2A.stypo largeType-1CE2B largeType-1CE2B.stypo largeType-1CE2C largeType-1CE2C.stypo largeType-1CE2D largeType-1CE2D.stypo largeType-1CE2E largeType-1CE2E.stypo largeType-1CE2F largeType-1CE2F.stypo largeType-1CE30 largeType-1CE30.stypo largeType-1CE31 largeType-1CE31.stypo largeType-1CE32 largeType-1CE32.stypo largeType-1CE33 largeType-1CE33.stypo largeType-1CE34 largeType-1CE34.stypo largeType-1CE35 largeType-1CE35.stypo largeType-1CE36 largeType-1CE36.stypo largeType-1CE37 largeType-1CE37.stypo largeType-1CE38 largeType-1CE38.stypo largeType-1CE39 largeType-1CE39.stypo largeType-1CE3A largeType-1CE3A.stypo largeType-1CE3B largeType-1CE3B.stypo largeType-1CE3C largeType-1CE3C.stypo largeType-1CE3D largeType-1CE3D.stypo largeType-1CE3E largeType-1CE3E.stypo largeType-1CE3F largeType-1CE3F.stypo largeType-1CE40 largeType-1CE40.stypo largeType-1CE41 largeType-1CE41.stypo largeType-1CE42 largeType-1CE42.stypo largeType-1CE43 largeType-1CE43.stypo largeType-1CE44 largeType-1CE44.stypo largeType-1CE45 largeType-1CE45.stypo largeType-1CE46 largeType-1CE46.stypo largeType-1CE47 largeType-1CE47.stypo largeType-1CE48 largeType-1CE48.stypo largeType-1CE49 largeType-1CE49.stypo largeType-1CE4A largeType-1CE4A.stypo largeType-1CE4B largeType-1CE4B.stypo largeType-1CE4C largeType-1CE4C.stypo largeType-1CE4D largeType-1CE4D.stypo largeType-1CE4E largeType-1CE4E.stypo largeType-1CE4F largeType-1CE4F.stypo largeType-1CE50 largeType-1CE50.stypo public.postscriptNames A-cy uni0410 Abreveacute uni1EAE Abrevedotbelow uni1EB6 Abrevegrave uni1EB0 Abrevehookabove uni1EB2 Abrevetilde uni1EB4 Acaron uni01CD Acircumflexacute uni1EA4 Acircumflexdotbelow uni1EAC Acircumflexgrave uni1EA6 Acircumflexhookabove uni1EA8 Acircumflextilde uni1EAA Adotbelow uni1EA0 Ahookabove uni1EA2 Alpha-latin uni2C6D Asmall uni1D00 Astroke uni023A Be-cy uni0411 Che-cy uni0427 Chedescender-cy uni04B6 Cstroke uni023B Dafrican uni0189 De-cy uni0414 De-cy.loclBGR uni0414.loclBGR Delta uni0394 Dje-cy uni0402 Dze-cy uni0405 Dzhe-cy uni040F E-cy uni0404 Ecircumflexacute uni1EBE Ecircumflexdotbelow uni1EC6 Ecircumflexgrave uni1EC0 Ecircumflexhookabove uni1EC2 Ecircumflextilde uni1EC4 Edotbelow uni1EB8 Ef-cy uni0424 Ef-cy.loclBGR uni0424.loclBGR Ehookabove uni1EBA El-cy uni041B El-cy.loclBGR uni041B.loclBGR Em-cy uni041C En-cy uni041D Endescender-cy uni04A2 Eopen uni0190 Er-cy uni0420 Ereversed uni018E Ereversed-cy uni042D Es-cy uni0421 Esh uni01A9 Etilde uni1EBC Ezh uni01B7 Fhook uni0191 Gammaafrican uni0194 Gcommaaccent uni0122 Ge-cy uni0413 Germandbls uni1E9E Ghestroke-cy uni0492 Gheupturn-cy uni0490 Gje-cy uni0403 Gsmall uni0262 Gstroke uni01E4 Ha-cy uni0425 Hadescender-cy uni04B2 Hardsign-cy uni042A Hcaron uni021E Hdotbelow uni1E24 I-cy uni0406 Ia-cy uni042F Idotbelow uni1ECA Ie-cy uni0415 Iegrave-cy uni0400 Ihookabove uni1EC8 Ii-cy uni0418 Iigrave-cy uni040D Iishort-cy uni0419 Imacron-cy uni04E2 Io-cy uni0401 Iotaafrican uni0196 Ismall uni026A Iu-cy uni042E Jacute uni00A40301 Je-cy uni0408 Ka-cy uni041A Kacute uni1E30 Kadescender-cy uni049A KaiSymbol uni03CF Kcommaaccent uni0136 Kdotbelow uni1E32 Kje-cy uni040C Klinebelow uni1E34 Lbar uni023D Lcommaaccent uni013B Ldotbelow uni1E36 Lje-cy uni0409 Llinebelow uni1E3A Lmiddletilde uni2C62 Lsmall uni029F Ncommaaccent uni0145 Nhookleft uni019D Nje-cy uni040A Nlinebelow uni1E48 O-cy uni041E Obarred-cy uni04E8 Ocircumflexacute uni1ED0 Ocircumflexdotbelow uni1ED8 Ocircumflexgrave uni1ED2 Ocircumflexhookabove uni1ED4 Ocircumflextilde uni1ED6 Odotbelow uni1ECC Ohm uni2126 Ohookabove uni1ECE Ohornacute uni1EDA Ohorndotbelow uni1EE2 Ohorngrave uni1EDC Ohornhookabove uni1EDE Ohorntilde uni1EE0 Omacronacute uni1E52 Omacrongrave uni1E50 Omega uni03A9 Oogonek uni01EA Oopen uni0186 Palochka-cy uni04C0 Pe-cy uni041F Rcommaaccent uni0156 Rdotbelow uni1E5A Schwa uni018F Schwa-cy uni04D8 Scommaaccent uni0218 Sdotbelow uni1E62 Sha-cy uni0428 Shcha-cy uni0429 Shha-cy uni04BA Softsign-cy uni042C Tcedilla uni0162 Tcommaaccent uni021A Tdiagonalstroke uni023E Te-cy uni0422 Tlinebelow uni1E6E Tse-cy uni0426 Tshe-cy uni040B U-cy uni0423 Udotbelow uni1EE4 Uhookabove uni1EE6 Uhornacute uni1EE8 Uhorndotbelow uni1EF0 Uhorngrave uni1EEA Uhornhookabove uni1EEC Uhorntilde uni1EEE Umacron-cy uni04EE Upsilonafrican uni01B1 Ushort-cy uni040E Ustraight-cy uni04AE Ustraightstroke-cy uni04B0 Ve-cy uni0412 Vhook uni01B2 Vturned uni0245 Ydotbelow uni1EF4 Yeru-cy uni042B Yhookabove uni1EF6 Yi-cy uni0407 Ymacron uni0232 Ytilde uni1EF8 Ze-cy uni0417 Zhe-cy uni0416 Zhedescender-cy uni0496 _alef-ar.fina.rlig _alefar.fina.rlig _alef-ar.fina.short.rlig _alefar.fina.short.rlig _alefFathatan-ar.fina.rlig _alefFathatanar.fina.rlig _alefHamzaabove-ar.fina.rlig _alefHamzaabovear.fina.rlig _alefHamzabelow-ar.fina.rlig _alefHamzabelowar.fina.rlig _alefMadda-ar.fina.rlig _alefMaddaar.fina.rlig _alefThreeabove-ar.fina.rlig _alefThreeabovear.fina.rlig _alefTwoabove-ar.fina.rlig _alefTwoabovear.fina.rlig _alefWasla-ar.fina.rlig _alefWaslaar.fina.rlig _alefWavyhamzaabove-ar.fina.rlig _alefWavyhamzaabovear.fina.rlig _alefWavyhamzabelow-ar.fina.rlig _alefWavyhamzabelowar.fina.rlig _cuberoot_fourthroot-ar _cuberoot_fourthrootar _damma-ar _dammaar _dot-ar _dotar _fatha-ar _fathaar _four-persian.small01 _fourpersian.small01 _fourdotscenter-ar _fourdotscenterar _fourthroot-ar _fourthrootar _hamzasmall-ar _hamzasmallar _highhamzaAlef-ar.fina.rlig _highhamzaAlefar.fina.rlig _threedots-ar _threedotsar _twodotshorizontal-ar _twodotshorizontalar _twodotsverticalabove-ar _twodotsverticalabovear _vbelow-ar _vbelowar _vinvertedbelow-ar _vinvertedbelowar _yehRohingya-ar _yehRohingyaar _yehRohingya-ar.fina _yehRohingyaar.fina a-cy uni0430 abreveacute uni1EAF abrevedotbelow uni1EB7 abrevegrave uni1EB1 abrevehookabove uni1EB3 abrevetilde uni1EB5 acaron uni01CE acircumflexacute uni1EA5 acircumflexdotbelow uni1EAD acircumflexgrave uni1EA7 acircumflexhookabove uni1EA9 acircumflextilde uni1EAB acknowledgeControl uni2406 acknowledgeControl.ss20 uni2406.ss20 acutetonecomb uni0341 adotbelow uni1EA1 ae-ar uni06D5 ae-ar.fina uni06D5.fina afghani-ar uni060B ahookabove uni1EA3 ain-ar uni0639 ain-ar.fina uniFECA ain-ar.init uniFECB ain-ar.medi uniFECC ainThreedots-ar uni06A0 ainThreedots-ar.fina uni06A0.fina ainThreedots-ar.init uni06A0.init ainThreedots-ar.medi uni06A0.medi ainThreedotsdownabove-ar uni075E ainThreedotsdownabove-ar.fina uni075E.fina ainThreedotsdownabove-ar.init uni075E.init ainThreedotsdownabove-ar.medi uni075E.medi ainTwodotshorizontalabove-ar uni075D ainTwodotshorizontalabove-ar.fina uni075D.fina ainTwodotshorizontalabove-ar.init uni075D.init ainTwodotshorizontalabove-ar.medi uni075D.medi ainTwodotsverticalabove-ar uni075F ainTwodotsverticalabove-ar.fina uni075F.fina ainTwodotsverticalabove-ar.init uni075F.init ainTwodotsverticalabove-ar.medi uni075F.medi alef-ar uni0627 alef-ar.fina uniFE8E alef-ar.fina.alt uni0627.fina.alt alef-ar.fina.rlig uni0627.fina.rlig alef-ar.fina.short uni0627.fina.short alef-ar.fina.short.alt uni0627.fina.short.alt alef-ar.fina.short.rlig uni0627.fina.short.rlig alef-ar.short uni0627.short alef-hb uni05D0 alefFathatan-ar uniFD3D alefFathatan-ar.fina uniFD3C alefFathatan-ar.fina.rlig uniFD3D.fina.rlig alefHamzaabove-ar uni0623 alefHamzaabove-ar.fina uniFE84 alefHamzaabove-ar.fina.alt uni0623.fina.alt alefHamzaabove-ar.fina.rlig uni0623.fina.rlig alefHamzabelow-ar uni0625 alefHamzabelow-ar.fina uniFE88 alefHamzabelow-ar.fina.alt uni0625.fina.alt alefHamzabelow-ar.fina.rlig uni0625.fina.rlig alefMadda-ar uni0622 alefMadda-ar.fina uniFE82 alefMadda-ar.fina.alt uni0622.fina.alt alefMadda-ar.fina.rlig uni0622.fina.rlig alefMaksura-ar uni0649 alefMaksura-ar.fina uniFEF0 alefMaksura-ar.fina.alt uni0649.fina.alt alefMaksura-ar.init uniFBE8 alefMaksura-ar.init.alt uni0649.init.alt alefMaksura-ar.medi uniFBE9 alefMaksuraAlefabove-ar uniFC5D alefMaksuraAlefabove-ar.fina uniFC90 alefMaksuraAlefabove-ar.fina.alt uniFC5D.fina.alt alefThreeabove-ar uni0774 alefThreeabove-ar.fina uni0774.fina alefThreeabove-ar.fina.alt uni0774.fina.alt alefThreeabove-ar.fina.rlig uni0774.fina.rlig alefTwoabove-ar uni0773 alefTwoabove-ar.fina uni0773.fina alefTwoabove-ar.fina.alt uni0773.fina.alt alefTwoabove-ar.fina.rlig uni0773.fina.rlig alefWasla-ar uni0671 alefWasla-ar.fina uniFB51 alefWasla-ar.fina.alt uni0671.fina.alt alefWasla-ar.fina.rlig uni0671.fina.rlig alefWavyhamzaabove-ar uni0672 alefWavyhamzaabove-ar.fina uni0672.fina alefWavyhamzaabove-ar.fina.alt uni0672.fina.alt alefWavyhamzaabove-ar.fina.rlig uni0672.fina.rlig alefWavyhamzabelow-ar uni0673 alefWavyhamzabelow-ar.fina uni0673.fina alefWavyhamzabelow-ar.fina.alt uni0673.fina.alt alefWavyhamzabelow-ar.fina.rlig uni0673.fina.rlig alefabove-ar uni0670 alefbelow-ar uni0656 alefdagesh-hb uniFB30 alefdagesh-hb.BRACKET.500 uniFB30.BRACKET.500 alefpatah-hb uniFB2E alefqamats-hb uniFB2F allah-ar uniFDF2 alpha-latin uni0251 apostrophemod uni02BC asterisk-ar uni066D asteriskArt-ar uni06DE ayin-hb uni05E2 backspaceControl uni2408 backspaceControl.ss20 uni2408.ss20 baht uni0E3F baht.BRACKET.600 uni0E3F.BRACKET.600 be-cy uni0431 be-cy.loclSRB uni0431.loclSRB beeh-ar uni067B beeh-ar.alt uni067B.alt beeh-ar.fina uniFB53 beeh-ar.fina.alt uni067B.fina.alt beeh-ar.init uniFB54 beeh-ar.init.alt uni067B.init.alt beeh-ar.medi uniFB55 beh-ar uni0628 beh-ar.alt uni0628.alt beh-ar.fina uniFE90 beh-ar.fina.alt uni0628.fina.alt beh-ar.init uniFE91 beh-ar.init.alt uni0628.init.alt beh-ar.medi uniFE92 behDotless-ar uni066E behDotless-ar.alt uni066E.alt behDotless-ar.fina uni066E.fina behDotless-ar.fina.alt uni066E.fina.alt behDotless-ar.init uni066E.init behDotless-ar.init.alt uni066E.init.alt behDotless-ar.medi uni066E.medi behMeemabove-ar uni08B6 behMeemabove-ar.alt uni08B6.alt behMeemabove-ar.fina uni08B6.fina behMeemabove-ar.fina.alt uni08B6.fina.alt behMeemabove-ar.init uni08B6.init behMeemabove-ar.init.alt uni08B6.init.alt behMeemabove-ar.medi uni08B6.medi behThreedotshorizontalbelow-ar uni0750 behThreedotshorizontalbelow-ar.alt uni0750.alt behThreedotshorizontalbelow-ar.fina uni0750.fina behThreedotshorizontalbelow-ar.fina.alt uni0750.fina.alt behThreedotshorizontalbelow-ar.init uni0750.init behThreedotshorizontalbelow-ar.init.alt uni0750.init.alt behThreedotshorizontalbelow-ar.medi uni0750.medi behThreedotsupabove-ar uni0751 behThreedotsupabove-ar.alt uni0751.alt behThreedotsupabove-ar.fina uni0751.fina behThreedotsupabove-ar.fina.alt uni0751.fina.alt behThreedotsupabove-ar.init uni0751.init behThreedotsupabove-ar.init.alt uni0751.init.alt behThreedotsupabove-ar.medi uni0751.medi behThreedotsupbelow-ar uni0752 behThreedotsupbelow-ar.alt uni0752.alt behThreedotsupbelow-ar.fina uni0752.fina behThreedotsupbelow-ar.fina.alt uni0752.fina.alt behThreedotsupbelow-ar.init uni0752.init behThreedotsupbelow-ar.init.alt uni0752.init.alt behThreedotsupbelow-ar.medi uni0752.medi behTwodotsbelowDotabove-ar uni0754 behTwodotsbelowDotabove-ar.alt uni0754.alt behTwodotsbelowDotabove-ar.fina uni0754.fina behTwodotsbelowDotabove-ar.fina.alt uni0754.fina.alt behTwodotsbelowDotabove-ar.init uni0754.init behTwodotsbelowDotabove-ar.init.alt uni0754.init.alt behTwodotsbelowDotabove-ar.medi uni0754.medi behVabove-ar uni0756 behVabove-ar.alt uni0756.alt behVabove-ar.fina uni0756.fina behVabove-ar.fina.alt uni0756.fina.alt behVabove-ar.init uni0756.init behVabove-ar.init.alt uni0756.init.alt behVabove-ar.medi uni0756.medi behVbelow-ar uni08A0 behVbelow-ar.alt uni08A0.alt behVbelow-ar.fina uni08A0.fina behVbelow-ar.fina.alt uni08A0.fina.alt behVbelow-ar.init uni08A0.init behVbelow-ar.init.alt uni08A0.init.alt behVbelow-ar.medi uni08A0.medi behVinvertedbelow-ar uni0755 behVinvertedbelow-ar.alt uni0755.alt behVinvertedbelow-ar.fina uni0755.fina behVinvertedbelow-ar.fina.alt uni0755.fina.alt behVinvertedbelow-ar.init uni0755.init behVinvertedbelow-ar.init.alt uni0755.init.alt behVinvertedbelow-ar.medi uni0755.medi beheh-ar uni0680 beheh-ar.alt uni0680.alt beheh-ar.fina uniFB5B beheh-ar.fina.alt uni0680.fina.alt beheh-ar.init uniFB5C beheh-ar.init.alt uni0680.init.alt beheh-ar.medi uniFB5D behhamzaabove-ar uni08A1 behhamzaabove-ar.alt uni08A1.alt behhamzaabove-ar.fina uni08A1.fina behhamzaabove-ar.fina.alt uni08A1.fina.alt behhamzaabove-ar.init uni08A1.init behhamzaabove-ar.medi uni08A1.medi bellControl uni2407 bellControl.ss20 uni2407.ss20 bet-hb uni05D1 betdagesh-hb uniFB31 bitcoin uni20BF blackCircle uni25CF blackDiamond uni25C6 blackHexagon uni2B22 blackHorizontalEllipse uni2B2C blackInWhiteDiamond uni25C8 blackLargeCircle uni2B24 blackLargeSquare uni2B1B blackMediumDiamond uni2B25 blackMediumDownTriangleCentred uni2BC6 blackMediumLeftTriangleCentred uni2BC7 blackMediumLozenge uni2B27 blackMediumRightTriangleCentred uni2BC8 blackMediumUpTriangleCentred uni2BC5 blackParallelogram uni25B0 blackPentagon uni2B1F blackSmallDiamond uni2B29 blackSmallLozenge uni2B2A blackSmallSquare uni25AA blackSmilingFace invsmileface blackSquare filledbox blackVerticalEllipse uni2B2E blackVerticalRect uni25AE blackVerysmallSquare uni2B1D blank uni2423 blank-braille uni2800 blankSymbol uni2422 bottomHalfBlackCircle uni2BCB bottomHalfBlackDiamond uni2B19 boxDoubleDownAndHorizontal uni2566 boxDoubleDownAndHorizontal.stypo uni2566.stypo boxDoubleDownAndLeft uni2557 boxDoubleDownAndLeft.stypo uni2557.stypo boxDoubleDownAndRight uni2554 boxDoubleDownAndRight.stypo uni2554.stypo boxDoubleHorizontal uni2550 boxDoubleHorizontal.stypo uni2550.stypo boxDoubleUpAndHorizontal uni2569 boxDoubleUpAndHorizontal.stypo uni2569.stypo boxDoubleUpAndLeft uni255D boxDoubleUpAndLeft.stypo uni255D.stypo boxDoubleUpAndRight uni255A boxDoubleUpAndRight.stypo uni255A.stypo boxDoubleVertical uni2551 boxDoubleVertical.stypo uni2551.stypo boxDoubleVerticalAndHorizontal uni256C boxDoubleVerticalAndHorizontal.stypo uni256C.stypo boxDoubleVerticalAndLeft uni2563 boxDoubleVerticalAndLeft.stypo uni2563.stypo boxDoubleVerticalAndRight uni2560 boxDoubleVerticalAndRight.stypo uni2560.stypo boxDownDoubleAndHorizontalSingle uni2565 boxDownDoubleAndHorizontalSingle.stypo uni2565.stypo boxDownDoubleAndLeftSingle uni2556 boxDownDoubleAndLeftSingle.stypo uni2556.stypo boxDownDoubleAndRightSingle uni2553 boxDownDoubleAndRightSingle.stypo uni2553.stypo boxDownHeavyAndHorizontalLight uni2530 boxDownHeavyAndHorizontalLight.stypo uni2530.stypo boxDownHeavyAndLeftLight uni2512 boxDownHeavyAndLeftLight.stypo uni2512.stypo boxDownHeavyAndLeftUpLight uni2527 boxDownHeavyAndLeftUpLight.stypo uni2527.stypo boxDownHeavyAndRightLight uni250E boxDownHeavyAndRightLight.stypo uni250E.stypo boxDownHeavyAndRightUpLight uni251F boxDownHeavyAndRightUpLight.stypo uni251F.stypo boxDownHeavyAndUpHorizontalLight uni2541 boxDownHeavyAndUpHorizontalLight.stypo uni2541.stypo boxDownLightAndHorizontalHeavy uni252F boxDownLightAndHorizontalHeavy.stypo uni252F.stypo boxDownLightAndLeftHeavy uni2511 boxDownLightAndLeftHeavy.stypo uni2511.stypo boxDownLightAndLeftUpHeavy uni2529 boxDownLightAndLeftUpHeavy.stypo uni2529.stypo boxDownLightAndRightHeavy uni250D boxDownLightAndRightHeavy.stypo uni250D.stypo boxDownLightAndRightUpHeavy uni2521 boxDownLightAndRightUpHeavy.stypo uni2521.stypo boxDownLightAndUpHorizontalHeavy uni2547 boxDownLightAndUpHorizontalHeavy.stypo uni2547.stypo boxDownSingleAndHorizontalDouble uni2564 boxDownSingleAndHorizontalDouble.stypo uni2564.stypo boxDownSingleAndLeftDouble uni2555 boxDownSingleAndLeftDouble.stypo uni2555.stypo boxDownSingleAndRightDouble uni2552 boxDownSingleAndRightDouble.stypo uni2552.stypo boxHeavyDoubleDashHorizontal uni254D boxHeavyDoubleDashHorizontal.stypo uni254D.stypo boxHeavyDoubleDashVertical uni254F boxHeavyDoubleDashVertical.stypo uni254F.stypo boxHeavyDown uni257B boxHeavyDown.stypo uni257B.stypo boxHeavyDownAndHorizontal uni2533 boxHeavyDownAndHorizontal.stypo uni2533.stypo boxHeavyDownAndLeft uni2513 boxHeavyDownAndLeft.stypo uni2513.stypo boxHeavyDownAndRight uni250F boxHeavyDownAndRight.stypo uni250F.stypo boxHeavyHorizontal uni2501 boxHeavyHorizontal.stypo uni2501.stypo boxHeavyLeft uni2578 boxHeavyLeft.stypo uni2578.stypo boxHeavyLeftAndLightRight uni257E boxHeavyLeftAndLightRight.stypo uni257E.stypo boxHeavyQuadrupleDashHorizontal uni2509 boxHeavyQuadrupleDashHorizontal.stypo uni2509.stypo boxHeavyQuadrupleDashVertical uni250B boxHeavyQuadrupleDashVertical.stypo uni250B.stypo boxHeavyRight uni257A boxHeavyRight.stypo uni257A.stypo boxHeavyTripleDashHorizontal uni2505 boxHeavyTripleDashHorizontal.stypo uni2505.stypo boxHeavyTripleDashVertical uni2507 boxHeavyTripleDashVertical.stypo uni2507.stypo boxHeavyUp uni2579 boxHeavyUp.stypo uni2579.stypo boxHeavyUpAndHorizontal uni253B boxHeavyUpAndHorizontal.stypo uni253B.stypo boxHeavyUpAndLeft uni251B boxHeavyUpAndLeft.stypo uni251B.stypo boxHeavyUpAndLightDown uni257F boxHeavyUpAndLightDown.stypo uni257F.stypo boxHeavyUpAndRight uni2517 boxHeavyUpAndRight.stypo uni2517.stypo boxHeavyVertical uni2503 boxHeavyVertical.stypo uni2503.stypo boxHeavyVerticalAndHorizontal uni254B boxHeavyVerticalAndHorizontal.stypo uni254B.stypo boxHeavyVerticalAndLeft uni252B boxHeavyVerticalAndLeft.stypo uni252B.stypo boxHeavyVerticalAndRight uni2523 boxHeavyVerticalAndRight.stypo uni2523.stypo boxLeftDownHeavyAndRightUpLight uni2545 boxLeftDownHeavyAndRightUpLight.stypo uni2545.stypo boxLeftHeavyAndRightDownLight uni252D boxLeftHeavyAndRightDownLight.stypo uni252D.stypo boxLeftHeavyAndRightUpLight uni2535 boxLeftHeavyAndRightUpLight.stypo uni2535.stypo boxLeftHeavyAndRightVerticalLight uni253D boxLeftHeavyAndRightVerticalLight.stypo uni253D.stypo boxLeftLightAndRightDownHeavy uni2532 boxLeftLightAndRightDownHeavy.stypo uni2532.stypo boxLeftLightAndRightUpHeavy uni253A boxLeftLightAndRightUpHeavy.stypo uni253A.stypo boxLeftLightAndRightVerticalHeavy uni254A boxLeftLightAndRightVerticalHeavy.stypo uni254A.stypo boxLeftUpHeavyAndRightDownLight uni2543 boxLeftUpHeavyAndRightDownLight.stypo uni2543.stypo boxLightArcDownAndLeft uni256E boxLightArcDownAndLeft.stypo uni256E.stypo boxLightArcDownAndRight uni256D boxLightArcDownAndRight.stypo uni256D.stypo boxLightArcUpAndLeft uni256F boxLightArcUpAndLeft.stypo uni256F.stypo boxLightArcUpAndRight uni2570 boxLightArcUpAndRight.stypo uni2570.stypo boxLightDiagonalCross uni2573 boxLightDiagonalCross.stypo uni2573.stypo boxLightDiagonalUpperLeftToLowerRight uni2572 boxLightDiagonalUpperLeftToLowerRight.stypo uni2572.stypo boxLightDiagonalUpperRightToLowerLeft uni2571 boxLightDiagonalUpperRightToLowerLeft.stypo uni2571.stypo boxLightDoubleDashHorizontal uni254C boxLightDoubleDashHorizontal.stypo uni254C.stypo boxLightDoubleDashVertical uni254E boxLightDoubleDashVertical.stypo uni254E.stypo boxLightDown uni2577 boxLightDown.stypo uni2577.stypo boxLightDownAndHorizontal uni252C boxLightDownAndHorizontal.stypo uni252C.stypo boxLightDownAndLeft uni2510 boxLightDownAndLeft.stypo uni2510.stypo boxLightDownAndRight uni250C boxLightDownAndRight.stypo uni250C.stypo boxLightHorizontal uni2500 boxLightHorizontal.stypo uni2500.stypo boxLightLeft uni2574 boxLightLeft.stypo uni2574.stypo boxLightLeftAndHeavyRight uni257C boxLightLeftAndHeavyRight.stypo uni257C.stypo boxLightQuadrupleDashHorizontal uni2508 boxLightQuadrupleDashHorizontal.stypo uni2508.stypo boxLightQuadrupleDashVertical uni250A boxLightQuadrupleDashVertical.stypo uni250A.stypo boxLightRight uni2576 boxLightRight.stypo uni2576.stypo boxLightTripleDashHorizontal uni2504 boxLightTripleDashHorizontal.stypo uni2504.stypo boxLightTripleDashVertical uni2506 boxLightTripleDashVertical.stypo uni2506.stypo boxLightUp uni2575 boxLightUp.stypo uni2575.stypo boxLightUpAndHeavyDown uni257D boxLightUpAndHeavyDown.stypo uni257D.stypo boxLightUpAndHorizontal uni2534 boxLightUpAndHorizontal.stypo uni2534.stypo boxLightUpAndLeft uni2518 boxLightUpAndLeft.stypo uni2518.stypo boxLightUpAndRight uni2514 boxLightUpAndRight.stypo uni2514.stypo boxLightVertical uni2502 boxLightVertical.stypo uni2502.stypo boxLightVerticalAndHorizontal uni253C boxLightVerticalAndHorizontal.stypo uni253C.stypo boxLightVerticalAndLeft uni2524 boxLightVerticalAndLeft.stypo uni2524.stypo boxLightVerticalAndRight uni251C boxLightVerticalAndRight.stypo uni251C.stypo boxRightDownHeavyAndLeftUpLight uni2546 boxRightDownHeavyAndLeftUpLight.stypo uni2546.stypo boxRightHeavyAndLeftDownLight uni252E boxRightHeavyAndLeftDownLight.stypo uni252E.stypo boxRightHeavyAndLeftUpLight uni2536 boxRightHeavyAndLeftUpLight.stypo uni2536.stypo boxRightHeavyAndLeftVerticalLight uni253E boxRightHeavyAndLeftVerticalLight.stypo uni253E.stypo boxRightLightAndLeftDownHeavy uni2531 boxRightLightAndLeftDownHeavy.stypo uni2531.stypo boxRightLightAndLeftUpHeavy uni2539 boxRightLightAndLeftUpHeavy.stypo uni2539.stypo boxRightLightAndLeftVerticalHeavy uni2549 boxRightLightAndLeftVerticalHeavy.stypo uni2549.stypo boxRightUpHeavyAndLeftDownLight uni2544 boxRightUpHeavyAndLeftDownLight.stypo uni2544.stypo boxUpDoubleAndHorizontalSingle uni2568 boxUpDoubleAndHorizontalSingle.stypo uni2568.stypo boxUpDoubleAndLeftSingle uni255C boxUpDoubleAndLeftSingle.stypo uni255C.stypo boxUpDoubleAndRightSingle uni2559 boxUpDoubleAndRightSingle.stypo uni2559.stypo boxUpHeavyAndDownHorizontalLight uni2540 boxUpHeavyAndDownHorizontalLight.stypo uni2540.stypo boxUpHeavyAndHorizontalLight uni2538 boxUpHeavyAndHorizontalLight.stypo uni2538.stypo boxUpHeavyAndLeftDownLight uni2526 boxUpHeavyAndLeftDownLight.stypo uni2526.stypo boxUpHeavyAndLeftLight uni251A boxUpHeavyAndLeftLight.stypo uni251A.stypo boxUpHeavyAndRightDownLight uni251E boxUpHeavyAndRightDownLight.stypo uni251E.stypo boxUpHeavyAndRightLight uni2516 boxUpHeavyAndRightLight.stypo uni2516.stypo boxUpLightAndDownHorizontalHeavy uni2548 boxUpLightAndDownHorizontalHeavy.stypo uni2548.stypo boxUpLightAndHorizontalHeavy uni2537 boxUpLightAndHorizontalHeavy.stypo uni2537.stypo boxUpLightAndLeftDownHeavy uni252A boxUpLightAndLeftDownHeavy.stypo uni252A.stypo boxUpLightAndLeftHeavy uni2519 boxUpLightAndLeftHeavy.stypo uni2519.stypo boxUpLightAndRightDownHeavy uni2522 boxUpLightAndRightDownHeavy.stypo uni2522.stypo boxUpLightAndRightHeavy uni2515 boxUpLightAndRightHeavy.stypo uni2515.stypo boxUpSingleAndHorizontalDouble uni2567 boxUpSingleAndHorizontalDouble.stypo uni2567.stypo boxUpSingleAndLeftDouble uni255B boxUpSingleAndLeftDouble.stypo uni255B.stypo boxUpSingleAndRightDouble uni2558 boxUpSingleAndRightDouble.stypo uni2558.stypo boxVerticalDoubleAndHorizontalSingle uni256B boxVerticalDoubleAndHorizontalSingle.stypo uni256B.stypo boxVerticalDoubleAndLeftSingle uni2562 boxVerticalDoubleAndLeftSingle.stypo uni2562.stypo boxVerticalDoubleAndRightSingle uni255F boxVerticalDoubleAndRightSingle.stypo uni255F.stypo boxVerticalHeavyAndHorizontalLight uni2542 boxVerticalHeavyAndHorizontalLight.stypo uni2542.stypo boxVerticalHeavyAndLeftLight uni2528 boxVerticalHeavyAndLeftLight.stypo uni2528.stypo boxVerticalHeavyAndRightLight uni2520 boxVerticalHeavyAndRightLight.stypo uni2520.stypo boxVerticalLightAndHorizontalHeavy uni253F boxVerticalLightAndHorizontalHeavy.stypo uni253F.stypo boxVerticalLightAndLeftHeavy uni2525 boxVerticalLightAndLeftHeavy.stypo uni2525.stypo boxVerticalLightAndRightHeavy uni251D boxVerticalLightAndRightHeavy.stypo uni251D.stypo boxVerticalSingleAndHorizontalDouble uni256A boxVerticalSingleAndHorizontalDouble.stypo uni256A.stypo boxVerticalSingleAndLeftDouble uni2561 boxVerticalSingleAndLeftDouble.stypo uni2561.stypo boxVerticalSingleAndRightDouble uni255E boxVerticalSingleAndRightDouble.stypo uni255E.stypo brevecomb uni0306 brevecomb-cy brevecombcy brevecomb-cy.case brevecombcy.case brevecomb.case uni0306.case bulletoperator uni2219 bullseye uni25CE cancelControl uni2418 cancelControl.ss20 uni2418.ss20 careof uni2105 caroncomb uni030C caroncomb.case uni030C.case carriageReturnControl uni240D carriageReturnControl.ss20 uni240D.ss20 cedi uni20B5 cedillacomb uni0327 che-cy uni0447 checkmark uni2713 chedescender-cy uni04B7 circumflexcomb uni0302 circumflexcomb.case uni0302.case clubBlackSuit club colonsign colonmonetary colontriangularmod uni02D0 comma-ar uni060C commaabovecomb uni0313 commaaboverightcomb uni0315 commaaccentcomb uni0326 commaturnedabovecomb uni0312 commaturnedmod uni02BB crosshatchFillSquare uni25A6 cuberoot-ar uni0606 dad-ar uni0636 dad-ar.alt uni0636.alt dad-ar.fina uniFEBE dad-ar.fina.alt uni0636.fina.alt dad-ar.init uniFEBF dad-ar.medi uniFEC0 dadDotbelow-ar uni06FB dadDotbelow-ar.alt uni06FB.alt dadDotbelow-ar.fina uni06FB.fina dadDotbelow-ar.fina.alt uni06FB.fina.alt dadDotbelow-ar.init uni06FB.init dadDotbelow-ar.medi uni06FB.medi dagesh-hb uni05BC dahal-ar uni068C dahal-ar.fina uniFB85 dal-ar uni062F dal-ar.fina uniFEAA dalDotbelow-ar uni068A dalDotbelow-ar.fina uni068A.fina dalDotbelowTah-ar uni068B dalDotbelowTah-ar.fina uni068B.fina dalFourdots-ar uni0690 dalFourdots-ar.fina uni0690.fina dalRing-ar uni0689 dalRing-ar.fina uni0689.fina dalThreedotsbelow-ar uni08AE dalThreedotsbelow-ar.fina uni08AE.fina dalThreedotsdown-ar uni068F dalThreedotsdown-ar.fina uni068F.fina dalTwodotsverticalbelowTahabove-ar dalTwodotsverticalbelowTahabovear dalTwodotsverticalbelowTahabove-ar.fina dalTwodotsverticalbelowTahabovear.fina dalVinvertedabove-ar uni06EE dalVinvertedabove-ar.fina uni06EE.fina dalVinvertedbelow-ar uni075A dalVinvertedbelow-ar.fina uni075A.fina dalet-hb uni05D3 daletdagesh-hb uniFB33 damma-ar uni064F dammatan-ar uni064C dashdownArrow uni21E3 dataLinkEscapeControl uni2410 dataLinkEscapeControl.ss20 uni2410.ss20 dateseparator-ar uni060D ddahal-ar uni068D ddahal-ar.fina uniFB83 ddal-ar uni0688 ddal-ar.fina uniFB89 de-cy uni0434 de-cy.loclBGR uni0434.loclBGR decimalseparator-ar uni066B deleteControl uni2421 deleteFormTwoControl uni2425 deviceControlFourControl uni2414 deviceControlOneControl uni2411 deviceControlThreeControl uni2413 deviceControlTwoControl uni2412 diagonalcrosshatchFillSquare uni25A9 diamondBlackSuit diamond dieresiscomb uni0308 dieresiscomb.case uni0308.case divisionslash uni2215 dje-cy uni0452 dotabove-ar dotabovear dotaccentcomb uni0307 dotaccentcomb.case uni0307.case dotbelow-ar dotbelowar dotcenter-ar dotcenterar dots1-braille uni2801 dots12-braille uni2803 dots123-braille uni2807 dots1234-braille uni280F dots12345-braille uni281F dots123456-braille uni283F dots1234567-braille uni287F dots12345678-braille uni28FF dots1234568-braille uni28BF dots123457-braille uni285F dots1234578-braille uni28DF dots123458-braille uni289F dots12346-braille uni282F dots123467-braille uni286F dots1234678-braille uni28EF dots123468-braille uni28AF dots12347-braille uni284F dots123478-braille uni28CF dots12348-braille uni288F dots1235-braille uni2817 dots12356-braille uni2837 dots123567-braille uni2877 dots1235678-braille uni28F7 dots123568-braille uni28B7 dots12357-braille uni2857 dots123578-braille uni28D7 dots12358-braille uni2897 dots1236-braille uni2827 dots12367-braille uni2867 dots123678-braille uni28E7 dots12368-braille uni28A7 dots1237-braille uni2847 dots12378-braille uni28C7 dots1238-braille uni2887 dots124-braille uni280B dots1245-braille uni281B dots12456-braille uni283B dots124567-braille uni287B dots1245678-braille uni28FB dots124568-braille uni28BB dots12457-braille uni285B dots124578-braille uni28DB dots12458-braille uni289B dots1246-braille uni282B dots12467-braille uni286B dots124678-braille uni28EB dots12468-braille uni28AB dots1247-braille uni284B dots12478-braille uni28CB dots1248-braille uni288B dots125-braille uni2813 dots1256-braille uni2833 dots12567-braille uni2873 dots125678-braille uni28F3 dots12568-braille uni28B3 dots1257-braille uni2853 dots12578-braille uni28D3 dots1258-braille uni2893 dots126-braille uni2823 dots1267-braille uni2863 dots12678-braille uni28E3 dots1268-braille uni28A3 dots127-braille uni2843 dots1278-braille uni28C3 dots128-braille uni2883 dots13-braille uni2805 dots134-braille uni280D dots1345-braille uni281D dots13456-braille uni283D dots134567-braille uni287D dots1345678-braille uni28FD dots134568-braille uni28BD dots13457-braille uni285D dots134578-braille uni28DD dots13458-braille uni289D dots1346-braille uni282D dots13467-braille uni286D dots134678-braille uni28ED dots13468-braille uni28AD dots1347-braille uni284D dots13478-braille uni28CD dots1348-braille uni288D dots135-braille uni2815 dots1356-braille uni2835 dots13567-braille uni2875 dots135678-braille uni28F5 dots13568-braille uni28B5 dots1357-braille uni2855 dots13578-braille uni28D5 dots1358-braille uni2895 dots136-braille uni2825 dots1367-braille uni2865 dots13678-braille uni28E5 dots1368-braille uni28A5 dots137-braille uni2845 dots1378-braille uni28C5 dots138-braille uni2885 dots14-braille uni2809 dots145-braille uni2819 dots1456-braille uni2839 dots14567-braille uni2879 dots145678-braille uni28F9 dots14568-braille uni28B9 dots1457-braille uni2859 dots14578-braille uni28D9 dots1458-braille uni2899 dots146-braille uni2829 dots1467-braille uni2869 dots14678-braille uni28E9 dots1468-braille uni28A9 dots147-braille uni2849 dots1478-braille uni28C9 dots148-braille uni2889 dots15-braille uni2811 dots156-braille uni2831 dots1567-braille uni2871 dots15678-braille uni28F1 dots1568-braille uni28B1 dots157-braille uni2851 dots1578-braille uni28D1 dots158-braille uni2891 dots16-braille uni2821 dots167-braille uni2861 dots1678-braille uni28E1 dots168-braille uni28A1 dots17-braille uni2841 dots178-braille uni28C1 dots18-braille uni2881 dots2-braille uni2802 dots23-braille uni2806 dots234-braille uni280E dots2345-braille uni281E dots23456-braille uni283E dots234567-braille uni287E dots2345678-braille uni28FE dots234568-braille uni28BE dots23457-braille uni285E dots234578-braille uni28DE dots23458-braille uni289E dots2346-braille uni282E dots23467-braille uni286E dots234678-braille uni28EE dots23468-braille uni28AE dots2347-braille uni284E dots23478-braille uni28CE dots2348-braille uni288E dots235-braille uni2816 dots2356-braille uni2836 dots23567-braille uni2876 dots235678-braille uni28F6 dots23568-braille uni28B6 dots2357-braille uni2856 dots23578-braille uni28D6 dots2358-braille uni2896 dots236-braille uni2826 dots2367-braille uni2866 dots23678-braille uni28E6 dots2368-braille uni28A6 dots237-braille uni2846 dots2378-braille uni28C6 dots238-braille uni2886 dots24-braille uni280A dots245-braille uni281A dots2456-braille uni283A dots24567-braille uni287A dots245678-braille uni28FA dots24568-braille uni28BA dots2457-braille uni285A dots24578-braille uni28DA dots2458-braille uni289A dots246-braille uni282A dots2467-braille uni286A dots24678-braille uni28EA dots2468-braille uni28AA dots247-braille uni284A dots2478-braille uni28CA dots248-braille uni288A dots25-braille uni2812 dots256-braille uni2832 dots2567-braille uni2872 dots25678-braille uni28F2 dots2568-braille uni28B2 dots257-braille uni2852 dots2578-braille uni28D2 dots258-braille uni2892 dots26-braille uni2822 dots267-braille uni2862 dots2678-braille uni28E2 dots268-braille uni28A2 dots27-braille uni2842 dots278-braille uni28C2 dots28-braille uni2882 dots3-braille uni2804 dots34-braille uni280C dots345-braille uni281C dots3456-braille uni283C dots34567-braille uni287C dots345678-braille uni28FC dots34568-braille uni28BC dots3457-braille uni285C dots34578-braille uni28DC dots3458-braille uni289C dots346-braille uni282C dots3467-braille uni286C dots34678-braille uni28EC dots3468-braille uni28AC dots347-braille uni284C dots3478-braille uni28CC dots348-braille uni288C dots35-braille uni2814 dots356-braille uni2834 dots3567-braille uni2874 dots35678-braille uni28F4 dots3568-braille uni28B4 dots357-braille uni2854 dots3578-braille uni28D4 dots358-braille uni2894 dots36-braille uni2824 dots367-braille uni2864 dots3678-braille uni28E4 dots368-braille uni28A4 dots37-braille uni2844 dots378-braille uni28C4 dots38-braille uni2884 dots4-braille uni2808 dots45-braille uni2818 dots456-braille uni2838 dots4567-braille uni2878 dots45678-braille uni28F8 dots4568-braille uni28B8 dots457-braille uni2858 dots4578-braille uni28D8 dots458-braille uni2898 dots46-braille uni2828 dots467-braille uni2868 dots4678-braille uni28E8 dots468-braille uni28A8 dots47-braille uni2848 dots478-braille uni28C8 dots48-braille uni2888 dots5-braille uni2810 dots56-braille uni2830 dots567-braille uni2870 dots5678-braille uni28F0 dots568-braille uni28B0 dots57-braille uni2850 dots578-braille uni28D0 dots58-braille uni2890 dots6-braille uni2820 dots67-braille uni2860 dots678-braille uni28E0 dots68-braille uni28A0 dots7-braille uni2840 dots78-braille uni28C0 dots8-braille uni2880 dottedCircle uni25CC dottedSquare uni2B1A doubleverticalbarbelowSymbol-ar uniFBBC doubleverticalbarbelowSymbol-ar.comb uniFBBC.comb downArrow arrowdown downBlackSmallTriangle uni25BE downBlackTriangle triagdn downTipLeftArrow uni21B2 downWhiteSmallTriangle uni25BF downWhiteTriangle uni25BD dtail uni0256 dul-ar uni068E dul-ar.fina uniFB87 dyeh-ar uni0684 dyeh-ar.fina uniFB73 dyeh-ar.init uniFB74 dyeh-ar.medi uniFB75 dze-cy uni0455 dzhe-cy uni045F e-ar uni06D0 e-ar.fina uniFBE5 e-ar.fina.alt uni06D0.fina.alt e-ar.init uniFBE6 e-ar.init.alt uni06D0.init.alt e-ar.medi uniFBE7 e-cy uni0454 ecircumflexacute uni1EBF ecircumflexdotbelow uni1EC7 ecircumflexgrave uni1EC1 ecircumflexhookabove uni1EC3 ecircumflextilde uni1EC5 edotbelow uni1EB9 ef-cy uni0444 ef-cy.loclBGR uni0424.loclBGR ehookabove uni1EBB eight-ar uni0668 eight-arinferior eightarinferior eight-arsuperior eightarsuperior eight-persian uni06F8 eight-persianinferior eightpersianinferior eight-persiansuperior eightpersiansuperior eightinferior uni2088 eightsuperior uni2078 el-cy uni043B el-cy.loclBGR uni043B.loclBGR em-cy uni043C en-cy uni043D endOfMediumControl uni2419 endOfMediumControl.ss20 uni2419.ss20 endOfTextControl uni2403 endOfTextControl.ss20 uni2403.ss20 endOfTransmissionBlockControl uni2417 endOfTransmissionBlockControl.ss20 uni2417.ss20 endOfTransmissionControl uni2404 endOfTransmissionControl.ss20 uni2404.ss20 endescender-cy uni04A3 endofayah-ar uni06DD enquiryControl uni2405 enquiryControl.ss20 uni2405.ss20 eopen uni025B er-cy uni0440 ereversed-cy uni044D es-cy uni0441 escapeControl uni241B escapeControl.ss20 uni241B.ss20 esh uni0283 etilde uni1EBD eturned uni01DD euro Euro eurocurrency uni20A0 exclamdouble exclamdbl ezh uni0292 fatha-ar uni064E fathatan-ar uni064B feh-ar uni0641 feh-ar.alt uni0641.alt feh-ar.fina uniFED2 feh-ar.fina.alt uni0641.fina.alt feh-ar.init uniFED3 feh-ar.init.alt uni0641.init.alt feh-ar.medi uniFED4 fehDotMovedbelow-ar fehDotMovedbelowar fehDotMovedbelow-ar.alt fehDotMovedbelowar.alt fehDotMovedbelow-ar.fina fehDotMovedbelowar.fina fehDotMovedbelow-ar.fina.alt fehDotMovedbelowar.fina.alt fehDotMovedbelow-ar.init fehDotMovedbelowar.init fehDotMovedbelow-ar.medi fehDotMovedbelowar.medi fehDotbelow-ar uni06A3 fehDotbelow-ar.alt uni06A3.alt fehDotbelow-ar.fina uni06A3.fina fehDotbelow-ar.fina.alt uni06A3.fina.alt fehDotbelow-ar.init uni06A3.init fehDotbelow-ar.medi uni06A3.medi fehDotbelowThreedotsabove-ar uni08A4 fehDotbelowThreedotsabove-ar.alt uni08A4.alt fehDotbelowThreedotsabove-ar.fina uni08A4.fina fehDotbelowThreedotsabove-ar.fina.alt uni08A4.fina.alt fehDotbelowThreedotsabove-ar.init uni08A4.init fehDotbelowThreedotsabove-ar.medi uni08A4.medi fehDotless-ar uni06A1 fehDotless-ar.alt uni06A1.alt fehDotless-ar.fina uni06A1.fina fehDotless-ar.fina.alt uni06A1.fina.alt fehDotless-ar.init uni06A1.init fehDotless-ar.init.alt uni06A1.init.alt fehDotless-ar.medi uni06A1.medi fehThreedotsbelow-ar uni06A5 fehThreedotsbelow-ar.alt uni06A5.alt fehThreedotsbelow-ar.fina uni06A5.fina fehThreedotsbelow-ar.fina.alt uni06A5.fina.alt fehThreedotsbelow-ar.init uni06A5.init fehThreedotsbelow-ar.medi uni06A5.medi fehThreedotsupbelow-ar uni0761 fehThreedotsupbelow-ar.alt uni0761.alt fehThreedotsupbelow-ar.fina uni0761.fina fehThreedotsupbelow-ar.fina.alt uni0761.fina.alt fehThreedotsupbelow-ar.init uni0761.init fehThreedotsupbelow-ar.medi uni0761.medi fehTwodotsbelow-ar uni0760 fehTwodotsbelow-ar.alt uni0760.alt fehTwodotsbelow-ar.fina uni0760.fina fehTwodotsbelow-ar.fina.alt uni0760.fina.alt fehTwodotsbelow-ar.init uni0760.init fehTwodotsbelow-ar.medi uni0760.medi fileSeparatorControl uni241C filledRect filledrect finalkaf-hb uni05DA finalkafdagesh-hb uniFB3A finalmem-hb uni05DD finalnun-hb uni05DF finalpe-hb uni05E3 finalpedagesh-hb uniFB43 finaltsadi-hb uni05E5 firsttonechinese uni02C9 fisheye uni25C9 five-ar uni0665 five-arinferior fivearinferior five-arsuperior fivearsuperior five-persian uni06F5 five-persianinferior fivepersianinferior five-persiansuperior fivepersiansuperior fiveinferior uni2085 fivesuperior uni2075 footnotemarker-ar uni0602 formFeedControl uni240C formFeedControl.ss20 uni240C.ss20 four-ar uni0664 four-arinferior fourarinferior four-arsuperior fourarsuperior four-persian uni06F4 four-persian.small01 uni06F4.small01 four-persian.urdu uni06F4.urdu four-persian.urduinferior uni06F4.urduinferior four-persian.urdusuperior uni06F4.urdusuperior four-persianbelow-ar fourpersianbelowar four-persiancenter-ar fourpersiancenterar four-persianinferior fourpersianinferior four-persiansuperior fourpersiansuperior fourdotsabove-ar fourdotsabovear fourdotsbelow-ar fourdotsbelowar fourdotscenter-ar fourdotscenterar fourinferior uni2084 foursuperior uni2074 fourthroot-ar uni0607 fullBlock block fullBlock.stypo block.stypo fullstop-ar uni06D4 gaf-ar uni06AF gaf-ar.fina uniFB93 gaf-ar.init uniFB94 gaf-ar.medi uniFB95 gafInvertedstroke-ar uni08B0 gafInvertedstroke-ar.fina uni08B0.fina gafInvertedstroke-ar.init uni08B0.init gafInvertedstroke-ar.medi uni08B0.medi gafRing-ar uni06B0 gafRing-ar.fina uni06B0.fina gafRing-ar.init uni06B0.init gafRing-ar.medi uni06B0.medi gafThreedots-ar uni06B4 gafThreedots-ar.fina uni06B4.fina gafThreedots-ar.init uni06B4.init gafThreedots-ar.medi uni06B4.medi gafTwodotsbelow-ar uni06B2 gafTwodotsbelow-ar.fina uni06B2.fina gafTwodotsbelow-ar.init uni06B2.init gafTwodotsbelow-ar.medi uni06B2.medi gafsarkashabove-ar gafsarkashabovear gamma-latin uni0263 gcommaaccent uni0123 ge-cy uni0433 ge-cy.loclBGR uni0433.loclBGR geresh-hb uni05F3 gershayim-hb uni05F4 ghain-ar uni063A ghain-ar.fina uniFECE ghain-ar.init uniFECF ghain-ar.medi uniFED0 ghainDotbelow-ar uni06FC ghainDotbelow-ar.fina uni06FC.fina ghainDotbelow-ar.init uni06FC.init ghainDotbelow-ar.medi uni06FC.medi ghestroke-cy uni0493 gheupturn-cy uni0491 gimel-hb uni05D2 gimeldagesh-hb uniFB32 gje-cy uni0453 glottalstop uni0294 glottalstopmod uni02C0 glottalstopreversed uni0295 gravetonecomb uni0340 groupSeparatorControl uni241D gstroke uni01E5 guarani uni20B2 gueh-ar uni06B3 gueh-ar.fina uniFB97 gueh-ar.init uniFB98 gueh-ar.medi uniFB99 guillemetleft guillemotleft guillemetright guillemotright ha-cy uni0445 hadescender-cy uni04B3 hah-ar uni062D hah-ar.fina uniFEA2 hah-ar.init uniFEA3 hah-ar.medi uniFEA4 hahFourbelow-ar uni077C hahFourbelow-ar.fina uni077C.fina hahFourbelow-ar.init uni077C.init hahFourbelow-ar.medi uni077C.medi hahHamzaabove-ar uni0681 hahHamzaabove-ar.fina uni0681.fina hahHamzaabove-ar.init uni0681.init hahHamzaabove-ar.medi uni0681.medi hahTahTwodotshorizontalabove-ar uni076F hahTahTwodotshorizontalabove-ar.fina uni076F.fina hahTahTwodotshorizontalabove-ar.init uni076F.init hahTahTwodotshorizontalabove-ar.medi uni076F.medi hahTahabove-ar uni0772 hahTahabove-ar.fina uni0772.fina hahTahabove-ar.init uni0772.init hahTahabove-ar.medi uni0772.medi hahTahbelow-ar uni076E hahTahbelow-ar.fina uni076E.fina hahTahbelow-ar.init uni076E.init hahTahbelow-ar.medi uni076E.medi hahThreedotsabove-ar uni0685 hahThreedotsabove-ar.fina uni0685.fina hahThreedotsabove-ar.init uni0685.init hahThreedotsabove-ar.medi uni0685.medi hahThreedotsupbelow-ar uni0758 hahThreedotsupbelow-ar.fina uni0758.fina hahThreedotsupbelow-ar.init uni0758.init hahThreedotsupbelow-ar.medi uni0758.medi hahTwodotshorizontalabove-ar uni0757 hahTwodotshorizontalabove-ar.fina uni0757.fina hahTwodotshorizontalabove-ar.init uni0757.init hahTwodotshorizontalabove-ar.medi uni0757.medi hahTwodotsverticalabove-ar uni0682 hahTwodotsverticalabove-ar.fina uni0682.fina hahTwodotsverticalabove-ar.init uni0682.init hahTwodotsverticalabove-ar.medi uni0682.medi hamza-ar uni0621 hamzaabove-ar uni0654 hamzabelow-ar uni0655 hardsign-cy uni044A hardsign-cy.loclBGR uni044A.loclBGR hcaron uni021F hdotbelow uni1E25 he-hb uni05D4 heartBlackSuit heart heavyleftpointinganglebracketornament uni2770 heavyleftpointinganglequotationmarkornament uni276E heavyrightpointinganglebracketornament uni2771 heavyrightpointinganglequotationmarkornament uni276F hedagesh-hb uniFB34 heh-ar uni0647 heh-ar.fina uniFEEA heh-ar.init uniFEEB heh-ar.medi uniFEEC hehAlefabove-ar.init uniFCD9 hehAlefabove-ar.init.fina hehAlefabovear.init.fina hehDoachashmee-ar uni06BE hehDoachashmee-ar.fina uniFBAB hehDoachashmee-ar.init uniFBAC hehDoachashmee-ar.medi uniFBAD hehHamzaabove-ar uni06C0 hehHamzaabove-ar.fina uniFBA5 hehVinvertedabove-ar uni06FF hehVinvertedabove-ar.fina uni06FF.fina hehVinvertedabove-ar.init uni06FF.init hehVinvertedabove-ar.medi uni06FF.medi hehgoal-ar uni06C1 hehgoal-ar.fina uniFBA7 hehgoal-ar.init uniFBA8 hehgoal-ar.init.alt uni06C1.init.alt hehgoal-ar.medi uniFBA9 hehgoalHamzaabove-ar uni06C2 hehgoalHamzaabove-ar.fina uni06C2.fina hehgoalHamzaabove-ar.init uni06C2.init hehgoalHamzaabove-ar.init.alt uni06C2.init.alt hehgoalHamzaabove-ar.medi uni06C2.medi het-hb uni05D7 highhamza-ar uni0674 highhamzaAlef-ar uni0675 highhamzaAlef-ar.fina uni0675.fina highhamzaAlef-ar.fina.rlig uni0675.fina.rlig highhamzaWaw-ar uni0676 highhamzaWaw-ar.fina uni0676.fina highhamzaYeh-ar uni0678 highhamzaYeh-ar.fina uni0678.fina highhamzaYeh-ar.fina.alt uni0678.fina.alt highhamzaYeh-ar.init uni0678.init highhamzaYeh-ar.init.alt uni0678.init.alt highhamzaYeh-ar.medi uni0678.medi holam-hb uni05B9 holamhaser-hb uni05BA horizontalBlackHexagon uni2B23 horizontalFillSquare uni25A4 horizontalTabulationControl uni2409 horizontalTabulationControl.ss20 uni2409.ss20 horizontalbar uni2015 horizontallineextension uni23AF horncomb uni031B horncomb.case uni031B.case hryvnia uni20B4 hungarumlautcomb uni030B hungarumlautcomb.case uni030B.case hyphentwo uni2010 i-cy uni0456 ia-cy uni044F idotbelow uni1ECB idotless dotlessi ie-cy uni0435 iegrave-cy uni0450 ihookabove uni1EC9 ii-cy uni0438 ii-cy.loclBGR uni0438.loclBGR iigrave-cy uni045D iigrave-cy.loclBGR uni045D.loclBGR iishort-cy uni0439 iishort-cy.loclBGR uni0439.loclBGR imacron-cy uni04E3 increment uni2206 inverseBullet invbullet inverseWhiteCircle invcircle io-cy uni0451 iota-latin uni0269 iu-cy uni044E iu-cy.loclBGR uni044E.loclBGR jacute uni006A0301 jcaron uni01F0 jdotless uni0237 je-cy uni0458 jeem-ar uni062C jeem-ar.fina uniFE9E jeem-ar.init uniFE9F jeem-ar.medi uniFEA0 jeemTwodotsabove-ar uni08A2 jeemTwodotsabove-ar.fina uni08A2.fina jeemTwodotsabove-ar.init uni08A2.init jeemTwodotsabove-ar.medi uni08A2.medi jeh-ar uni0698 jeh-ar.fina uniFB8B ka-cy uni043A ka-cy.loclBGR uni043A.loclBGR kadescender-cy uni049B kaf-ar uni0643 kaf-ar.fina uniFEDA kaf-ar.init uniFEDB kaf-ar.medi uniFEDC kaf-hb uni05DB kafDotabove-ar uni06AC kafDotabove-ar.fina uni06AC.fina kafDotabove-ar.init uni06AC.init kafDotabove-ar.medi uni06AC.medi kafRing-ar uni06AB kafRing-ar.fina uni06AB.fina kafRing-ar.init uni06AB.init kafRing-ar.medi uni06AB.medi kafThreedotsbelow-ar uni06AE kafThreedotsbelow-ar.fina uni06AE.fina kafThreedotsbelow-ar.init uni06AE.init kafThreedotsbelow-ar.medi uni06AE.medi kafTwodotshorizontalabove-ar uni077F kafTwodotshorizontalabove-ar.fina uni077F.fina kafTwodotshorizontalabove-ar.init uni077F.init kafTwodotshorizontalabove-ar.medi uni077F.medi kafdagesh-hb uniFB3B kafswash-ar uni06AA kafswash-ar.alt uni06AA.alt kafswash-ar.fina uni06AA.fina kafswash-ar.fina.alt uni06AA.fina.alt kafswash-ar.init uni06AA.init kafswash-ar.init.alt uni06AA.init.alt kafswash-ar.medi uni06AA.medi kafswash-ar.medi.alt uni06AA.medi.alt kaiSymbol uni03D7 kashida-ar uni0640 kasra-ar uni0650 kasratan-ar uni064D kcommaaccent uni0137 kdotbelow uni1E33 keheh-ar uni06A9 keheh-ar.fina uniFB8F keheh-ar.init uniFB90 keheh-ar.medi uniFB91 kehehDotabove-ar uni0762 kehehDotabove-ar.fina uni0762.fina kehehDotabove-ar.init uni0762.init kehehDotabove-ar.medi uni0762.medi kehehThreedotsabove-ar uni0763 kehehThreedotsabove-ar.fina uni0763.fina kehehThreedotsabove-ar.init uni0763.init kehehThreedotsabove-ar.medi uni0763.medi kehehThreedotsbelow-ar uni063C kehehThreedotsbelow-ar.fina uni063C.fina kehehThreedotsbelow-ar.init uni063C.init kehehThreedotsbelow-ar.medi uni063C.medi kehehThreedotsupbelow-ar uni0764 kehehThreedotsupbelow-ar.fina uni0764.fina kehehThreedotsupbelow-ar.init uni0764.init kehehThreedotsupbelow-ar.medi uni0764.medi kehehTwodotshorizontalabove-ar uni063B kehehTwodotshorizontalabove-ar.fina uni063B.fina kehehTwodotshorizontalabove-ar.init uni063B.init kehehTwodotshorizontalabove-ar.medi uni063B.medi khah-ar uni062E khah-ar.fina uniFEA6 khah-ar.init uniFEA7 khah-ar.medi uniFEA8 kip uni20AD kirghizoe-ar uni06C5 kirghizoe-ar.fina uniFBE1 kirghizyu-ar uni06C9 kirghizyu-ar.fina uniFBE3 kje-cy uni045C klinebelow uni1E35 lam-ar uni0644 lam-ar.fina uniFEDE lam-ar.init uniFEDF lam-ar.init.rlig uni0644.init.rlig lam-ar.medi uniFEE0 lam-ar.medi.rlig uni0644.medi.rlig lamBar-ar uni076A lamBar-ar.fina uni076A.fina lamBar-ar.init uni076A.init lamBar-ar.init.rlig uni076A.init.rlig lamBar-ar.medi uni076A.medi lamBar-ar.medi.rlig uni076A.medi.rlig lamDotabove-ar uni06B6 lamDotabove-ar.fina uni06B6.fina lamDotabove-ar.init uni06B6.init lamDotabove-ar.init.rlig uni06B6.init.rlig lamDotabove-ar.medi uni06B6.medi lamDotabove-ar.medi.rlig uni06B6.medi.rlig lamDoublebar-ar uni08A6 lamDoublebar-ar.fina uni08A6.fina lamDoublebar-ar.init uni08A6.init lamDoublebar-ar.init.rlig uni08A6.init.rlig lamDoublebar-ar.medi uni08A6.medi lamDoublebar-ar.medi.rlig uni08A6.medi.rlig lamThreedotsabove-ar uni06B7 lamThreedotsabove-ar.fina uni06B7.fina lamThreedotsabove-ar.init uni06B7.init lamThreedotsabove-ar.init.rlig uni06B7.init.rlig lamThreedotsabove-ar.medi uni06B7.medi lamThreedotsabove-ar.medi.rlig uni06B7.medi.rlig lamThreedotsbelow-ar uni06B8 lamThreedotsbelow-ar.fina uni06B8.fina lamThreedotsbelow-ar.init uni06B8.init lamThreedotsbelow-ar.init.rlig uni06B8.init.rlig lamThreedotsbelow-ar.medi uni06B8.medi lamThreedotsbelow-ar.medi.rlig uni06B8.medi.rlig lamVabove-ar uni06B5 lamVabove-ar.fina uni06B5.fina lamVabove-ar.init uni06B5.init lamVabove-ar.init.rlig uni06B5.init.rlig lamVabove-ar.medi uni06B5.medi lamVabove-ar.medi.rlig uni06B5.medi.rlig lam_alef-ar uniFEFB lam_alef-ar.fina uniFEFC lam_alef-ar.fina.short uniFEFB.fina.short lam_alef-ar.short uniFEFB.short lam_alefHamzaabove-ar uniFEF7 lam_alefHamzaabove-ar.fina uniFEF8 lam_alefHamzabelow-ar uniFEF9 lam_alefHamzabelow-ar.fina uniFEFA lam_alefMadda-ar uniFEF5 lam_alefMadda-ar.fina uniFEF6 lam_alefWasla-ar lam_alefWaslaar lam_alefWasla-ar.fina lam_alefWaslaar.fina lam_lam_heh-ar lam_lam_hehar lambdastroke uni019B lamed-hb uni05DC lameddagesh-hb uniFB3C largeCircle uni25EF lari uni20BE lbar uni019A lbelt uni026C lcommaaccent uni013C ldotbelow uni1E37 leftArrow arrowleft leftBlackPointer triaglf leftBlackSmallTriangle uni25C2 leftBlackTriangle uni25C0 leftBlock lfblock leftBlock.stypo lfblock.stypo leftFiveEighthsBlock uni258B leftFiveEighthsBlock.stypo uni258B.stypo leftHalfBlackCircle uni25D6 leftHalfBlackDiamond uni2B16 leftHalfBlackSquare uni25E7 leftHalfBlackWhiteCircle uni25D0 leftOneEighthBlock uni258F leftOneEighthBlock.stypo uni258F.stypo leftOneQuarterBlock uni258E leftOneQuarterBlock.stypo uni258E.stypo leftRightArrow arrowboth leftSevenEighthsBlock uni2589 leftSevenEighthsBlock.stypo uni2589.stypo leftThreeEighthsBlock uni258D leftThreeEighthsBlock.stypo uni258D.stypo leftThreeQuartersBlock uni258A leftThreeQuartersBlock.stypo uni258A.stypo leftWhitePointer uni25C5 leftWhiteSmallTriangle uni25C3 leftWhiteTriangle uni25C1 lineFeedControl uni240A lineFeedControl.ss20 uni240A.ss20 lineseparator uni2028 liraTurkish uni20BA literSign uni2113 lje-cy uni0459 llinebelow uni1E3B lmiddletilde uni026B logicalnotReversed revlogicalnot lowerFiveEighthsBlock uni2585 lowerFiveEighthsBlock.stypo uni2585.stypo lowerHalfArc uni25E1 lowerHalfBlackWhiteCircle uni25D2 lowerHalfBlock dnblock lowerHalfBlock.stypo dnblock.stypo lowerHalfInverseWhiteCircle uni25DB lowerHalfWhiteSquare uni2B12 lowerLeftArc uni25DF lowerLeftBlackTriangle uni25E3 lowerLeftBlock uni2596 lowerLeftBlock.stypo uni2596.stypo lowerLeftHalfWhiteSquare uni2B14 lowerLeftQuadrantWhiteCircle uni25F5 lowerLeftTriangle uni25FA lowerOneEighthBlock uni2581 lowerOneEighthBlock.stypo uni2581.stypo lowerOneQuarterBlock uni2582 lowerOneQuarterBlock.stypo uni2582.stypo lowerRightArc uni25DE lowerRightBlackTriangle uni25E2 lowerRightBlock uni2597 lowerRightBlock.stypo uni2597.stypo lowerRightDiagonalHalfBlackSquare uni25EA lowerRightQuadrantWhiteCircle uni25F6 lowerRightTriangle uni25FF lowerSevenEighthsBlock uni2587 lowerSevenEighthsBlock.stypo uni2587.stypo lowerThreeEighthsBlock uni2583 lowerThreeEighthsBlock.stypo uni2583.stypo lowerThreeQuartersBlock uni2586 lowerThreeQuartersBlock.stypo uni2586.stypo lowernumeral-greek uni0375 lowlinecomb uni0332 macronbelowcomb uni0331 macroncomb uni0304 macroncomb.case uni0304.case madda-ar uni0653 manat uni20BC maqaf-hb uni05BE mars male mediumBlackSmallSquare uni25FE mediumBlackSquare uni25FC mediumWhiteSmallSquare uni25FD mediumWhiteSquare uni25FB mediumleftpointinganglebracketornament uni276C mediumrightpointinganglebracketornament uni276D meem-ar uni0645 meem-ar.fina uniFEE2 meem-ar.init uniFEE3 meem-ar.medi uniFEE4 meemDotabove-ar uni0765 meemDotabove-ar.fina uni0765.fina meemDotabove-ar.init uni0765.init meemDotabove-ar.medi uni0765.medi meemDotbelow-ar uni0766 meemDotbelow-ar.fina uni0766.fina meemDotbelow-ar.init uni0766.init meemDotbelow-ar.medi uni0766.medi meemStopabove-ar uni06E2 meemThreedotsabove-ar uni08A7 meemThreedotsabove-ar.fina uni08A7.fina meemThreedotsabove-ar.init uni08A7.init meemThreedotsabove-ar.medi uni08A7.medi mem-hb uni05DE memdagesh-hb uniFB3E micro uni00B5 misraComma-ar uni060F mu uni03BC naira uni20A6 nbspace uni00A0 ncommaaccent uni0146 negativeAcknowledgeControl uni2415 negativeAcknowledgeControl.ss20 uni2415.ss20 newlineControl uni2424 ng-ar uni06AD ng-ar.fina uniFBD4 ng-ar.init uniFBD5 ng-ar.medi uniFBD6 ngoeh-ar uni06B1 ngoeh-ar.fina uniFB9B ngoeh-ar.init uniFB9C ngoeh-ar.medi uniFB9D nhookleft uni0272 nine-ar uni0669 nine-arinferior ninearinferior nine-arsuperior ninearsuperior nine-persian uni06F9 nine-persianinferior ninepersianinferior nine-persiansuperior ninepersiansuperior nineinferior uni2089 ninesuperior uni2079 nje-cy uni045A nlinebelow uni1E49 nmod uni207F nonbreakinghyphen uni2011 noon-ar uni0646 noon-ar.fina uniFEE6 noon-ar.init uniFEE7 noon-ar.init.alt uni0646.init.alt noon-ar.medi uniFEE8 noonAfrican-ar uni08BD noonAfrican-ar.fina uni08BD.fina noonAfrican-ar.init uni08BD.init noonAfrican-ar.init.alt uni08BD.init.alt noonAfrican-ar.medi uni08BD.medi noonDotbelow-ar uni06B9 noonDotbelow-ar.fina uni06B9.fina noonDotbelow-ar.init uni06B9.init noonDotbelow-ar.init.alt uni06B9.init.alt noonDotbelow-ar.medi uni06B9.medi noonRing-ar uni06BC noonRing-ar.fina uni06BC.fina noonRing-ar.init uni06BC.init noonRing-ar.init.alt uni06BC.init.alt noonRing-ar.medi uni06BC.medi noonTahabove-ar uni0768 noonTahabove-ar.fina uni0768.fina noonTahabove-ar.init uni0768.init noonTahabove-ar.init.alt uni0768.init.alt noonTahabove-ar.medi uni0768.medi noonThreedotsabove-ar uni06BD noonThreedotsabove-ar.fina uni06BD.fina noonThreedotsabove-ar.init uni06BD.init noonThreedotsabove-ar.init.alt uni06BD.init.alt noonThreedotsabove-ar.medi uni06BD.medi noonTwodotsbelow-ar uni0767 noonTwodotsbelow-ar.fina uni0767.fina noonTwodotsbelow-ar.init uni0767.init noonTwodotsbelow-ar.init.alt uni0767.init.alt noonTwodotsbelow-ar.medi uni0767.medi noonVabove-ar uni0769 noonVabove-ar.fina uni0769.fina noonVabove-ar.init uni0769.init noonVabove-ar.init.alt uni0769.init.alt noonVabove-ar.medi uni0769.medi noonabove-ar uni06E8 noonghunna-ar uni06BA noonghunna-ar.fina uniFB9F noonghunna-ar.init uni06BA.init noonghunna-ar.init.alt uni06BA.init.alt noonghunna-ar.medi uni06BA.medi noonghunnaabove-ar uni0658 note-musical musicalnote notedbl-musical musicalnotedbl notidentical uni2262 nullControl uni2400 number-ar uni0600 numbermark-ar uni0605 numeral-greek uni0374 numero uni2116 nun-hb uni05E0 nundagesh-hb uniFB40 nyeh-ar uni0683 nyeh-ar.fina uniFB77 nyeh-ar.init uniFB78 nyeh-ar.medi uniFB79 o-cy uni043E obarred-cy uni04E9 ocircumflexacute uni1ED1 ocircumflexdotbelow uni1ED9 ocircumflexgrave uni1ED3 ocircumflexhookabove uni1ED5 ocircumflextilde uni1ED7 odotbelow uni1ECD oe-ar uni06C6 oe-ar.fina uniFBDA ogonekcomb uni0328 ohookabove uni1ECF ohornacute uni1EDB ohorndotbelow uni1EE3 ohorngrave uni1EDD ohornhookabove uni1EDF ohorntilde uni1EE1 omacronacute uni1E53 omacrongrave uni1E51 one-ar uni0661 one-arinferior onearinferior one-arsuperior onearsuperior one-persian uni06F1 one-persianinferior onepersianinferior one-persiansuperior onepersiansuperior oneinferior uni2081 onesuperior uni00B9 oogonek uni01EB oopen uni0254 overline uni203E pagenumber-ar uni0603 palochka-cy uni04CF parenleft-ar uniFD3E parenright-ar uniFD3F paseq-hb uni05C0 patah-hb uni05B7 pe-cy uni043F pe-cy.loclBGR uni043F.loclBGR pe-hb uni05E4 pedagesh-hb uniFB44 pedagesh-hb.BRACKET.600 uniFB44.BRACKET.600 peh-ar uni067E peh-ar.alt uni067E.alt peh-ar.fina uniFB57 peh-ar.fina.alt uni067E.fina.alt peh-ar.init uniFB58 peh-ar.init.alt uni067E.init.alt peh-ar.medi uniFB59 pehMeemabove-ar uni08B7 pehMeemabove-ar.alt uni08B7.alt pehMeemabove-ar.fina uni08B7.fina pehMeemabove-ar.fina.alt uni08B7.fina.alt pehMeemabove-ar.init uni08B7.init pehMeemabove-ar.init.alt uni08B7.init.alt pehMeemabove-ar.medi uni08B7.medi peheh-ar uni06A6 peheh-ar.alt uni06A6.alt peheh-ar.fina uniFB6F peheh-ar.fina.alt uni06A6.fina.alt peheh-ar.init uniFB70 peheh-ar.init.alt uni06A6.init.alt peheh-ar.medi uniFB71 percent-ar uni066A perispomenicomb uni0342 perthousand-ar uni0609 peso uni20B1 published uni2117 punctuationspace uni2008 qaf-ar uni0642 qaf-ar.fina uniFED6 qaf-ar.init uniFED7 qaf-ar.init.alt uni0642.init.alt qaf-ar.medi uniFED8 qafAfrican-ar uni08BC qafAfrican-ar.fina uni08BC.fina qafAfrican-ar.init uni08BC.init qafAfrican-ar.init.alt uni08BC.init.alt qafAfrican-ar.medi uni08BC.medi qafDotabove-ar uni06A7 qafDotabove-ar.fina uni06A7.fina qafDotabove-ar.init uni06A7.init qafDotabove-ar.init.alt uni06A7.init.alt qafDotabove-ar.medi uni06A7.medi qafDotbelow-ar uni08A5 qafDotbelow-ar.fina uni08A5.fina qafDotbelow-ar.init uni08A5.init qafDotbelow-ar.medi uni08A5.medi qafDotless-ar uni066F qafDotless-ar.fina uni066F.fina qafDotless-ar.init uni066F.init qafDotless-ar.init.alt uni066F.init.alt qafDotless-ar.medi uni066F.medi qafThreedotsabove-ar uni06A8 qafThreedotsabove-ar.fina uni06A8.fina qafThreedotsabove-ar.init uni06A8.init qafThreedotsabove-ar.medi uni06A8.medi qamats-hb uni05B8 qamatsqatan-hb uni05C7 qof-hb uni05E7 qofdagesh-hb uniFB47 question-ar uni061F questiongreek uni037E ratio uni2236 ray-ar uni0608 rcommaaccent uni0157 rdotbelow uni1E5B recordSeparatorControl uni241E reh-ar uni0631 reh-ar.fina uniFEAE rehAlefabove-ar uniFC5C rehAlefabove-ar.fina uniFC5C.fina rehDotbelow-ar uni0694 rehDotbelow-ar.fina uni0694.fina rehDotbelowdotabove-ar uni0696 rehDotbelowdotabove-ar.fina uni0696.fina rehFourdots-ar uni0699 rehFourdots-ar.fina uni0699.fina rehHamzaabove-ar uni076C rehHamzaabove-ar.fina uni076C.fina rehLoop-ar uni08AA rehLoop-ar.fina uni08AA.fina rehRing-ar uni0693 rehRing-ar.fina uni0693.fina rehStroke-ar uni075B rehStroke-ar.fina uni075B.fina rehTwodots-ar uni0697 rehTwodots-ar.fina uni0697.fina rehTwodotshorizontalaboveTahabove-ar uni0771 rehTwodotshorizontalaboveTahabove-ar.fina uni0771.fina rehTwodotsverticalabove-ar uni076B rehTwodotsverticalabove-ar.fina uni076B.fina rehVbelow-ar uni0695 rehVbelow-ar.fina uni0695.fina rehVinvertedabove-ar uni06EF rehVinvertedabove-ar.fina uni06EF.fina rehv-ar uni0692 rehv-ar.fina uni0692.fina replacementCharacter uniFFFD resh-hb uni05E8 reshdagesh-hb uniFB48 returnsymbol uni23CE reversedRotatedFloralHeartBullet uni2619 rightArrow arrowright rightBlackPointer triagrt rightBlackSmallTriangle uni25B8 rightBlackTriangle uni25B6 rightBlock rtblock rightBlock.stypo rtblock.stypo rightHalfBlackCircle uni25D7 rightHalfBlackDiamond uni2B17 rightHalfBlackSquare uni25E8 rightHalfBlackWhiteCircle uni25D1 rightOneEighthBlock uni2595 rightOneEighthBlock.stypo uni2595.stypo rightWhitePointer uni25BB rightWhiteSmallTriangle uni25B9 rightWhiteTriangle uni25B7 ringbelowcomb uni0325 ringcomb uni030A ringcomb.case uni030A.case rnoon-ar uni06BB rnoon-ar.fina uniFBA1 rnoon-ar.init uniFBA2 rnoon-ar.init.alt uni06BB.init.alt rnoon-ar.medi uniFBA3 rotatedFloralHeartBullet uni2767 rreh-ar uni0691 rreh-ar.fina uniFB8D ruble uni20BD rupee uni20A8 rupeeIndian uni20B9 sad-ar uni0635 sad-ar.alt uni0635.alt sad-ar.fina uniFEBA sad-ar.fina.alt uni0635.fina.alt sad-ar.init uniFEBB sad-ar.medi uniFEBC sadThreedots-ar uni069E sadThreedots-ar.alt uni069E.alt sadThreedots-ar.fina uni069E.fina sadThreedots-ar.fina.alt uni069E.fina.alt sadThreedots-ar.init uni069E.init sadThreedots-ar.medi uni069E.medi sadThreedotsbelow-ar uni08AF sadThreedotsbelow-ar.alt uni08AF.alt sadThreedotsbelow-ar.fina uni08AF.fina sadThreedotsbelow-ar.fina.alt uni08AF.fina.alt sadThreedotsbelow-ar.init uni08AF.init sadThreedotsbelow-ar.medi uni08AF.medi sadTwodotsbelow-ar uni069D sadTwodotsbelow-ar.alt uni069D.alt sadTwodotsbelow-ar.fina uni069D.fina sadTwodotsbelow-ar.fina.alt uni069D.fina.alt sadTwodotsbelow-ar.init uni069D.init sadTwodotsbelow-ar.medi uni069D.medi samekh-hb uni05E1 samekhdagesh-hb uniFB41 samvat-ar uni0604 schwa uni0259 schwa-cy uni04D9 scommaaccent uni0219 sdotbelow uni1E63 seen-ar uni0633 seen-ar.alt uni0633.alt seen-ar.fina uniFEB2 seen-ar.fina.alt uni0633.fina.alt seen-ar.init uniFEB3 seen-ar.medi uniFEB4 seenDotbelowDotabove-ar uni069A seenDotbelowDotabove-ar.alt uni069A.alt seenDotbelowDotabove-ar.fina uni069A.fina seenDotbelowDotabove-ar.fina.alt uni069A.fina.alt seenDotbelowDotabove-ar.init uni069A.init seenDotbelowDotabove-ar.medi uni069A.medi seenFourabove-ar uni077D seenFourabove-ar.alt uni077D.alt seenFourabove-ar.fina uni077D.fina seenFourabove-ar.fina.alt uni077D.fina.alt seenFourabove-ar.init uni077D.init seenFourabove-ar.medi uni077D.medi seenFourdotsabove-ar uni075C seenFourdotsabove-ar.alt uni075C.alt seenFourdotsabove-ar.fina uni075C.fina seenFourdotsabove-ar.fina.alt uni075C.fina.alt seenFourdotsabove-ar.init uni075C.init seenFourdotsabove-ar.medi uni075C.medi seenTahTwodotshorizontalabove-ar uni0770 seenTahTwodotshorizontalabove-ar.alt uni0770.alt seenTahTwodotshorizontalabove-ar.fina uni0770.fina seenTahTwodotshorizontalabove-ar.fina.alt uni0770.fina.alt seenTahTwodotshorizontalabove-ar.init uni0770.init seenTahTwodotshorizontalabove-ar.medi uni0770.medi seenThreedotsbelow-ar uni069B seenThreedotsbelow-ar.alt uni069B.alt seenThreedotsbelow-ar.fina uni069B.fina seenThreedotsbelow-ar.fina.alt uni069B.fina.alt seenThreedotsbelow-ar.init uni069B.init seenThreedotsbelow-ar.medi uni069B.medi seenThreedotsbelowthreedots-ar seenThreedotsbelowthreedotsar seenThreedotsbelowthreedots-ar.alt seenThreedotsbelowthreedotsar.alt seenThreedotsbelowthreedots-ar.fina seenThreedotsbelowthreedotsar.fina seenThreedotsbelowthreedots-ar.fina.alt seenThreedotsbelowthreedotsar.fina.alt seenThreedotsbelowthreedots-ar.init seenThreedotsbelowthreedotsar.init seenThreedotsbelowthreedots-ar.medi seenThreedotsbelowthreedotsar.medi seenTwodotshorizontalabove-ar uni076D seenTwodotshorizontalabove-ar.fina uni076D.fina seenTwodotshorizontalabove-ar.init uni076D.init seenTwodotshorizontalabove-ar.medi uni076D.medi seenTwodotsverticalabove-ar.alt seenTwodotsverticalabovear.alt seenTwodotsverticalabove-ar.fina.alt seenTwodotsverticalabovear.fina.alt seenVinvertedabove-ar uni077E seenVinvertedabove-ar.alt uni077E.alt seenVinvertedabove-ar.fina uni077E.fina seenVinvertedabove-ar.fina.alt uni077E.fina.alt seenVinvertedabove-ar.init uni077E.init seenVinvertedabove-ar.medi uni077E.medi semicolon-ar uni061B seven-ar uni0667 seven-arinferior sevenarinferior seven-arsuperior sevenarsuperior seven-persian uni06F7 seven-persian.urdu uni06F7.urdu seven-persian.urduinferior uni06F7.urduinferior seven-persian.urdusuperior uni06F7.urdusuperior seven-persianinferior sevenpersianinferior seven-persiansuperior sevenpersiansuperior seveninferior uni2087 sevensuperior uni2077 sha-cy uni0448 sha-cy.loclBGR uni0448.loclBGR shadda-ar uni0651 shadedark dkshade shadedark.stypo dkshade.stypo shadelight ltshade shadelight.stypo ltshade.stypo shademedium shade shademedium.stypo shade.stypo shcha-cy uni0449 shcha-cy.loclBGR uni0449.loclBGR sheen-ar uni0634 sheen-ar.alt uni0634.alt sheen-ar.fina uniFEB6 sheen-ar.fina.alt uni0634.fina.alt sheen-ar.init uniFEB7 sheen-ar.medi uniFEB8 sheenDotbelow-ar uni06FA sheenDotbelow-ar.alt uni06FA.alt sheenDotbelow-ar.fina uni06FA.fina sheenDotbelow-ar.fina.alt uni06FA.fina.alt sheenDotbelow-ar.init uni06FA.init sheenDotbelow-ar.medi uni06FA.medi sheqel uni20AA shha-cy uni04BB shiftInControl uni240F shiftInControl.ss20 uni240F.ss20 shiftOutControl uni240E shiftOutControl.ss20 uni240E.ss20 shin-hb uni05E9 shindagesh-hb uniFB49 shindageshshindot-hb uniFB2C shindageshsindot-hb uniFB2D shindot-hb uni05C1 shinshindot-hb uniFB2A shinsindot-hb uniFB2B sigmafinal uni03C2 sindhiampersand-ar uni06FD sindhipostpositionmen-ar uni06FE sindot-hb uni05C2 six-ar uni0666 six-arinferior sixarinferior six-arsuperior sixarsuperior six-persian uni06F6 six-persianinferior sixpersianinferior six-persiansuperior sixpersiansuperior sixinferior uni2086 sixsuperior uni2076 softhyphen uni00AD softsign-cy uni044C softsign-cy.loclBGR uni044C.loclBGR spaceControl uni2420 spadeBlackSuit spade startOfHeadingControl uni2401 startOfHeadingControl.ss20 uni2401.ss20 startOfTextControl uni2402 startOfTextControl.ss20 uni2402.ss20 strictlyequivalentto uni2263 substituteControl uni241A substituteControl.ss20 uni241A.ss20 substituteFormTwoControl uni2426 sukun-ar uni0652 sunWithRays sun synchronousIdleControl uni2416 synchronousIdleControl.ss20 uni2416.ss20 tah-ar uni0637 tah-ar.fina uniFEC2 tah-ar.init uniFEC3 tah-ar.medi uniFEC4 tahThreedots-ar uni069F tahThreedots-ar.fina uni069F.fina tahThreedots-ar.init uni069F.init tahThreedots-ar.medi uni069F.medi tahTwodotsabove-ar uni08A3 tahTwodotsabove-ar.fina uni08A3.fina tahTwodotsabove-ar.init uni08A3.init tahTwodotsabove-ar.medi uni08A3.medi tahbelow-ar tahbelowar tahcenter-ar tahcenterar tav-hb uni05EA tavdagesh-hb uniFB4A tcedilla uni0163 tcheh-ar uni0686 tcheh-ar.fina uniFB7B tcheh-ar.init uniFB7C tcheh-ar.medi uniFB7D tchehDotabove-ar uni06BF tchehDotabove-ar.fina uni06BF.fina tchehDotabove-ar.init uni06BF.init tchehDotabove-ar.medi uni06BF.medi tcheheh-ar uni0687 tcheheh-ar.fina uniFB7F tcheheh-ar.init uniFB80 tcheheh-ar.medi uniFB81 tcommaaccent uni021B te-cy uni0442 te-cy.loclBGR uni0442.loclBGR teh-ar uni062A teh-ar.alt uni062A.alt teh-ar.fina uniFE96 teh-ar.fina.alt uni062A.fina.alt teh-ar.init uniFE97 teh-ar.init.alt uni062A.init.alt teh-ar.medi uniFE98 tehMarbuta-ar uni0629 tehMarbuta-ar.fina uniFE94 tehMarbutagoal-ar uni06C3 tehMarbutagoal-ar.fina uni06C3.fina tehRing-ar uni067C tehRing-ar.alt uni067C.alt tehRing-ar.fina uni067C.fina tehRing-ar.fina.alt uni067C.fina.alt tehRing-ar.init uni067C.init tehRing-ar.init.alt uni067C.init.alt tehRing-ar.medi uni067C.medi tehTehabove-ar uni08B8 tehTehabove-ar.alt uni08B8.alt tehTehabove-ar.fina uni08B8.fina tehTehabove-ar.fina.alt uni08B8.fina.alt tehTehabove-ar.init uni08B8.init tehTehabove-ar.init.alt uni08B8.init.alt tehTehabove-ar.medi uni08B8.medi tehThreedotsdown-ar uni067D tehThreedotsdown-ar.alt uni067D.alt tehThreedotsdown-ar.fina uni067D.fina tehThreedotsdown-ar.fina.alt uni067D.fina.alt tehThreedotsdown-ar.init uni067D.init tehThreedotsdown-ar.init.alt uni067D.init.alt tehThreedotsdown-ar.medi uni067D.medi tehThreedotsupbelow-ar uni0753 tehThreedotsupbelow-ar.alt uni0753.alt tehThreedotsupbelow-ar.fina uni0753.fina tehThreedotsupbelow-ar.fina.alt uni0753.fina.alt tehThreedotsupbelow-ar.init uni0753.init tehThreedotsupbelow-ar.init.alt uni0753.init.alt tehThreedotsupbelow-ar.medi uni0753.medi tehabove-ar.small tehabovear.small teheh-ar uni067F teheh-ar.alt uni067F.alt teheh-ar.fina uniFB63 teheh-ar.fina.alt uni067F.fina.alt teheh-ar.init uniFB64 teheh-ar.init.alt uni067F.init.alt teheh-ar.medi uniFB65 tenge uni20B8 tesh uni02A7 tet-hb uni05D8 tetdagesh-hb uniFB38 thal-ar uni0630 thal-ar.fina uniFEAC thalAlefabove-ar uniFC5B thalAlefabove-ar.fina uniFC5B.fina theh-ar uni062B theh-ar.alt uni062B.alt theh-ar.fina uniFE9A theh-ar.fina.alt uni062B.fina.alt theh-ar.init uniFE9B theh-ar.init.alt uni062B.init.alt theh-ar.medi uniFE9C thetamod uni1DBF thousandseparator-ar uni066C three-ar uni0663 three-arinferior threearinferior three-arsuperior threearsuperior three-persian uni06F3 three-persian.small01 uni06F3.small01 three-persianinferior threepersianinferior three-persiansuperior threepersiansuperior threedots-ar uni061E threedotsdownabove-ar threedotsdownabovear threedotsdownbelow-ar threedotsdownbelowar threedotsdowncenter-ar threedotsdowncenterar threedotsupabove-ar threedotsupabovear threedotsupabove-ar.v2 threedotsupabovear.v2 threedotsupbelow-ar threedotsupbelowar threedotsupcenter-ar threedotsupcenterar threeinferior uni2083 threesuperior uni00B3 topHalfBlackCircle uni2BCA topHalfBlackDiamond uni2B18 topHalfWhiteSquare uni2B13 topRightHalfWhiteSquare uni2B15 tsadi-hb uni05E6 tsadidagesh-hb uniFB46 tse-cy uni0446 tse-cy.loclBGR uni0446.loclBGR tshe-cy uni045B tteh-ar uni0679 tteh-ar.alt uni0679.alt tteh-ar.fina uniFB67 tteh-ar.fina.alt uni0679.fina.alt tteh-ar.init uniFB68 tteh-ar.init.alt uni0679.init.alt tteh-ar.medi uniFB69 tteheh-ar uni067A tteheh-ar.alt uni067A.alt tteheh-ar.fina uniFB5F tteheh-ar.fina.alt uni067A.fina.alt tteheh-ar.init uniFB60 tteheh-ar.init.alt uni067A.init.alt tteheh-ar.medi uniFB61 tugrik uni20AE two-ar uni0662 two-arinferior twoarinferior two-arsuperior twoarsuperior two-persian uni06F2 two-persian.small01 uni06F2.small01 two-persianinferior twopersianinferior two-persiansuperior twopersiansuperior twodotshorizontalabove-ar twodotshorizontalabovear twodotshorizontalabove-ar.v2 twodotshorizontalabovear.v2 twodotshorizontalbelow-ar twodotshorizontalbelowar twodotshorizontalcenter-ar twodotshorizontalcenterar twodotstahbelow-ar twodotstahbelowar twodotstahcenter-ar twodotstahcenterar twodotsverticalabove-ar twodotsverticalabovear twodotsverticalbelow-ar twodotsverticalbelowar twodotsverticalcenter-ar twodotsverticalcenterar twoinferior uni2082 twosuperior uni00B2 u-ar uni06C7 u-ar.fina uniFBD8 u-cy uni0443 uHamzaabove-ar uni0677 uHamzaabove-ar.fina uni0677.fina udotbelow uni1EE5 uhookabove uni1EE7 uhornacute uni1EE9 uhorndotbelow uni1EF1 uhorngrave uni1EEB uhornhookabove uni1EED uhorntilde uni1EEF umacron-cy uni04EF unitSeparatorControl uni241F upArrow arrowup upBlackSmallTriangle uni25B4 upBlackTriangle triagup upDashArrow uni21E1 upDownArrow arrowupdn upDownbaseArrow arrowupdnbse upLeftHalfBlackTriangle uni25ED upRightHalfBlackTriangle uni25EE upWhiteSmallTriangle uni25B5 upWhiteTriangle uni25B3 upWhiteTriangleWithDot uni25EC upperHalfArc uni25E0 upperHalfBlackWhiteCircle uni25D3 upperHalfBlock upblock upperHalfBlock.stypo upblock.stypo upperHalfInverseWhiteCircle uni25DA upperLeftAndLowerLeftAndLowerRightBlock uni2599 upperLeftAndLowerLeftAndLowerRightBlock.stypo uni2599.stypo upperLeftAndLowerRightBlock uni259A upperLeftAndLowerRightBlock.stypo uni259A.stypo upperLeftAndUpperRightAndLowerLeftBlock uni259B upperLeftAndUpperRightAndLowerLeftBlock.stypo uni259B.stypo upperLeftAndUpperRightAndLowerRightBlock uni259C upperLeftAndUpperRightAndLowerRightBlock.stypo uni259C.stypo upperLeftArc uni25DC upperLeftBlackTriangle uni25E4 upperLeftBlock uni2598 upperLeftBlock.stypo uni2598.stypo upperLeftDiagonalHalfBlackSquare uni25E9 upperLeftQuadrantWhiteCircle uni25F4 upperLeftTriangle uni25F8 upperLeftWhiteCircle uni25D5 upperOneEighthBlock uni2594 upperOneEighthBlock.stypo uni2594.stypo upperRightAndLowerLeftAndLowerRightBlock uni259F upperRightAndLowerLeftAndLowerRightBlock.stypo uni259F.stypo upperRightAndLowerLeftBlock uni259E upperRightAndLowerLeftBlock.stypo uni259E.stypo upperRightArc uni25DD upperRightBlackCircle uni25D4 upperRightBlackTriangle uni25E5 upperRightBlock uni259D upperRightBlock.stypo uni259D.stypo upperRightQuadrantWhiteCircle uni25F7 upperRightTriangle uni25F9 upperlefttolowerrightFillSquare uni25A7 upperrighttolowerleftFillSquare uni25A8 upsilon-latin uni028A ushort-cy uni045E ustraight-cy uni04AF ustraightstroke-cy uni04B1 vabove-ar uni065A vav-hb uni05D5 vavdagesh-hb uniFB35 vavholam-hb uniFB4B ve-ar uni06CB ve-ar.fina uniFBDF ve-cy uni0432 ve-cy.loclBGR uni0432.loclBGR vectorOrCrossProduct uni2A2F veh-ar uni06A4 veh-ar.alt uni06A4.alt veh-ar.fina uniFB6B veh-ar.fina.alt uni06A4.fina.alt veh-ar.init uniFB6C veh-ar.init.alt uni06A4.init.alt veh-ar.medi uniFB6D venus female verseComma-ar uni060E verticalBisectingLineWhiteSquare uni25EB verticalFillCircle uni25CD verticalFillSquare uni25A5 verticalTabulationControl uni240B verticalTabulationControl.ss20 uni240B.ss20 vhook uni028B vinvertedabove-ar uni065B vturned uni028C wasla-ar waslaar wavyhamzaabove-ar wavyhamzaabovear wavyhamzabelow-ar uni065F waw-ar uni0648 waw-ar.fina uniFEEE wawDotabove-ar uni06CF wawDotabove-ar.fina uni06CF.fina wawDotcenter-ar uni08AB wawDotcenter-ar.fina uni08AB.fina wawHamzaabove-ar uni0624 wawHamzaabove-ar.fina uniFE86 wawStraight-ar uni08B1 wawThreeAbove-ar uni0779 wawThreeAbove-ar.fina uni0779.fina wawTwoabove-ar uni0778 wawTwoabove-ar.fina uni0778.fina wawTwodots-ar uni06CA wawTwodots-ar.fina uni06CA.fina wawring-ar uni06C4 wawring-ar.fina uni06C4.fina whiteBullet openbullet whiteCircle circle whiteDiamond uni25C7 whiteHexagon uni2B21 whiteHorizontalEllipse uni2B2D whiteInBlackSquare uni25A3 whiteLargeSquare uni2B1C whiteLowerLeftQuadrantSquare uni25F1 whiteLowerRightQuadrantSquare uni25F2 whiteMediumDiamond uni2B26 whiteMediumLozenge uni2B28 whiteParallelogram uni25B1 whitePentagon uni2B20 whiteRect uni25AD whiteRoundedCornersSquare uni25A2 whiteSmallLozenge uni2B2B whiteSmallSquare uni25AB whiteSmilingFace smileface whiteSquare uni25A1 whiteUpperLeftQuadrantSquare uni25F0 whiteUpperRightQuadrantSquare uni25F3 whiteVerticalEllipse uni2B2F whiteVerticalRect uni25AF whiteVerysmallSquare uni2B1E wmod uni02B7 won uni20A9 ydotbelow uni1EF5 year-ar uni0601 yeh-ar uni064A yeh-ar.fina uniFEF2 yeh-ar.fina.alt uni064A.fina.alt yeh-ar.init uniFEF3 yeh-ar.init.alt uni064A.init.alt yeh-ar.medi uniFEF4 yeh-farsi uni06CC yeh-farsi.fina uniFBFD yeh-farsi.fina.alt uni06CC.fina.alt yeh-farsi.init uniFBFE yeh-farsi.init.alt uni06CC.init.alt yeh-farsi.medi uniFBFF yehFourbelow-farsi uni0777 yehFourbelow-farsi.fina uni0777.fina yehFourbelow-farsi.fina.alt uni0777.fina.alt yehFourbelow-farsi.init uni0777.init yehFourbelow-farsi.init.alt uni0777.init.alt yehFourbelow-farsi.medi uni0777.medi yehHamzaabove-ar uni0626 yehHamzaabove-ar.fina uniFE8A yehHamzaabove-ar.fina.alt uni0626.fina.alt yehHamzaabove-ar.init uniFE8B yehHamzaabove-ar.init.alt uni0626.init.alt yehHamzaabove-ar.medi uniFE8C yehKashmiri-ar uni0620 yehKashmiri-ar.fina uni0620.fina yehKashmiri-ar.fina.alt uni0620.fina.alt yehKashmiri-ar.init uni0620.init yehKashmiri-ar.init.alt uni0620.init.alt yehKashmiri-ar.medi uni0620.medi yehRohingya-ar uni08AC yehRohingya-ar.fina uni08AC.fina yehRohingya-ar.isol uni08AC.isol yehTail-ar uni06CD yehTail-ar.fina uni06CD.fina yehTail-ar.fina.alt uni06CD.fina.alt yehThreeabove-farsi uni0776 yehThreeabove-farsi.fina uni0776.fina yehThreeabove-farsi.fina.alt uni0776.fina.alt yehThreeabove-farsi.init uni0776.init yehThreeabove-farsi.init.alt uni0776.init.alt yehThreeabove-farsi.medi uni0776.medi yehThreedotsabove-farsi uni063F yehThreedotsabove-farsi.fina uni063F.fina yehThreedotsabove-farsi.fina.alt uni063F.fina.alt yehThreedotsabove-farsi.init uni063F.init yehThreedotsabove-farsi.init.alt uni063F.init.alt yehThreedotsabove-farsi.medi uni063F.medi yehThreedotsbelow-ar uni06D1 yehThreedotsbelow-ar.fina uni06D1.fina yehThreedotsbelow-ar.fina.alt uni06D1.fina.alt yehThreedotsbelow-ar.init uni06D1.init yehThreedotsbelow-ar.init.alt uni06D1.init.alt yehThreedotsbelow-ar.medi uni06D1.medi yehTwoabove-farsi uni0775 yehTwoabove-farsi.fina uni0775.fina yehTwoabove-farsi.fina.alt uni0775.fina.alt yehTwoabove-farsi.init uni0775.init yehTwoabove-farsi.init.alt uni0775.init.alt yehTwoabove-farsi.medi uni0775.medi yehTwodotsabove-farsi uni063E yehTwodotsabove-farsi.fina uni063E.fina yehTwodotsabove-farsi.fina.alt uni063E.fina.alt yehTwodotsabove-farsi.init uni063E.init yehTwodotsabove-farsi.init.alt uni063E.init.alt yehTwodotsabove-farsi.medi uni063E.medi yehTwodotsbelowDotabove-ar uni08A9 yehTwodotsbelowDotabove-ar.fina uni08A9.fina yehTwodotsbelowDotabove-ar.init uni08A9.init yehTwodotsbelowDotabove-ar.init.alt uni08A9.init.alt yehTwodotsbelowDotabove-ar.medi uni08A9.medi yehTwodotsbelowHamzaabove-ar uni08A8 yehTwodotsbelowHamzaabove-ar.fina uni08A8.fina yehTwodotsbelowHamzaabove-ar.init uni08A8.init yehTwodotsbelowHamzaabove-ar.init.alt uni08A8.init.alt yehTwodotsbelowHamzaabove-ar.medi uni08A8.medi yehTwodotsbelowNoonabove-ar uni08BA yehTwodotsbelowNoonabove-ar.fina uni08BA.fina yehTwodotsbelowNoonabove-ar.fina.alt uni08BA.fina.alt yehTwodotsbelowNoonabove-ar.init uni08BA.init yehTwodotsbelowNoonabove-ar.init.alt uni08BA.init.alt yehTwodotsbelowNoonabove-ar.medi uni08BA.medi yehVabove-ar uni06CE yehVabove-ar.fina uni06CE.fina yehVabove-ar.fina.alt uni06CE.fina.alt yehVabove-ar.init uni06CE.init yehVabove-ar.init.alt uni06CE.init.alt yehVabove-ar.medi uni06CE.medi yehVinverted-farsi uni063D yehVinverted-farsi.fina uni063D.fina yehVinverted-farsi.fina.alt uni063D.fina.alt yehVinverted-farsi.init uni063D.init yehVinverted-farsi.init.alt uni063D.init.alt yehVinverted-farsi.medi uni063D.medi yehbarree-ar uni06D2 yehbarree-ar.fina uniFBAF yehbarreeHamzaabove-ar uni06D3 yehbarreeHamzaabove-ar.fina uniFBB1 yehbarreeThreeabove-ar uni077B yehbarreeThreeabove-ar.fina uni077B.fina yehbarreeThreeabove-ar.init uni077B.init yehbarreeThreeabove-ar.init.alt uni077B.init.alt yehbarreeThreeabove-ar.medi uni077B.medi yehbarreeTwoabove-ar uni077A yehbarreeTwoabove-ar.fina uni077A.fina yehbarreeTwoabove-ar.init uni077A.init yehbarreeTwoabove-ar.init.alt uni077A.init.alt yehbarreeTwoabove-ar.medi uni077A.medi yeru-cy uni044B yhookabove uni1EF7 yi-cy uni0457 ymacron uni0233 ymod uni02B8 yod-hb uni05D9 yoddagesh-hb uniFB39 ytilde uni1EF9 yu-ar uni06C8 yu-ar.fina uniFBDC zah-ar uni0638 zah-ar.fina uniFEC6 zah-ar.init uniFEC7 zah-ar.medi uniFEC8 zain-ar uni0632 zain-ar.fina uniFEB0 zainVInvertedabove-ar zainVInvertedabovear zainVInvertedabove-ar.fina zainVInvertedabovear.fina zayin-hb uni05D6 zayindagesh-hb uniFB36 ze-cy uni0437 ze-cy.loclBGR uni0437.loclBGR zero-ar uni0660 zero-arinferior zeroarinferior zero-arsuperior zeroarsuperior zero-persian uni06F0 zero-persianinferior zeropersianinferior zero-persiansuperior zeropersiansuperior zeroinferior uni2080 zerosuperior uni2070 zhe-cy uni0436 zhe-cy.loclBGR uni0436.loclBGR zhedescender-cy uni0497 zmod uni1DBB checkerBoardDeleteApple2 uni2427 checkerBoardDeleteTrs80 uni2428 checkerBoardDeleteAmstradCpc uni2429 checkerBoardDeleteAmstradCpc.stypo uni2429.stypo checkerBoardFill u1FB95 checkerBoardFill.stypo u1FB95.stypo checkerBoardFillInverse u1FB96 checkerBoardFillInverse.stypo u1FB96.stypo blockQuadrant-UC u1FBE4 blockQuadrant-UC.stypo u1FBE4.stypo blockQuadrant-LC u1FBE5 blockQuadrant-LC.stypo u1FBE5.stypo blockQuadrant-ML u1FBE6 blockQuadrant-ML.stypo u1FBE6.stypo blockQuadrant-MR u1FBE7 blockQuadrant-MR.stypo u1FBE7.stypo blockTriangle-1 u1FB6D blockTriangle-1.stypo u1FB6D.stypo blockTriangle-2 u1FB6C blockTriangle-2.stypo u1FB6C.stypo blockTriangle-3 u1FB6E blockTriangle-3.stypo u1FB6E.stypo blockTriangle-4 u1FB6F blockTriangle-4.stypo u1FB6F.stypo blockTriangle-14 u1FB9A blockTriangle-14.stypo u1FB9A.stypo blockTriangle-23 u1FB9B blockTriangle-23.stypo u1FB9B.stypo blockTriangle-123 u1FB6B blockTriangle-123.stypo u1FB6B.stypo blockTriangle-124 u1FB6A blockTriangle-124.stypo u1FB6A.stypo blockTriangle-134 u1FB68 blockTriangle-134.stypo u1FB68.stypo blockTriangle-234 u1FB69 blockTriangle-234.stypo u1FB69.stypo blockCircle-1 u1FBEF blockCircle-1.stypo u1FBEF.stypo blockCircle-2 u1FBEC blockCircle-2.stypo u1FBEC.stypo blockCircle-3 u1FBED blockCircle-3.stypo u1FBED.stypo blockCircle-4 u1FBEE blockCircle-4.stypo u1FBEE.stypo blockCircle-UC u1FBE8 blockCircle-UC.stypo u1FBE8.stypo blockCircle-LC u1FBEA blockCircle-LC.stypo u1FBEA.stypo blockCircle-ML u1FBEB blockCircle-ML.stypo u1FBEB.stypo blockCircle-MR u1FBE9 blockCircle-MR.stypo u1FBE9.stypo blockSextant-1 u1FB00 blockSextant-1.stypo u1FB00.stypo blockSextant-2 u1FB01 blockSextant-2.stypo u1FB01.stypo blockSextant-12 u1FB02 blockSextant-12.stypo u1FB02.stypo blockSextant-3 u1FB03 blockSextant-3.stypo u1FB03.stypo blockSextant-13 u1FB04 blockSextant-13.stypo u1FB04.stypo blockSextant-23 u1FB05 blockSextant-23.stypo u1FB05.stypo blockSextant-123 u1FB06 blockSextant-123.stypo u1FB06.stypo blockSextant-4 u1FB07 blockSextant-4.stypo u1FB07.stypo blockSextant-14 u1FB08 blockSextant-14.stypo u1FB08.stypo blockSextant-24 u1FB09 blockSextant-24.stypo u1FB09.stypo blockSextant-124 u1FB0A blockSextant-124.stypo u1FB0A.stypo blockSextant-34 u1FB0B blockSextant-34.stypo u1FB0B.stypo blockSextant-134 u1FB0C blockSextant-134.stypo u1FB0C.stypo blockSextant-234 u1FB0D blockSextant-234.stypo u1FB0D.stypo blockSextant-1234 u1FB0E blockSextant-1234.stypo u1FB0E.stypo blockSextant-5 u1FB0F blockSextant-5.stypo u1FB0F.stypo blockSextant-15 u1FB10 blockSextant-15.stypo u1FB10.stypo blockSextant-25 u1FB11 blockSextant-25.stypo u1FB11.stypo blockSextant-125 u1FB12 blockSextant-125.stypo u1FB12.stypo blockSextant-35 u1FB13 blockSextant-35.stypo u1FB13.stypo blockSextant-235 u1FB14 blockSextant-235.stypo u1FB14.stypo blockSextant-1235 u1FB15 blockSextant-1235.stypo u1FB15.stypo blockSextant-45 u1FB16 blockSextant-45.stypo u1FB16.stypo blockSextant-145 u1FB17 blockSextant-145.stypo u1FB17.stypo blockSextant-245 u1FB18 blockSextant-245.stypo u1FB18.stypo blockSextant-1245 u1FB19 blockSextant-1245.stypo u1FB19.stypo blockSextant-345 u1FB1A blockSextant-345.stypo u1FB1A.stypo blockSextant-1345 u1FB1B blockSextant-1345.stypo u1FB1B.stypo blockSextant-2345 u1FB1C blockSextant-2345.stypo u1FB1C.stypo blockSextant-12345 u1FB1D blockSextant-12345.stypo u1FB1D.stypo blockSextant-6 u1FB1E blockSextant-6.stypo u1FB1E.stypo blockSextant-16 u1FB1F blockSextant-16.stypo u1FB1F.stypo blockSextant-26 u1FB20 blockSextant-26.stypo u1FB20.stypo blockSextant-126 u1FB21 blockSextant-126.stypo u1FB21.stypo blockSextant-36 u1FB22 blockSextant-36.stypo u1FB22.stypo blockSextant-136 u1FB23 blockSextant-136.stypo u1FB23.stypo blockSextant-236 u1FB24 blockSextant-236.stypo u1FB24.stypo blockSextant-1236 u1FB25 blockSextant-1236.stypo u1FB25.stypo blockSextant-46 u1FB26 blockSextant-46.stypo u1FB26.stypo blockSextant-146 u1FB27 blockSextant-146.stypo u1FB27.stypo blockSextant-1246 u1FB28 blockSextant-1246.stypo u1FB28.stypo blockSextant-346 u1FB29 blockSextant-346.stypo u1FB29.stypo blockSextant-1346 u1FB2A blockSextant-1346.stypo u1FB2A.stypo blockSextant-2346 u1FB2B blockSextant-2346.stypo u1FB2B.stypo blockSextant-12346 u1FB2C blockSextant-12346.stypo u1FB2C.stypo blockSextant-56 u1FB2D blockSextant-56.stypo u1FB2D.stypo blockSextant-156 u1FB2E blockSextant-156.stypo u1FB2E.stypo blockSextant-256 u1FB2F blockSextant-256.stypo u1FB2F.stypo blockSextant-1256 u1FB30 blockSextant-1256.stypo u1FB30.stypo blockSextant-356 u1FB31 blockSextant-356.stypo u1FB31.stypo blockSextant-1356 u1FB32 blockSextant-1356.stypo u1FB32.stypo blockSextant-2356 u1FB33 blockSextant-2356.stypo u1FB33.stypo blockSextant-12356 u1FB34 blockSextant-12356.stypo u1FB34.stypo blockSextant-456 u1FB35 blockSextant-456.stypo u1FB35.stypo blockSextant-1456 u1FB36 blockSextant-1456.stypo u1FB36.stypo blockSextant-2456 u1FB37 blockSextant-2456.stypo u1FB37.stypo blockSextant-12456 u1FB38 blockSextant-12456.stypo u1FB38.stypo blockSextant-3456 u1FB39 blockSextant-3456.stypo u1FB39.stypo blockSextant-13456 u1FB3A blockSextant-13456.stypo u1FB3A.stypo blockSextant-23456 u1FB3B blockSextant-23456.stypo u1FB3B.stypo blockDiagonal-1FB3C u1FB3C blockDiagonal-1FB3C.stypo u1FB3C.stypo blockDiagonal-1FB3D u1FB3D blockDiagonal-1FB3D.stypo u1FB3D.stypo blockDiagonal-1FB3E u1FB3E blockDiagonal-1FB3E.stypo u1FB3E.stypo blockDiagonal-1FB3F u1FB3F blockDiagonal-1FB3F.stypo u1FB3F.stypo blockDiagonal-1FB40 u1FB40 blockDiagonal-1FB40.stypo u1FB40.stypo blockDiagonal-1FB41 u1FB41 blockDiagonal-1FB41.stypo u1FB41.stypo blockDiagonal-1FB42 u1FB42 blockDiagonal-1FB42.stypo u1FB42.stypo blockDiagonal-1FB43 u1FB43 blockDiagonal-1FB43.stypo u1FB43.stypo blockDiagonal-1FB44 u1FB44 blockDiagonal-1FB44.stypo u1FB44.stypo blockDiagonal-1FB45 u1FB45 blockDiagonal-1FB45.stypo u1FB45.stypo blockDiagonal-1FB46 u1FB46 blockDiagonal-1FB46.stypo u1FB46.stypo blockDiagonal-1FB47 u1FB47 blockDiagonal-1FB47.stypo u1FB47.stypo blockDiagonal-1FB48 u1FB48 blockDiagonal-1FB48.stypo u1FB48.stypo blockDiagonal-1FB49 u1FB49 blockDiagonal-1FB49.stypo u1FB49.stypo blockDiagonal-1FB4A u1FB4A blockDiagonal-1FB4A.stypo u1FB4A.stypo blockDiagonal-1FB4B u1FB4B blockDiagonal-1FB4B.stypo u1FB4B.stypo blockDiagonal-1FB4C u1FB4C blockDiagonal-1FB4C.stypo u1FB4C.stypo blockDiagonal-1FB4D u1FB4D blockDiagonal-1FB4D.stypo u1FB4D.stypo blockDiagonal-1FB4E u1FB4E blockDiagonal-1FB4E.stypo u1FB4E.stypo blockDiagonal-1FB4F u1FB4F blockDiagonal-1FB4F.stypo u1FB4F.stypo blockDiagonal-1FB50 u1FB50 blockDiagonal-1FB50.stypo u1FB50.stypo blockDiagonal-1FB51 u1FB51 blockDiagonal-1FB51.stypo u1FB51.stypo blockDiagonal-1FB52 u1FB52 blockDiagonal-1FB52.stypo u1FB52.stypo blockDiagonal-1FB53 u1FB53 blockDiagonal-1FB53.stypo u1FB53.stypo blockDiagonal-1FB54 u1FB54 blockDiagonal-1FB54.stypo u1FB54.stypo blockDiagonal-1FB55 u1FB55 blockDiagonal-1FB55.stypo u1FB55.stypo blockDiagonal-1FB56 u1FB56 blockDiagonal-1FB56.stypo u1FB56.stypo blockDiagonal-1FB57 u1FB57 blockDiagonal-1FB57.stypo u1FB57.stypo blockDiagonal-1FB58 u1FB58 blockDiagonal-1FB58.stypo u1FB58.stypo blockDiagonal-1FB59 u1FB59 blockDiagonal-1FB59.stypo u1FB59.stypo blockDiagonal-1FB5A u1FB5A blockDiagonal-1FB5A.stypo u1FB5A.stypo blockDiagonal-1FB5B u1FB5B blockDiagonal-1FB5B.stypo u1FB5B.stypo blockDiagonal-1FB5C u1FB5C blockDiagonal-1FB5C.stypo u1FB5C.stypo blockDiagonal-1FB5D u1FB5D blockDiagonal-1FB5D.stypo u1FB5D.stypo blockDiagonal-1FB5E u1FB5E blockDiagonal-1FB5E.stypo u1FB5E.stypo blockDiagonal-1FB5F u1FB5F blockDiagonal-1FB5F.stypo u1FB5F.stypo blockDiagonal-1FB60 u1FB60 blockDiagonal-1FB60.stypo u1FB60.stypo blockDiagonal-1FB61 u1FB61 blockDiagonal-1FB61.stypo u1FB61.stypo blockDiagonal-1FB62 u1FB62 blockDiagonal-1FB62.stypo u1FB62.stypo blockDiagonal-1FB63 u1FB63 blockDiagonal-1FB63.stypo u1FB63.stypo blockDiagonal-1FB64 u1FB64 blockDiagonal-1FB64.stypo u1FB64.stypo blockDiagonal-1FB65 u1FB65 blockDiagonal-1FB65.stypo u1FB65.stypo blockDiagonal-1FB66 u1FB66 blockDiagonal-1FB66.stypo u1FB66.stypo blockDiagonal-1FB67 u1FB67 blockDiagonal-1FB67.stypo u1FB67.stypo blockOctant-1 u1CEA8 blockOctant-1.stypo u1CEA8.stypo blockOctant-2 u1CEAB blockOctant-2.stypo u1CEAB.stypo blockOctant-12 u1FB82 blockOctant-12.stypo u1FB82.stypo blockOctant-3 u1CD00 blockOctant-3.stypo u1CD00.stypo blockOctant-23 u1CD01 blockOctant-23.stypo u1CD01.stypo blockOctant-123 u1CD02 blockOctant-123.stypo u1CD02.stypo blockOctant-4 u1CD03 blockOctant-4.stypo u1CD03.stypo blockOctant-14 u1CD04 blockOctant-14.stypo u1CD04.stypo blockOctant-124 u1CD05 blockOctant-124.stypo u1CD05.stypo blockOctant-34 u1CD06 blockOctant-34.stypo u1CD06.stypo blockOctant-134 u1CD07 blockOctant-134.stypo u1CD07.stypo blockOctant-234 u1CD08 blockOctant-234.stypo u1CD08.stypo blockOctant-5 u1CD09 blockOctant-5.stypo u1CD09.stypo blockOctant-15 u1CD0A blockOctant-15.stypo u1CD0A.stypo blockOctant-25 u1CD0B blockOctant-25.stypo u1CD0B.stypo blockOctant-125 u1CD0C blockOctant-125.stypo u1CD0C.stypo blockOctant-135 u1CD0D blockOctant-135.stypo u1CD0D.stypo blockOctant-235 u1CD0E blockOctant-235.stypo u1CD0E.stypo blockOctant-1235 u1CD0F blockOctant-1235.stypo u1CD0F.stypo blockOctant-45 u1CD10 blockOctant-45.stypo u1CD10.stypo blockOctant-145 u1CD11 blockOctant-145.stypo u1CD11.stypo blockOctant-245 u1CD12 blockOctant-245.stypo u1CD12.stypo blockOctant-1245 u1CD13 blockOctant-1245.stypo u1CD13.stypo blockOctant-345 u1CD14 blockOctant-345.stypo u1CD14.stypo blockOctant-1345 u1CD15 blockOctant-1345.stypo u1CD15.stypo blockOctant-2345 u1CD16 blockOctant-2345.stypo u1CD16.stypo blockOctant-12345 u1CD17 blockOctant-12345.stypo u1CD17.stypo blockOctant-6 u1CD18 blockOctant-6.stypo u1CD18.stypo blockOctant-16 u1CD19 blockOctant-16.stypo u1CD19.stypo blockOctant-26 u1CD1A blockOctant-26.stypo u1CD1A.stypo blockOctant-126 u1CD1B blockOctant-126.stypo u1CD1B.stypo blockOctant-36 u1CD1C blockOctant-36.stypo u1CD1C.stypo blockOctant-136 u1CD1D blockOctant-136.stypo u1CD1D.stypo blockOctant-236 u1CD1E blockOctant-236.stypo u1CD1E.stypo blockOctant-1236 u1CD1F blockOctant-1236.stypo u1CD1F.stypo blockOctant-146 u1CD20 blockOctant-146.stypo u1CD20.stypo blockOctant-246 u1CD21 blockOctant-246.stypo u1CD21.stypo blockOctant-1246 u1CD22 blockOctant-1246.stypo u1CD22.stypo blockOctant-346 u1CD23 blockOctant-346.stypo u1CD23.stypo blockOctant-1346 u1CD24 blockOctant-1346.stypo u1CD24.stypo blockOctant-2346 u1CD25 blockOctant-2346.stypo u1CD25.stypo blockOctant-12346 u1CD26 blockOctant-12346.stypo u1CD26.stypo blockOctant-56 u1CD27 blockOctant-56.stypo u1CD27.stypo blockOctant-156 u1CD28 blockOctant-156.stypo u1CD28.stypo blockOctant-256 u1CD29 blockOctant-256.stypo u1CD29.stypo blockOctant-1256 u1CD2A blockOctant-1256.stypo u1CD2A.stypo blockOctant-356 u1CD2B blockOctant-356.stypo u1CD2B.stypo blockOctant-1356 u1CD2C blockOctant-1356.stypo u1CD2C.stypo blockOctant-2356 u1CD2D blockOctant-2356.stypo u1CD2D.stypo blockOctant-12356 u1CD2E blockOctant-12356.stypo u1CD2E.stypo blockOctant-456 u1CD2F blockOctant-456.stypo u1CD2F.stypo blockOctant-1456 u1CD30 blockOctant-1456.stypo u1CD30.stypo blockOctant-2456 u1CD31 blockOctant-2456.stypo u1CD31.stypo blockOctant-12456 u1CD32 blockOctant-12456.stypo u1CD32.stypo blockOctant-3456 u1CD33 blockOctant-3456.stypo u1CD33.stypo blockOctant-13456 u1CD34 blockOctant-13456.stypo u1CD34.stypo blockOctant-23456 u1CD35 blockOctant-23456.stypo u1CD35.stypo blockOctant-123456 u1FB85 blockOctant-123456.stypo u1FB85.stypo blockOctant-7 u1CEA3 blockOctant-7.stypo u1CEA3.stypo blockOctant-17 u1CD36 blockOctant-17.stypo u1CD36.stypo blockOctant-27 u1CD37 blockOctant-27.stypo u1CD37.stypo blockOctant-127 u1CD38 blockOctant-127.stypo u1CD38.stypo blockOctant-37 u1CD39 blockOctant-37.stypo u1CD39.stypo blockOctant-137 u1CD3A blockOctant-137.stypo u1CD3A.stypo blockOctant-237 u1CD3B blockOctant-237.stypo u1CD3B.stypo blockOctant-1237 u1CD3C blockOctant-1237.stypo u1CD3C.stypo blockOctant-47 u1CD3D blockOctant-47.stypo u1CD3D.stypo blockOctant-147 u1CD3E blockOctant-147.stypo u1CD3E.stypo blockOctant-247 u1CD3F blockOctant-247.stypo u1CD3F.stypo blockOctant-1247 u1CD40 blockOctant-1247.stypo u1CD40.stypo blockOctant-347 u1CD41 blockOctant-347.stypo u1CD41.stypo blockOctant-1347 u1CD42 blockOctant-1347.stypo u1CD42.stypo blockOctant-2347 u1CD43 blockOctant-2347.stypo u1CD43.stypo blockOctant-12347 u1CD44 blockOctant-12347.stypo u1CD44.stypo blockOctant-157 u1CD45 blockOctant-157.stypo u1CD45.stypo blockOctant-257 u1CD46 blockOctant-257.stypo u1CD46.stypo blockOctant-1257 u1CD47 blockOctant-1257.stypo u1CD47.stypo blockOctant-357 u1CD48 blockOctant-357.stypo u1CD48.stypo blockOctant-2357 u1CD49 blockOctant-2357.stypo u1CD49.stypo blockOctant-12357 u1CD4A blockOctant-12357.stypo u1CD4A.stypo blockOctant-457 u1CD4B blockOctant-457.stypo u1CD4B.stypo blockOctant-1457 u1CD4C blockOctant-1457.stypo u1CD4C.stypo blockOctant-12457 u1CD4D blockOctant-12457.stypo u1CD4D.stypo blockOctant-3457 u1CD4E blockOctant-3457.stypo u1CD4E.stypo blockOctant-13457 u1CD4F blockOctant-13457.stypo u1CD4F.stypo blockOctant-23457 u1CD50 blockOctant-23457.stypo u1CD50.stypo blockOctant-67 u1CD51 blockOctant-67.stypo u1CD51.stypo blockOctant-167 u1CD52 blockOctant-167.stypo u1CD52.stypo blockOctant-267 u1CD53 blockOctant-267.stypo u1CD53.stypo blockOctant-1267 u1CD54 blockOctant-1267.stypo u1CD54.stypo blockOctant-367 u1CD55 blockOctant-367.stypo u1CD55.stypo blockOctant-1367 u1CD56 blockOctant-1367.stypo u1CD56.stypo blockOctant-2367 u1CD57 blockOctant-2367.stypo u1CD57.stypo blockOctant-12367 u1CD58 blockOctant-12367.stypo u1CD58.stypo blockOctant-467 u1CD59 blockOctant-467.stypo u1CD59.stypo blockOctant-1467 u1CD5A blockOctant-1467.stypo u1CD5A.stypo blockOctant-2467 u1CD5B blockOctant-2467.stypo u1CD5B.stypo blockOctant-12467 u1CD5C blockOctant-12467.stypo u1CD5C.stypo blockOctant-3467 u1CD5D blockOctant-3467.stypo u1CD5D.stypo blockOctant-13467 u1CD5E blockOctant-13467.stypo u1CD5E.stypo blockOctant-23467 u1CD5F blockOctant-23467.stypo u1CD5F.stypo blockOctant-123467 u1CD60 blockOctant-123467.stypo u1CD60.stypo blockOctant-567 u1CD61 blockOctant-567.stypo u1CD61.stypo blockOctant-1567 u1CD62 blockOctant-1567.stypo u1CD62.stypo blockOctant-2567 u1CD63 blockOctant-2567.stypo u1CD63.stypo blockOctant-12567 u1CD64 blockOctant-12567.stypo u1CD64.stypo blockOctant-3567 u1CD65 blockOctant-3567.stypo u1CD65.stypo blockOctant-13567 u1CD66 blockOctant-13567.stypo u1CD66.stypo blockOctant-23567 u1CD67 blockOctant-23567.stypo u1CD67.stypo blockOctant-123567 u1CD68 blockOctant-123567.stypo u1CD68.stypo blockOctant-4567 u1CD69 blockOctant-4567.stypo u1CD69.stypo blockOctant-14567 u1CD6A blockOctant-14567.stypo u1CD6A.stypo blockOctant-24567 u1CD6B blockOctant-24567.stypo u1CD6B.stypo blockOctant-124567 u1CD6C blockOctant-124567.stypo u1CD6C.stypo blockOctant-34567 u1CD6D blockOctant-34567.stypo u1CD6D.stypo blockOctant-134567 u1CD6E blockOctant-134567.stypo u1CD6E.stypo blockOctant-234567 u1CD6F blockOctant-234567.stypo u1CD6F.stypo blockOctant-1234567 u1CD70 blockOctant-1234567.stypo u1CD70.stypo blockOctant-8 u1CEA0 blockOctant-8.stypo u1CEA0.stypo blockOctant-18 u1CD71 blockOctant-18.stypo u1CD71.stypo blockOctant-28 u1CD72 blockOctant-28.stypo u1CD72.stypo blockOctant-128 u1CD73 blockOctant-128.stypo u1CD73.stypo blockOctant-38 u1CD74 blockOctant-38.stypo u1CD74.stypo blockOctant-138 u1CD75 blockOctant-138.stypo u1CD75.stypo blockOctant-238 u1CD76 blockOctant-238.stypo u1CD76.stypo blockOctant-1238 u1CD77 blockOctant-1238.stypo u1CD77.stypo blockOctant-48 u1CD78 blockOctant-48.stypo u1CD78.stypo blockOctant-148 u1CD79 blockOctant-148.stypo u1CD79.stypo blockOctant-248 u1CD7A blockOctant-248.stypo u1CD7A.stypo blockOctant-1248 u1CD7B blockOctant-1248.stypo u1CD7B.stypo blockOctant-348 u1CD7C blockOctant-348.stypo u1CD7C.stypo blockOctant-1348 u1CD7D blockOctant-1348.stypo u1CD7D.stypo blockOctant-2348 u1CD7E blockOctant-2348.stypo u1CD7E.stypo blockOctant-12348 u1CD7F blockOctant-12348.stypo u1CD7F.stypo blockOctant-58 u1CD80 blockOctant-58.stypo u1CD80.stypo blockOctant-158 u1CD81 blockOctant-158.stypo u1CD81.stypo blockOctant-258 u1CD82 blockOctant-258.stypo u1CD82.stypo blockOctant-1258 u1CD83 blockOctant-1258.stypo u1CD83.stypo blockOctant-358 u1CD84 blockOctant-358.stypo u1CD84.stypo blockOctant-1358 u1CD85 blockOctant-1358.stypo u1CD85.stypo blockOctant-2358 u1CD86 blockOctant-2358.stypo u1CD86.stypo blockOctant-12358 u1CD87 blockOctant-12358.stypo u1CD87.stypo blockOctant-458 u1CD88 blockOctant-458.stypo u1CD88.stypo blockOctant-1458 u1CD89 blockOctant-1458.stypo u1CD89.stypo blockOctant-2458 u1CD8A blockOctant-2458.stypo u1CD8A.stypo blockOctant-12458 u1CD8B blockOctant-12458.stypo u1CD8B.stypo blockOctant-3458 u1CD8C blockOctant-3458.stypo u1CD8C.stypo blockOctant-13458 u1CD8D blockOctant-13458.stypo u1CD8D.stypo blockOctant-23458 u1CD8E blockOctant-23458.stypo u1CD8E.stypo blockOctant-123458 u1CD8F blockOctant-123458.stypo u1CD8F.stypo blockOctant-168 u1CD90 blockOctant-168.stypo u1CD90.stypo blockOctant-268 u1CD91 blockOctant-268.stypo u1CD91.stypo blockOctant-1268 u1CD92 blockOctant-1268.stypo u1CD92.stypo blockOctant-368 u1CD93 blockOctant-368.stypo u1CD93.stypo blockOctant-2368 u1CD94 blockOctant-2368.stypo u1CD94.stypo blockOctant-12368 u1CD95 blockOctant-12368.stypo u1CD95.stypo blockOctant-468 u1CD96 blockOctant-468.stypo u1CD96.stypo blockOctant-1468 u1CD97 blockOctant-1468.stypo u1CD97.stypo blockOctant-12468 u1CD98 blockOctant-12468.stypo u1CD98.stypo blockOctant-3468 u1CD99 blockOctant-3468.stypo u1CD99.stypo blockOctant-13468 u1CD9A blockOctant-13468.stypo u1CD9A.stypo blockOctant-23468 u1CD9B blockOctant-23468.stypo u1CD9B.stypo blockOctant-568 u1CD9C blockOctant-568.stypo u1CD9C.stypo blockOctant-1568 u1CD9D blockOctant-1568.stypo u1CD9D.stypo blockOctant-2568 u1CD9E blockOctant-2568.stypo u1CD9E.stypo blockOctant-12568 u1CD9F blockOctant-12568.stypo u1CD9F.stypo blockOctant-3568 u1CDA0 blockOctant-3568.stypo u1CDA0.stypo blockOctant-13568 u1CDA1 blockOctant-13568.stypo u1CDA1.stypo blockOctant-23568 u1CDA2 blockOctant-23568.stypo u1CDA2.stypo blockOctant-123568 u1CDA3 blockOctant-123568.stypo u1CDA3.stypo blockOctant-4568 u1CDA4 blockOctant-4568.stypo u1CDA4.stypo blockOctant-14568 u1CDA5 blockOctant-14568.stypo u1CDA5.stypo blockOctant-24568 u1CDA6 blockOctant-24568.stypo u1CDA6.stypo blockOctant-124568 u1CDA7 blockOctant-124568.stypo u1CDA7.stypo blockOctant-34568 u1CDA8 blockOctant-34568.stypo u1CDA8.stypo blockOctant-134568 u1CDA9 blockOctant-134568.stypo u1CDA9.stypo blockOctant-234568 u1CDAA blockOctant-234568.stypo u1CDAA.stypo blockOctant-1234568 u1CDAB blockOctant-1234568.stypo u1CDAB.stypo blockOctant-178 u1CDAC blockOctant-178.stypo u1CDAC.stypo blockOctant-278 u1CDAD blockOctant-278.stypo u1CDAD.stypo blockOctant-1278 u1CDAE blockOctant-1278.stypo u1CDAE.stypo blockOctant-378 u1CDAF blockOctant-378.stypo u1CDAF.stypo blockOctant-1378 u1CDB0 blockOctant-1378.stypo u1CDB0.stypo blockOctant-2378 u1CDB1 blockOctant-2378.stypo u1CDB1.stypo blockOctant-12378 u1CDB2 blockOctant-12378.stypo u1CDB2.stypo blockOctant-478 u1CDB3 blockOctant-478.stypo u1CDB3.stypo blockOctant-1478 u1CDB4 blockOctant-1478.stypo u1CDB4.stypo blockOctant-2478 u1CDB5 blockOctant-2478.stypo u1CDB5.stypo blockOctant-12478 u1CDB6 blockOctant-12478.stypo u1CDB6.stypo blockOctant-3478 u1CDB7 blockOctant-3478.stypo u1CDB7.stypo blockOctant-13478 u1CDB8 blockOctant-13478.stypo u1CDB8.stypo blockOctant-23478 u1CDB9 blockOctant-23478.stypo u1CDB9.stypo blockOctant-123478 u1CDBA blockOctant-123478.stypo u1CDBA.stypo blockOctant-578 u1CDBB blockOctant-578.stypo u1CDBB.stypo blockOctant-1578 u1CDBC blockOctant-1578.stypo u1CDBC.stypo blockOctant-2578 u1CDBD blockOctant-2578.stypo u1CDBD.stypo blockOctant-12578 u1CDBE blockOctant-12578.stypo u1CDBE.stypo blockOctant-3578 u1CDBF blockOctant-3578.stypo u1CDBF.stypo blockOctant-13578 u1CDC0 blockOctant-13578.stypo u1CDC0.stypo blockOctant-23578 u1CDC1 blockOctant-23578.stypo u1CDC1.stypo blockOctant-123578 u1CDC2 blockOctant-123578.stypo u1CDC2.stypo blockOctant-4578 u1CDC3 blockOctant-4578.stypo u1CDC3.stypo blockOctant-14578 u1CDC4 blockOctant-14578.stypo u1CDC4.stypo blockOctant-24578 u1CDC5 blockOctant-24578.stypo u1CDC5.stypo blockOctant-124578 u1CDC6 blockOctant-124578.stypo u1CDC6.stypo blockOctant-34578 u1CDC7 blockOctant-34578.stypo u1CDC7.stypo blockOctant-134578 u1CDC8 blockOctant-134578.stypo u1CDC8.stypo blockOctant-234578 u1CDC9 blockOctant-234578.stypo u1CDC9.stypo blockOctant-1234578 u1CDCA blockOctant-1234578.stypo u1CDCA.stypo blockOctant-678 u1CDCB blockOctant-678.stypo u1CDCB.stypo blockOctant-1678 u1CDCC blockOctant-1678.stypo u1CDCC.stypo blockOctant-2678 u1CDCD blockOctant-2678.stypo u1CDCD.stypo blockOctant-12678 u1CDCE blockOctant-12678.stypo u1CDCE.stypo blockOctant-3678 u1CDCF blockOctant-3678.stypo u1CDCF.stypo blockOctant-13678 u1CDD0 blockOctant-13678.stypo u1CDD0.stypo blockOctant-23678 u1CDD1 blockOctant-23678.stypo u1CDD1.stypo blockOctant-123678 u1CDD2 blockOctant-123678.stypo u1CDD2.stypo blockOctant-4678 u1CDD3 blockOctant-4678.stypo u1CDD3.stypo blockOctant-14678 u1CDD4 blockOctant-14678.stypo u1CDD4.stypo blockOctant-24678 u1CDD5 blockOctant-24678.stypo u1CDD5.stypo blockOctant-124678 u1CDD6 blockOctant-124678.stypo u1CDD6.stypo blockOctant-34678 u1CDD7 blockOctant-34678.stypo u1CDD7.stypo blockOctant-134678 u1CDD8 blockOctant-134678.stypo u1CDD8.stypo blockOctant-234678 u1CDD9 blockOctant-234678.stypo u1CDD9.stypo blockOctant-1234678 u1CDDA blockOctant-1234678.stypo u1CDDA.stypo blockOctant-15678 u1CDDB blockOctant-15678.stypo u1CDDB.stypo blockOctant-25678 u1CDDC blockOctant-25678.stypo u1CDDC.stypo blockOctant-125678 u1CDDD blockOctant-125678.stypo u1CDDD.stypo blockOctant-35678 u1CDDE blockOctant-35678.stypo u1CDDE.stypo blockOctant-235678 u1CDDF blockOctant-235678.stypo u1CDDF.stypo blockOctant-1235678 u1CDE0 blockOctant-1235678.stypo u1CDE0.stypo blockOctant-45678 u1CDE1 blockOctant-45678.stypo u1CDE1.stypo blockOctant-145678 u1CDE2 blockOctant-145678.stypo u1CDE2.stypo blockOctant-1245678 u1CDE3 blockOctant-1245678.stypo u1CDE3.stypo blockOctant-1345678 u1CDE4 blockOctant-1345678.stypo u1CDE4.stypo blockOctant-2345678 u1CDE5 blockOctant-2345678.stypo u1CDE5.stypo blockSedecimant-1 u1CE90 blockSedecimant-1.stypo u1CE90.stypo blockSedecimant-2 u1CE91 blockSedecimant-2.stypo u1CE91.stypo blockSedecimant-3 u1CE92 blockSedecimant-3.stypo u1CE92.stypo blockSedecimant-4 u1CE93 blockSedecimant-4.stypo u1CE93.stypo blockSedecimant-5 u1CE94 blockSedecimant-5.stypo u1CE94.stypo blockSedecimant-6 u1CE95 blockSedecimant-6.stypo u1CE95.stypo blockSedecimant-7 u1CE96 blockSedecimant-7.stypo u1CE96.stypo blockSedecimant-8 u1CE97 blockSedecimant-8.stypo u1CE97.stypo blockSedecimant-9 u1CE98 blockSedecimant-9.stypo u1CE98.stypo blockSedecimant-A u1CE99 blockSedecimant-A.stypo u1CE99.stypo blockSedecimant-B u1CE9A blockSedecimant-B.stypo u1CE9A.stypo blockSedecimant-C u1CE9B blockSedecimant-C.stypo u1CE9B.stypo blockSedecimant-D u1CE9C blockSedecimant-D.stypo u1CE9C.stypo blockSedecimant-E u1CE9D blockSedecimant-E.stypo u1CE9D.stypo blockSedecimant-F u1CE9E blockSedecimant-F.stypo u1CE9E.stypo blockSedecimant-G u1CE9F blockSedecimant-G.stypo u1CE9F.stypo blockSedecimant-EFG u1CEA1 blockSedecimant-EFG.stypo u1CEA1.stypo blockSedecimant-DEF u1CEA2 blockSedecimant-DEF.stypo u1CEA2.stypo blockSedecimant-9D u1CEA4 blockSedecimant-9D.stypo u1CEA4.stypo blockSedecimant-59D u1CEA5 blockSedecimant-59D.stypo u1CEA5.stypo blockSedecimant-159 u1CEA6 blockSedecimant-159.stypo u1CEA6.stypo blockSedecimant-15 u1CEA7 blockSedecimant-15.stypo u1CEA7.stypo blockSedecimant-123 u1CEA9 blockSedecimant-123.stypo u1CEA9.stypo blockSedecimant-234 u1CEAA blockSedecimant-234.stypo u1CEAA.stypo blockSedecimant-48 u1CEAC blockSedecimant-48.stypo u1CEAC.stypo blockSedecimant-48C u1CEAD blockSedecimant-48C.stypo u1CEAD.stypo blockSedecimant-8CG u1CEAE blockSedecimant-8CG.stypo u1CEAE.stypo blockSedecimant-CG u1CEAF blockSedecimant-CG.stypo u1CEAF.stypo verticalOneEighthBlock-2 u1FB70 verticalOneEighthBlock-2.stypo u1FB70.stypo verticalOneEighthBlock-3 u1FB71 verticalOneEighthBlock-3.stypo u1FB71.stypo verticalOneEighthBlock-4 u1FB72 verticalOneEighthBlock-4.stypo u1FB72.stypo verticalOneEighthBlock-5 u1FB73 verticalOneEighthBlock-5.stypo u1FB73.stypo verticalOneEighthBlock-6 u1FB74 verticalOneEighthBlock-6.stypo u1FB74.stypo verticalOneEighthBlock-7 u1FB75 verticalOneEighthBlock-7.stypo u1FB75.stypo horizontalOneEightBlock-2 u1FB76 horizontalOneEightBlock-2.stypo u1FB76.stypo horizontalOneEightBlock-3 u1FB77 horizontalOneEightBlock-3.stypo u1FB77.stypo horizontalOneEightBlock-4 u1FB78 horizontalOneEightBlock-4.stypo u1FB78.stypo horizontalOneEightBlock-5 u1FB79 horizontalOneEightBlock-5.stypo u1FB79.stypo horizontalOneEightBlock-6 u1FB7A horizontalOneEightBlock-6.stypo u1FB7A.stypo horizontalOneEightBlock-7 u1FB7B horizontalOneEightBlock-7.stypo u1FB7B.stypo leftAndLowerOneEightBlock u1FB7C leftAndLowerOneEightBlock.stypo u1FB7C.stypo leftAndUpperOneEightBlock u1FB7D leftAndUpperOneEightBlock.stypo u1FB7D.stypo rightAndUpperOneEightBlock u1FB7E rightAndUpperOneEightBlock.stypo u1FB7E.stypo rightAndLowerOneEightBlock u1FB7F rightAndLowerOneEightBlock.stypo u1FB7F.stypo upperAndLowerOneEightBlock u1FB80 upperAndLowerOneEightBlock.stypo u1FB80.stypo upperThreeEighthsBlock u1FB83 upperThreeEighthsBlock.stypo u1FB83.stypo upperFiveEighthsBlock u1FB84 upperFiveEighthsBlock.stypo u1FB84.stypo upperSevenEighthsBlock u1FB86 upperSevenEighthsBlock.stypo u1FB86.stypo rightOneQuarterBlock u1FB87 rightOneQuarterBlock.stypo u1FB87.stypo rightThreeEighthsBlock u1FB88 rightThreeEighthsBlock.stypo u1FB88.stypo rightFiveEighthsBlock u1FB89 rightFiveEighthsBlock.stypo u1FB89.stypo rightThreeQuartersBlock u1FB8A rightThreeQuartersBlock.stypo u1FB8A.stypo rightSevenEighthsBlock u1FB8B rightSevenEighthsBlock.stypo u1FB8B.stypo leftTwoThirdsBlock u1FBCE leftTwoThirdsBlock.stypo u1FBCE.stypo leftOneThirdBlock u1FBCF leftOneThirdBlock.stypo u1FBCF.stypo heavyHorizontalFill u1FB97 heavyHorizontalFill.stypo u1FB97.stypo blockSeparatedQuadrant-1 u1CC21 blockSeparatedQuadrant-1.stypo u1CC21.stypo blockSeparatedQuadrant-2 u1CC22 blockSeparatedQuadrant-2.stypo u1CC22.stypo blockSeparatedQuadrant-12 u1CC23 blockSeparatedQuadrant-12.stypo u1CC23.stypo blockSeparatedQuadrant-3 u1CC24 blockSeparatedQuadrant-3.stypo u1CC24.stypo blockSeparatedQuadrant-13 u1CC25 blockSeparatedQuadrant-13.stypo u1CC25.stypo blockSeparatedQuadrant-23 u1CC26 blockSeparatedQuadrant-23.stypo u1CC26.stypo blockSeparatedQuadrant-123 u1CC27 blockSeparatedQuadrant-123.stypo u1CC27.stypo blockSeparatedQuadrant-4 u1CC28 blockSeparatedQuadrant-4.stypo u1CC28.stypo blockSeparatedQuadrant-14 u1CC29 blockSeparatedQuadrant-14.stypo u1CC29.stypo blockSeparatedQuadrant-24 u1CC2A blockSeparatedQuadrant-24.stypo u1CC2A.stypo blockSeparatedQuadrant-124 u1CC2B blockSeparatedQuadrant-124.stypo u1CC2B.stypo blockSeparatedQuadrant-34 u1CC2C blockSeparatedQuadrant-34.stypo u1CC2C.stypo blockSeparatedQuadrant-134 u1CC2D blockSeparatedQuadrant-134.stypo u1CC2D.stypo blockSeparatedQuadrant-234 u1CC2E blockSeparatedQuadrant-234.stypo u1CC2E.stypo blockSeparatedQuadrant-1234 u1CC2F blockSeparatedQuadrant-1234.stypo u1CC2F.stypo blockSeparatedSextant-1 u1CE51 blockSeparatedSextant-1.stypo u1CE51.stypo blockSeparatedSextant-2 u1CE52 blockSeparatedSextant-2.stypo u1CE52.stypo blockSeparatedSextant-12 u1CE53 blockSeparatedSextant-12.stypo u1CE53.stypo blockSeparatedSextant-3 u1CE54 blockSeparatedSextant-3.stypo u1CE54.stypo blockSeparatedSextant-13 u1CE55 blockSeparatedSextant-13.stypo u1CE55.stypo blockSeparatedSextant-23 u1CE56 blockSeparatedSextant-23.stypo u1CE56.stypo blockSeparatedSextant-123 u1CE57 blockSeparatedSextant-123.stypo u1CE57.stypo blockSeparatedSextant-4 u1CE58 blockSeparatedSextant-4.stypo u1CE58.stypo blockSeparatedSextant-14 u1CE59 blockSeparatedSextant-14.stypo u1CE59.stypo blockSeparatedSextant-24 u1CE5A blockSeparatedSextant-24.stypo u1CE5A.stypo blockSeparatedSextant-124 u1CE5B blockSeparatedSextant-124.stypo u1CE5B.stypo blockSeparatedSextant-34 u1CE5C blockSeparatedSextant-34.stypo u1CE5C.stypo blockSeparatedSextant-134 u1CE5D blockSeparatedSextant-134.stypo u1CE5D.stypo blockSeparatedSextant-234 u1CE5E blockSeparatedSextant-234.stypo u1CE5E.stypo blockSeparatedSextant-1234 u1CE5F blockSeparatedSextant-1234.stypo u1CE5F.stypo blockSeparatedSextant-5 u1CE60 blockSeparatedSextant-5.stypo u1CE60.stypo blockSeparatedSextant-15 u1CE61 blockSeparatedSextant-15.stypo u1CE61.stypo blockSeparatedSextant-25 u1CE62 blockSeparatedSextant-25.stypo u1CE62.stypo blockSeparatedSextant-125 u1CE63 blockSeparatedSextant-125.stypo u1CE63.stypo blockSeparatedSextant-35 u1CE64 blockSeparatedSextant-35.stypo u1CE64.stypo blockSeparatedSextant-135 u1CE65 blockSeparatedSextant-135.stypo u1CE65.stypo blockSeparatedSextant-235 u1CE66 blockSeparatedSextant-235.stypo u1CE66.stypo blockSeparatedSextant-1235 u1CE67 blockSeparatedSextant-1235.stypo u1CE67.stypo blockSeparatedSextant-45 u1CE68 blockSeparatedSextant-45.stypo u1CE68.stypo blockSeparatedSextant-145 u1CE69 blockSeparatedSextant-145.stypo u1CE69.stypo blockSeparatedSextant-245 u1CE6A blockSeparatedSextant-245.stypo u1CE6A.stypo blockSeparatedSextant-1245 u1CE6B blockSeparatedSextant-1245.stypo u1CE6B.stypo blockSeparatedSextant-345 u1CE6C blockSeparatedSextant-345.stypo u1CE6C.stypo blockSeparatedSextant-1345 u1CE6D blockSeparatedSextant-1345.stypo u1CE6D.stypo blockSeparatedSextant-2345 u1CE6E blockSeparatedSextant-2345.stypo u1CE6E.stypo blockSeparatedSextant-12345 u1CE6F blockSeparatedSextant-12345.stypo u1CE6F.stypo blockSeparatedSextant-6 u1CE70 blockSeparatedSextant-6.stypo u1CE70.stypo blockSeparatedSextant-16 u1CE71 blockSeparatedSextant-16.stypo u1CE71.stypo blockSeparatedSextant-26 u1CE72 blockSeparatedSextant-26.stypo u1CE72.stypo blockSeparatedSextant-126 u1CE73 blockSeparatedSextant-126.stypo u1CE73.stypo blockSeparatedSextant-36 u1CE74 blockSeparatedSextant-36.stypo u1CE74.stypo blockSeparatedSextant-136 u1CE75 blockSeparatedSextant-136.stypo u1CE75.stypo blockSeparatedSextant-236 u1CE76 blockSeparatedSextant-236.stypo u1CE76.stypo blockSeparatedSextant-1236 u1CE77 blockSeparatedSextant-1236.stypo u1CE77.stypo blockSeparatedSextant-46 u1CE78 blockSeparatedSextant-46.stypo u1CE78.stypo blockSeparatedSextant-146 u1CE79 blockSeparatedSextant-146.stypo u1CE79.stypo blockSeparatedSextant-246 u1CE7A blockSeparatedSextant-246.stypo u1CE7A.stypo blockSeparatedSextant-1246 u1CE7B blockSeparatedSextant-1246.stypo u1CE7B.stypo blockSeparatedSextant-346 u1CE7C blockSeparatedSextant-346.stypo u1CE7C.stypo blockSeparatedSextant-1346 u1CE7D blockSeparatedSextant-1346.stypo u1CE7D.stypo blockSeparatedSextant-2346 u1CE7E blockSeparatedSextant-2346.stypo u1CE7E.stypo blockSeparatedSextant-12346 u1CE7F blockSeparatedSextant-12346.stypo u1CE7F.stypo blockSeparatedSextant-56 u1CE80 blockSeparatedSextant-56.stypo u1CE80.stypo blockSeparatedSextant-156 u1CE81 blockSeparatedSextant-156.stypo u1CE81.stypo blockSeparatedSextant-256 u1CE82 blockSeparatedSextant-256.stypo u1CE82.stypo blockSeparatedSextant-1256 u1CE83 blockSeparatedSextant-1256.stypo u1CE83.stypo blockSeparatedSextant-356 u1CE84 blockSeparatedSextant-356.stypo u1CE84.stypo blockSeparatedSextant-1356 u1CE85 blockSeparatedSextant-1356.stypo u1CE85.stypo blockSeparatedSextant-2356 u1CE86 blockSeparatedSextant-2356.stypo u1CE86.stypo blockSeparatedSextant-12356 u1CE87 blockSeparatedSextant-12356.stypo u1CE87.stypo blockSeparatedSextant-456 u1CE88 blockSeparatedSextant-456.stypo u1CE88.stypo blockSeparatedSextant-1456 u1CE89 blockSeparatedSextant-1456.stypo u1CE89.stypo blockSeparatedSextant-2456 u1CE8A blockSeparatedSextant-2456.stypo u1CE8A.stypo blockSeparatedSextant-12456 u1CE8B blockSeparatedSextant-12456.stypo u1CE8B.stypo blockSeparatedSextant-3456 u1CE8C blockSeparatedSextant-3456.stypo u1CE8C.stypo blockSeparatedSextant-13456 u1CE8D blockSeparatedSextant-13456.stypo u1CE8D.stypo blockSeparatedSextant-23456 u1CE8E blockSeparatedSextant-23456.stypo u1CE8E.stypo blockSeparatedSextant-123456 u1CE8F blockSeparatedSextant-123456.stypo u1CE8F.stypo segmentedDigit0 u1FBF0 segmentedDigit1 u1FBF1 segmentedDigit2 u1FBF2 segmentedDigit3 u1FBF3 segmentedDigit4 u1FBF4 segmentedDigit5 u1FBF5 segmentedDigit6 u1FBF6 segmentedDigit7 u1FBF7 segmentedDigit8 u1FBF8 segmentedDigit9 u1FBF9 largeType-1CE1A u1CE1A largeType-1CE1A.stypo u1CE1A.stypo largeType-1CE1B u1CE1B largeType-1CE1B.stypo u1CE1B.stypo largeType-1CE1C u1CE1C largeType-1CE1C.stypo u1CE1C.stypo largeType-1CE1D u1CE1D largeType-1CE1D.stypo u1CE1D.stypo largeType-1CE1E u1CE1E largeType-1CE1E.stypo u1CE1E.stypo largeType-1CE1F u1CE1F largeType-1CE1F.stypo u1CE1F.stypo largeType-1CE20 u1CE20 largeType-1CE20.stypo u1CE20.stypo largeType-1CE21 u1CE21 largeType-1CE21.stypo u1CE21.stypo largeType-1CE22 u1CE22 largeType-1CE22.stypo u1CE22.stypo largeType-1CE23 u1CE23 largeType-1CE23.stypo u1CE23.stypo largeType-1CE24 u1CE24 largeType-1CE24.stypo u1CE24.stypo largeType-1CE25 u1CE25 largeType-1CE25.stypo u1CE25.stypo largeType-1CE26 u1CE26 largeType-1CE26.stypo u1CE26.stypo largeType-1CE27 u1CE27 largeType-1CE27.stypo u1CE27.stypo largeType-1CE28 u1CE28 largeType-1CE28.stypo u1CE28.stypo largeType-1CE29 u1CE29 largeType-1CE29.stypo u1CE29.stypo largeType-1CE2A u1CE2A largeType-1CE2A.stypo u1CE2A.stypo largeType-1CE2B u1CE2B largeType-1CE2B.stypo u1CE2B.stypo largeType-1CE2C u1CE2C largeType-1CE2C.stypo u1CE2C.stypo largeType-1CE2D u1CE2D largeType-1CE2D.stypo u1CE2D.stypo largeType-1CE2E u1CE2E largeType-1CE2E.stypo u1CE2E.stypo largeType-1CE2F u1CE2F largeType-1CE2F.stypo u1CE2F.stypo largeType-1CE30 u1CE30 largeType-1CE30.stypo u1CE30.stypo largeType-1CE31 u1CE31 largeType-1CE31.stypo u1CE31.stypo largeType-1CE32 u1CE32 largeType-1CE32.stypo u1CE32.stypo largeType-1CE33 u1CE33 largeType-1CE33.stypo u1CE33.stypo largeType-1CE34 u1CE34 largeType-1CE34.stypo u1CE34.stypo largeType-1CE35 u1CE35 largeType-1CE35.stypo u1CE35.stypo largeType-1CE36 u1CE36 largeType-1CE36.stypo u1CE36.stypo largeType-1CE37 u1CE37 largeType-1CE37.stypo u1CE37.stypo largeType-1CE38 u1CE38 largeType-1CE38.stypo u1CE38.stypo largeType-1CE39 u1CE39 largeType-1CE39.stypo u1CE39.stypo largeType-1CE3A u1CE3A largeType-1CE3A.stypo u1CE3A.stypo largeType-1CE3B u1CE3B largeType-1CE3B.stypo u1CE3B.stypo largeType-1CE3C u1CE3C largeType-1CE3C.stypo u1CE3C.stypo largeType-1CE3D u1CE3D largeType-1CE3D.stypo u1CE3D.stypo largeType-1CE3E u1CE3E largeType-1CE3E.stypo u1CE3E.stypo largeType-1CE3F u1CE3F largeType-1CE3F.stypo u1CE3F.stypo largeType-1CE40 u1CE40 largeType-1CE40.stypo u1CE40.stypo largeType-1CE41 u1CE41 largeType-1CE41.stypo u1CE41.stypo largeType-1CE42 u1CE42 largeType-1CE42.stypo u1CE42.stypo largeType-1CE43 u1CE43 largeType-1CE43.stypo u1CE43.stypo largeType-1CE44 u1CE44 largeType-1CE44.stypo u1CE44.stypo largeType-1CE45 u1CE45 largeType-1CE45.stypo u1CE45.stypo largeType-1CE46 u1CE46 largeType-1CE46.stypo u1CE46.stypo largeType-1CE47 u1CE47 largeType-1CE47.stypo u1CE47.stypo largeType-1CE48 u1CE48 largeType-1CE48.stypo u1CE48.stypo largeType-1CE49 u1CE49 largeType-1CE49.stypo u1CE49.stypo largeType-1CE4A u1CE4A largeType-1CE4A.stypo u1CE4A.stypo largeType-1CE4B u1CE4B largeType-1CE4B.stypo u1CE4B.stypo largeType-1CE4C u1CE4C largeType-1CE4C.stypo u1CE4C.stypo largeType-1CE4D u1CE4D largeType-1CE4D.stypo u1CE4D.stypo largeType-1CE4E u1CE4E largeType-1CE4E.stypo u1CE4E.stypo largeType-1CE4F u1CE4F largeType-1CE4F.stypo u1CE4F.stypo largeType-1CE50 u1CE50 largeType-1CE50.stypo u1CE50.stypo public.skipExportGlyphs A.half B.half C.half D.half E.half F.half G.half H.half I.half K.half L.half M.half N.half O.half P.half Q.half R.half S.half T.half U.half V.half X.half Y.half four.half one.half three.half two.half ================================================ FILE: sources/CascadiaCode-ExtraLight.ufo/metainfo.plist ================================================ creator com.github.fonttools.ufoLib formatVersion 3 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/features.fea ================================================ # automatic @Uppercase = [ A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehookabove Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhookabove Acircumflextilde Adieresis Adotbelow Agrave Ahookabove Alpha-latin Amacron Aogonek Aring Aringacute Astroke Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Cstroke D Dafrican Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhookabove Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehookabove Emacron Eogonek Eopen Ereversed Esh Etilde Ezh F Fhook G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent Gstroke H Hbar Hcaron Hcircumflex Hdotbelow I IJ IJ_acute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihookabove Imacron Iogonek Iotaafrican Itilde J Jacute Jcircumflex K Kacute Kcommaaccent Kdotbelow Klinebelow L Lacute Lbar Lcaron Lcommaaccent Ldot Ldotbelow Llinebelow Lmiddletilde Lslash M N Nacute Ncaron Ncommaaccent Eng Nhookleft Nlinebelow Ntilde O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhookabove Ocircumflextilde Odieresis Odotbelow Ograve Ohookabove Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhookabove Ohorntilde Ohungarumlaut Omacron Omacronacute Omacrongrave Oogonek Oopen Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent Rdotbelow S Sacute Scaron Scedilla Scircumflex Scommaaccent Sdotbelow Germandbls Schwa T Tbar Tcaron Tcedilla Tcommaaccent Tdiagonalstroke Tlinebelow U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhookabove Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhookabove Uhorntilde Uhungarumlaut Umacron Uogonek Upsilonafrican Uring Utilde V Gammaafrican Vhook Vturned W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhookabove Ymacron Ytilde Z Zacute Zcaron Zdotaccent Cacute.loclPLK Nacute.loclPLK Oacute.loclPLK Sacute.loclPLK Zacute.loclPLK A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Shha-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy De-cy.loclBGR El-cy.loclBGR Ef-cy.loclBGR Alpha Beta Gamma Delta Epsilon Zeta Eta Theta Iota Kappa Lambda Mu Nu Xi Omicron Pi Rho Sigma Tau Upsilon Phi Chi Psi Omega Alphatonos Epsilontonos Etatonos Iotatonos Omicrontonos Upsilontonos Omegatonos Iotadieresis Upsilondieresis KaiSymbol ]; # Prefix: Languagesystems # automatic languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn PLK; languagesystem latn CAT; languagesystem latn NLD; languagesystem cyrl dflt; languagesystem cyrl BGR; languagesystem cyrl SRB; feature aalt { # automatic feature calt; feature salt; feature locl; feature subs; feature sinf; feature sups; feature numr; feature dnom; feature frac; feature ordn; feature case; feature zero; feature ss20; } aalt; feature calt { sub [B C D E F G H I J K M N O P Q R S T U V W X Y Z seven f Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Hardsign-cy Yeru-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Ghestroke-cy Zhedescender-cy Kadescender-cy Endescender-cy Ustraight-cy Ustraightstroke-cy Hadescender-cy Chedescender-cy Palochka-cy Schwa-cy Imacron-cy Obarred-cy Umacron-cy Ef-cy.loclBGR] [b h k shha-cy zhe-cy.loclBGR ka-cy.loclBGR]' by [b.alt h.alt k.alt shha-cy.alt zhe-cy.loclBGR.alt ka-cy.loclBGR.alt]; } calt; feature ss01 { sub f by f.salt; sub l by l.salt; sub lacute by lacute.salt; sub lbar by lbar.salt; sub lbelt by lbelt.salt; sub lcaron by lcaron.salt; sub lcommaaccent by lcommaaccent.salt; sub ldot by ldot.salt; sub ldotbelow by ldotbelow.salt; sub llinebelow by llinebelow.salt; sub lmiddletilde by lmiddletilde.salt; sub lslash by lslash.salt; sub r by r.salt; sub racute by racute.salt; sub rcaron by rcaron.salt; sub rcommaaccent by rcommaaccent.salt; sub rdotbelow by rdotbelow.salt; sub s by s.salt; sub sacute by sacute.salt; sub scaron by scaron.salt; sub scedilla by scedilla.salt; sub scircumflex by scircumflex.salt; sub scommaaccent by scommaaccent.salt; sub sdotbelow by sdotbelow.salt; } ss01; feature ccmp { # automatic lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb acutetonecomb brevecomb caroncomb circumflexcomb commaabovecomb commaaboverightcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb gravetonecomb hookabovecomb hungarumlautcomb macroncomb perispomenicomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb lowlinecomb macronbelowcomb ogonekcomb ringbelowcomb horncomb]; sub [i j]' @CombiningTopAccents by [idotless jdotless]; sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb hookabovecomb horncomb tonos brevecomb-cy]; @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case hookabovecomb.case horncomb.case tonos.case brevecomb-cy.case]; sub @Markscomb @Markscomb' by @MarkscombCase; sub @Uppercase @Markscomb' by @MarkscombCase; } ccmp_Other_1; lookup ccmp_Other_2 { sub @Markscomb' @MarkscombCase by @MarkscombCase; sub @MarkscombCase @Markscomb' by @MarkscombCase; } ccmp_Other_2; } ccmp; feature locl { # automatic lookup locl_latn_0 { script latn; language ROM; language MOL; sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_0; lookup locl_latn_1 { script latn; language PLK; sub Cacute by Cacute.loclPLK; sub Nacute by Nacute.loclPLK; sub Oacute by Oacute.loclPLK; sub Sacute by Sacute.loclPLK; sub Zacute by Zacute.loclPLK; sub cacute by cacute.loclPLK; sub nacute by nacute.loclPLK; sub oacute by oacute.loclPLK; sub sacute by sacute.loclPLK; sub zacute by zacute.loclPLK; sub acutecomb by acutecomb.loclPLK; } locl_latn_1; lookup locl_latn_2 { script latn; language CAT; sub l' periodcentered' l by ldot; sub L' periodcentered' L by Ldot; } locl_latn_2; lookup locl_latn_3 { script latn; language NLD; sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_3; lookup locl_cyrl_0 { script cyrl; language BGR; sub De-cy by De-cy.loclBGR; sub El-cy by El-cy.loclBGR; sub Ef-cy by Ef-cy.loclBGR; sub de-cy by de-cy.loclBGR; sub zhe-cy by zhe-cy.loclBGR; sub ze-cy by ze-cy.loclBGR; sub ka-cy by ka-cy.loclBGR; sub iu-cy by iu-cy.loclBGR; } locl_cyrl_0; lookup locl_cyrl_1 { script cyrl; language SRB; sub be-cy by be-cy.loclSRB; sub ge-cy by ge-cy.loclSRB; sub pe-cy by pe-cy.loclSRB; sub te-cy by te-cy.loclSRB; } locl_cyrl_1; } locl; feature subs { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } subs; feature sinf { # automatic sub zero by zeroinferior; sub one by oneinferior; sub two by twoinferior; sub three by threeinferior; sub four by fourinferior; sub five by fiveinferior; sub six by sixinferior; sub seven by seveninferior; sub eight by eightinferior; sub nine by nineinferior; } sinf; feature sups { # automatic sub zero by zerosuperior; sub one by onesuperior; sub two by twosuperior; sub three by threesuperior; sub four by foursuperior; sub five by fivesuperior; sub six by sixsuperior; sub seven by sevensuperior; sub eight by eightsuperior; sub nine by ninesuperior; } sups; feature numr { # automatic sub zero by zero.numr; sub one by one.numr; sub two by two.numr; sub three by three.numr; sub four by four.numr; sub five by five.numr; sub six by six.numr; sub seven by seven.numr; sub eight by eight.numr; sub nine by nine.numr; } numr; feature dnom { # automatic sub zero by zero.dnom; sub one by one.dnom; sub two by two.dnom; sub three by three.dnom; sub four by four.dnom; sub five by five.dnom; sub six by six.dnom; sub seven by seven.dnom; sub eight by eight.dnom; sub nine by nine.dnom; } dnom; feature frac { # automatic lookup FRAC { sub slash by fraction; } FRAC; lookup UP { sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; } UP; lookup DOWN { sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; sub [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom] [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; } DOWN; } frac; feature ordn { # automatic sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; } ordn; feature case { # automatic sub dieresiscomb by dieresiscomb.case; sub dotaccentcomb by dotaccentcomb.case; sub gravecomb by gravecomb.case; sub acutecomb by acutecomb.case; sub hungarumlautcomb by hungarumlautcomb.case; sub circumflexcomb by circumflexcomb.case; sub caroncomb by caroncomb.case; sub brevecomb by brevecomb.case; sub ringcomb by ringcomb.case; sub tildecomb by tildecomb.case; sub macroncomb by macroncomb.case; sub hookabovecomb by hookabovecomb.case; sub horncomb by horncomb.case; sub tonos by tonos.case; sub brevecomb-cy by brevecomb-cy.case; } case; feature liga { # automatic # disabled #lookupflag IgnoreMarks; #sub bar bar bar greater by bar_bar_bar_greater.liga; #sub less bar bar bar by less_bar_bar_bar.liga; #sub less exclam hyphen hyphen by less_exclam_hyphen_hyphen.liga; #sub asciitilde asciitilde greater by asciitilde_asciitilde_greater.liga; #sub asterisk asterisk asterisk by asterisk_asterisk_asterisk.liga; #sub bar bar bar by bar_bar_bar.liga; #sub bar bar greater by bar_bar_greater.liga; #sub colon colon colon by colon_colon_colon.liga; #sub colon colon equal by colon_colon_equal.liga; #sub colon slash slash by colon_slash_slash.liga; #sub equal equal equal by equal_equal_equal.liga; #sub equal greater greater by equal_greater_greater.liga; #sub equal less less by equal_less_less.liga; #sub exclam equal equal by exclam_equal_equal.liga; #sub exclam exclam period by exclam_exclam_period.liga; #sub greater greater equal by greater_greater_equal.liga; #sub greater greater greater by greater_greater_greater.liga; #sub hyphen hyphen hyphen by hyphen_hyphen_hyphen.liga; #sub less asciitilde asciitilde by less_asciitilde_asciitilde.liga; #sub less asciitilde greater by less_asciitilde_greater.liga; #sub less asterisk greater by less_asterisk_greater.liga; #sub less bar bar by less_bar_bar.liga; #sub less bar greater by less_bar_greater.liga; #sub less dollar greater by less_dollar_greater.liga; #sub less less equal by less_less_equal.liga; #sub less less less by less_less_less.liga; #sub less plus greater by less_plus_greater.liga; #sub less slash greater by less_slash_greater.liga; #sub numbersign underscore parenleft by numbersign_underscore_parenleft.liga; #sub period period equal by period_period_equal.liga; #sub period period less by period_period_less.liga; #sub period period period by period_period_period.liga; #sub plus plus plus by plus_plus_plus.liga; #sub question question equal by question_question_equal.liga; #sub slash slash slash by slash_slash_slash.liga; #sub w w w by w_w_w.liga; #sub ampersand ampersand by ampersand_ampersand.liga; #sub asciicircum equal by asciicircum_equal.liga; #sub asciitilde asciitilde by asciitilde_asciitilde.liga; #sub asciitilde at by asciitilde_at.liga; #sub asciitilde equal by asciitilde_equal.liga; #sub asciitilde greater by asciitilde_greater.liga; #sub asciitilde hyphen by asciitilde_hyphen.liga; #sub asterisk asterisk by asterisk_asterisk.liga; #sub asterisk greater by asterisk_greater.liga; #sub asterisk parenright by asterisk_parenright.liga; #sub asterisk slash by asterisk_slash.liga; #sub backslash backslash by backslash_backslash.liga; #sub backslash slash by backslash_slash.liga; #sub bar bar by bar_bar.liga; #sub bar braceright by bar_braceright.liga; #sub bar bracketright by bar_bracketright.liga; #sub bar greater by bar_greater.liga; #sub braceleft bar by braceleft_bar.liga; #sub braceright numbersign by braceright_numbersign.liga; #sub bracketleft bar by bracketleft_bar.liga; #sub bracketright numbersign by bracketright_numbersign.liga; #sub colon colon by colon_colon.liga; #sub colon equal by colon_equal.liga; #sub dollar greater by dollar_greater.liga; #sub equal equal by equal_equal.liga; #sub exclam colon by exclam_colon.liga; #sub exclam equal by exclam_equal.liga; #sub exclam exclam by exclam_exclam.liga; #sub exclam period by exclam_period.liga; #sub greater equal by greater_equal.liga; #sub greater greater by greater_greater.liga; #sub hyphen asciitilde by hyphen_asciitilde.liga; #sub hyphen hyphen by hyphen_hyphen.liga; #sub less asciitilde by less_asciitilde.liga; #sub less asterisk by less_asterisk.liga; #sub less bar by less_bar.liga; #sub less dollar by less_dollar.liga; #sub less equal by less_equal.liga; #sub less greater by less_greater.liga; #sub less less by less_less.liga; #sub less plus by less_plus.liga; #sub less slash by less_slash.liga; #sub numbersign braceleft by numbersign_braceleft.liga; #sub numbersign bracketleft by numbersign_bracketleft.liga; #sub numbersign colon by numbersign_colon.liga; #sub numbersign equal by numbersign_equal.liga; #sub numbersign exclam by numbersign_exclam.liga; #sub numbersign parenleft by numbersign_parenleft.liga; #sub numbersign question by numbersign_question.liga; #sub numbersign underscore by numbersign_underscore.liga; #sub parenleft asterisk by parenleft_asterisk.liga; #sub percent percent by percent_percent.liga; #sub period equal by period_equal.liga; #sub period hyphen by period_hyphen.liga; #sub period period by period_period.liga; #sub period question by period_question.liga; #sub plus greater by plus_greater.liga; #sub plus plus by plus_plus.liga; #sub question colon by question_colon.liga; #sub question equal by question_equal.liga; #sub question period by question_period.liga; #sub question question by question_question.liga; #sub semicolon semicolon by semicolon_semicolon.liga; #sub slash asterisk by slash_asterisk.liga; #sub slash backslash by slash_backslash.liga; #sub slash greater by slash_greater.liga; #sub slash slash by slash_slash.liga; #sub underscore underscore by underscore_underscore.liga; #sub f i by fi; #sub f l by fl; } liga; feature zero { # automatic sub zero by zero.zero; } zero; feature ss20 { # automatic sub acknowledgeControl by acknowledgeControl.ss20; sub backspaceControl by backspaceControl.ss20; sub bellControl by bellControl.ss20; sub cancelControl by cancelControl.ss20; sub carriageReturnControl by carriageReturnControl.ss20; sub dataLinkEscapeControl by dataLinkEscapeControl.ss20; sub endOfMediumControl by endOfMediumControl.ss20; sub endOfTextControl by endOfTextControl.ss20; sub endOfTransmissionBlockControl by endOfTransmissionBlockControl.ss20; sub endOfTransmissionControl by endOfTransmissionControl.ss20; sub enquiryControl by enquiryControl.ss20; sub escapeControl by escapeControl.ss20; sub formFeedControl by formFeedControl.ss20; sub horizontalTabulationControl by horizontalTabulationControl.ss20; sub lineFeedControl by lineFeedControl.ss20; sub negativeAcknowledgeControl by negativeAcknowledgeControl.ss20; sub shiftInControl by shiftInControl.ss20; sub shiftOutControl by shiftOutControl.ss20; sub startOfHeadingControl by startOfHeadingControl.ss20; sub startOfTextControl by startOfTextControl.ss20; sub substituteControl by substituteControl.ss20; sub synchronousIdleControl by synchronousIdleControl.ss20; sub verticalTabulationControl by verticalTabulationControl.ss20; } ss20; ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/fontinfo.plist ================================================ ascender 1568 capHeight 1420 copyright © 2021 Microsoft Corporation. All Rights Reserved. descender -480 familyName Cascadia Code guidelines angle 0 name [locked] x 1100 y 1080 angle 0 name [locked] x 886 y -20 angle 0 name [locked] x 1052 y 1500 angle 0 name [locked] x 1276 y 1440 angle 0 name [locked] x 440 y -460 angle 90 name [locked] x 2160 y 332 angle 90 name [locked] x 2120 y 342 angle 90 name [locked] x 2004 y 52 angle 90 name [locked] x 3360 y 466 angle 90 name [locked] x 3320 y 306 angle 90 name [locked] x 3208 y 146 angle 180 x 867 y 1808 angle 80 x 288 y 1230 angle 80 x 2831 y 222 angle 0 x 1192 y 1052 angle 80 x 2741 y 215 angle 80 x 4313 y 608 angle 80 x 1881 y 144 angle 80 x 100 y 0 angle 80 x 925 y 764 angle 80 x 1206 y 870 angle 80 name [locked] x 751 y 1390 angle 80 x 375 y 42 angle 80 x 384 y -440 angle 0 x 962 y 280 italicAngle -10 openTypeHeadCreated 2019/04/07 17:18:29 openTypeNameDesigner Aaron Bell openTypeNameDesignerURL http://sajatypeworks.com openTypeNameLicense Microsoft supplied font. You may use this font to create, display, and print content as permitted by the license terms or terms of use, of the Microsoft product, service, or content in which this font was included. You may only (i) embed this font in content as permitted by the embedding restrictions included in this font; and (ii) temporarily download this font to a printer or other output device to help print content. Any other use is prohibited. The following license, based on the SIL Open Font license (https://scripts.sil.org/OFL), applies to this font. Additional license terms may be found on the GitHub repository for this font (https://github.com/microsoft/cascadia-code/blob/main/LICENSE). 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. 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. openTypeNameLicenseURL https://scripts.sil.org/OFL openTypeNameManufacturer Saja Typeworks openTypeNameManufacturerURL http://sajatypeworks.com openTypeOS2Panose 2 11 6 9 2 0 0 2 0 4 openTypeOS2Selection 7 openTypeOS2Type openTypeOS2VendorID SAJA postscriptBlueValues -20 0 1060 1080 1420 1440 1500 1520 postscriptIsFixedPitch postscriptOtherBlues -480 -460 postscriptStemSnapH 200 210 212 220 postscriptStemSnapV 190 180 postscriptUnderlinePosition -100 postscriptUnderlineThickness 100 styleName ExtraLight Italic trademark Cascadia Code is a trademark of the Microsoft group of companies. unitsPerEm 2048 versionMajor 4 versionMinor 300 xHeight 1060 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_breveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_brevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_lphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_ringacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/A_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/B_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_he-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/C_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_african.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_croat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_e-cy.glif ================================================ uni0414 public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_elta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_ze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/D_zhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_f-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_l-cy.glif ================================================ uni041B public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_m-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_n-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ndescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ng.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_r-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_reversed-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_reversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_s-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_sh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_ta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_tatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_th.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/E_zh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_amma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_ammaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_ermandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_hestroke-cy.glif ================================================ public.markColor 0,0.67,0.91,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_heupturn-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/G_stroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_adescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_ardsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/H_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_J__acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 1 name acutecomb.case alignment -1 index 2 name acutecomb.case ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_egrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_igrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_ota.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otaafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_otatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/I_u-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/J_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_a-cy.glif ================================================ public.markColor 0.65,0.48,0.2,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_adescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_aiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_appa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/K_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_I_G_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_ambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_dot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_middletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/L_small.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/M_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_hookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/N_u.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_E_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_barred-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_circumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hm.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_macrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_mega.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_megatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_micron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_microntonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_open.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_slash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_slashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/O_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_alochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_hi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/P_si.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Q_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Q_.half.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name O.half ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/R_ho.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_chwa-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_chwa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_hcha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_hha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_igma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/S_oftsign-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_au.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_commaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_diagonalstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_heta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_linebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_se-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/T_she-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_horntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_macron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilonafrican.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilondieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_psilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_ring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_short-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_straight-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_straightstroke-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/U_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_hook.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/V_turned.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/W_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/X_i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_dotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_eru-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_hookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Y_tilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_e-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_he-cy.glif ================================================ com.schriftgestaltung.annotations position 1010.795 -63.731 type Minus width 100 position 1081.285 -55.901 type Minus width 100 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/Z_hedescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/_notdef.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/a-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/a.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abreveacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevedotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevegrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/abrevetilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name A.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/acutetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/adieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/adotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ae.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aeacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/agrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ahookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alpha-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alpha.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/alphatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/amacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/anoteleia.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/apostrophemod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/approxequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aring.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/aringacute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 2 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciicircum.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciicircum_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_at.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_parenright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/asterisk_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/at.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/atilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/b.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/b.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash_backslash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backslash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backspaceC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/baht.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_braceright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_bracketright.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/be-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bellC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name B.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/beta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bitcoin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackC_ircle.glif ================================================ H18533 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackD_iamond.glif ================================================ uni25C6 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackH_exagon.glif ================================================ uni2B22 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ uni2B2C ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ uni25C8 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackL_argeC_ircle.glif ================================================ uni2B24 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackL_argeS_quare.glif ================================================ uni2B1B ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ uni2B25 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ uni2BC6 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ uni2BC7 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ uni2B27 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ uni2BC8 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ uni2BC5 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackP_arallelogram.glif ================================================ uni25B0 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackP_entagon.glif ================================================ uni2B1F ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallD_iamond.glif ================================================ uni2B29 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ uni2B2A ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_mallS_quare.glif ================================================ H18543 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_milingF_ace.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackS_quare.glif ================================================ filledbox ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ uni2B2E ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erticalR_ect.glif ================================================ uni25AE ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ uni2B1D ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blank-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blank.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blankS_ymbol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1237.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1238.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1247.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1248.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1257.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1258.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1267.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1268.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-127.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1278.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-128.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-137.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-138.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-147.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-148.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-157.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-158.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-167.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-168.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-17.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-178.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-18.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-237.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-238.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-247.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-248.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-257.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-258.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-267.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-268.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-27.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-278.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-28.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-347.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-348.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-35678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-357.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-358.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-367.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-368.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-37.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-378.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-38.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-457.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-458.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-467.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-468.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-478.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-567.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-568.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-578.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-58.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-67.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-678.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-159.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-59D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-CG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-G.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1246.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-125.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-126.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-136.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-145.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-146.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-15.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-156.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-16.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-235.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-236.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-245.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-256.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-345.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-346.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-356.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-456.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-56.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-1.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-123.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-124.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-134.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-14.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-234.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ uni2BCB ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ uni2B19 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_ertical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/braceright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketleft_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/breve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb-cy.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb-cy.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brevecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/brokenbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bullet.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bulletoperator.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/bullseye.glif ================================================ uni25CE ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/c.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cancelC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name N.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/careof.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/caroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name C.half alignment -1 index 1 name R.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ccircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedilla.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cedillacomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/cent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/che-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/che-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/checkmark.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chedescender-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chedescender-cy.salt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/chi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflexcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/circumflexcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/clubB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colon_slash_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colonsign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/colontriangularmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/comma.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaaboverightcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaturnedabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/commaturnedmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/contents.plist ================================================ .notdef _notdef.glif A A_.glif A-cy A_-cy.glif A.half A_.half.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehookabove A_brevehookabove.glif Abrevetilde A_brevetilde.glif Acaron A_caron.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhookabove A_circumflexhookabove.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahookabove A_hookabove.glif Alpha A_lpha.glif Alpha-latin A_lpha-latin.glif Alphatonos A_lphatonos.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Asmall A_small.glif Astroke A_stroke.glif Atilde A_tilde.glif B B_.glif B.half B_.half.glif Be-cy B_e-cy.glif Beta B_eta.glif C C_.glif C.half C_.half.glif CR C_R_.glif Cacute C_acute.glif Cacute.loclPLK C_acute.loclP_L_K_.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif Che-cy C_he-cy.glif Chedescender-cy C_hedescender-cy.glif Chi C_hi.glif Cstroke C_stroke.glif D D_.glif D.half D_.half.glif Dafrican D_african.glif Dcaron D_caron.glif Dcroat D_croat.glif De-cy D_e-cy.glif De-cy.loclBGR D_e-cy.loclB_G_R_.glif Delta D_elta.glif Dje-cy D_je-cy.glif Dze-cy D_ze-cy.glif Dzhe-cy D_zhe-cy.glif E E_.glif E-cy E_-cy.glif E.half E_.half.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhookabove E_circumflexhookabove.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Ef-cy E_f-cy.glif Ef-cy.loclBGR E_f-cy.loclB_G_R_.glif Egrave E_grave.glif Ehookabove E_hookabove.glif El-cy E_l-cy.glif El-cy.loclBGR E_l-cy.loclB_G_R_.glif Em-cy E_m-cy.glif Emacron E_macron.glif En-cy E_n-cy.glif Endescender-cy E_ndescender-cy.glif Eng E_ng.glif Eogonek E_ogonek.glif Eopen E_open.glif Epsilon E_psilon.glif Epsilontonos E_psilontonos.glif Er-cy E_r-cy.glif Ereversed E_reversed.glif Ereversed-cy E_reversed-cy.glif Es-cy E_s-cy.glif Esh E_sh.glif Eta E_ta.glif Etatonos E_tatonos.glif Eth E_th.glif Etilde E_tilde.glif Ezh E_zh.glif F F_.glif F.half F_.half.glif Fhook F_hook.glif G G_.glif G.half G_.half.glif Gamma G_amma.glif Gammaafrican G_ammaafrican.glif Gbreve G_breve.glif Gcaron G_caron.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Ge-cy G_e-cy.glif Germandbls G_ermandbls.glif Ghestroke-cy G_hestroke-cy.glif Gheupturn-cy G_heupturn-cy.glif Gje-cy G_je-cy.glif Gsmall G_small.glif Gstroke G_stroke.glif H H_.glif H.half H_.half.glif Ha-cy H_a-cy.glif Hadescender-cy H_adescender-cy.glif Hardsign-cy H_ardsign-cy.glif Hbar H_bar.glif Hcaron H_caron.glif Hcircumflex H_circumflex.glif Hdotbelow H_dotbelow.glif I I_.glif I-cy I_-cy.glif I.half I_.half.glif IJ I_J_.glif IJ_acute I_J__acute.glif Ia-cy I_a-cy.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Ie-cy I_e-cy.glif Iegrave-cy I_egrave-cy.glif Igrave I_grave.glif Ihookabove I_hookabove.glif Ii-cy I_i-cy.glif Iigrave-cy I_igrave-cy.glif Iishort-cy I_ishort-cy.glif Imacron I_macron.glif Imacron-cy I_macron-cy.glif Io-cy I_o-cy.glif Iogonek I_ogonek.glif Iota I_ota.glif Iotaafrican I_otaafrican.glif Iotadieresis I_otadieresis.glif Iotatonos I_otatonos.glif Ismall I_small.glif Itilde I_tilde.glif Iu-cy I_u-cy.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif Je-cy J_e-cy.glif K K_.glif K.half K_.half.glif Ka-cy K_a-cy.glif Kacute K_acute.glif Kadescender-cy K_adescender-cy.glif KaiSymbol K_aiS_ymbol.glif Kappa K_appa.glif Kcommaaccent K_commaaccent.glif Kdotbelow K_dotbelow.glif Kje-cy K_je-cy.glif Klinebelow K_linebelow.glif L L_.glif L.half L_.half.glif LIG L_I_G_.glif Lacute L_acute.glif Lambda L_ambda.glif Lbar L_bar.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Ldotbelow L_dotbelow.glif Lje-cy L_je-cy.glif Llinebelow L_linebelow.glif Lmiddletilde L_middletilde.glif Lslash L_slash.glif Lsmall L_small.glif M M_.glif M.half M_.half.glif Mu M_u.glif N N_.glif N.half N_.half.glif Nacute N_acute.glif Nacute.loclPLK N_acute.loclP_L_K_.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Nhookleft N_hookleft.glif Nje-cy N_je-cy.glif Nlinebelow N_linebelow.glif Ntilde N_tilde.glif Nu N_u.glif O O_.glif O-cy O_-cy.glif O.half O_.half.glif OE O_E_.glif Oacute O_acute.glif Oacute.loclPLK O_acute.loclP_L_K_.glif Obarred-cy O_barred-cy.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhookabove O_circumflexhookabove.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohm O_hm.glif Ohookabove O_hookabove.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhookabove O_hornhookabove.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omacronacute O_macronacute.glif Omacrongrave O_macrongrave.glif Omega O_mega.glif Omegatonos O_megatonos.glif Omicron O_micron.glif Omicrontonos O_microntonos.glif Oogonek O_ogonek.glif Oopen O_open.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif P.half P_.half.glif Palochka-cy P_alochka-cy.glif Pe-cy P_e-cy.glif Phi P_hi.glif Pi P_i.glif Psi P_si.glif Q Q_.glif Q.half Q_.half.glif R R_.glif R.half R_.half.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif Rdotbelow R_dotbelow.glif Rho R_ho.glif S S_.glif S.half S_.half.glif Sacute S_acute.glif Sacute.loclPLK S_acute.loclP_L_K_.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Schwa-cy S_chwa-cy.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif Sdotbelow S_dotbelow.glif Sha-cy S_ha-cy.glif Shcha-cy S_hcha-cy.glif Shha-cy S_hha-cy.glif Sigma S_igma.glif Softsign-cy S_oftsign-cy.glif T T_.glif T.half T_.half.glif Tau T_au.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Tdiagonalstroke T_diagonalstroke.glif Te-cy T_e-cy.glif Theta T_heta.glif Thorn T_horn.glif Tlinebelow T_linebelow.glif Tse-cy T_se-cy.glif Tshe-cy T_she-cy.glif U U_.glif U-cy U_-cy.glif U.half U_.half.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhookabove U_hookabove.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhookabove U_hornhookabove.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Umacron-cy U_macron-cy.glif Uogonek U_ogonek.glif Upsilon U_psilon.glif Upsilonafrican U_psilonafrican.glif Upsilondieresis U_psilondieresis.glif Upsilontonos U_psilontonos.glif Uring U_ring.glif Ushort-cy U_short-cy.glif Ustraight-cy U_straight-cy.glif Ustraightstroke-cy U_straightstroke-cy.glif Utilde U_tilde.glif V V_.glif V.half V_.half.glif Ve-cy V_e-cy.glif Vhook V_hook.glif Vturned V_turned.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif X.half X_.half.glif Xi X_i.glif Y Y_.glif Y.half Y_.half.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Yeru-cy Y_eru-cy.glif Ygrave Y_grave.glif Yhookabove Y_hookabove.glif Yi-cy Y_i-cy.glif Ymacron Y_macron.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zacute.loclPLK Z_acute.loclP_L_K_.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif Ze-cy Z_e-cy.glif Zeta Z_eta.glif Zhe-cy Z_he-cy.glif Zhedescender-cy Z_hedescender-cy.glif a a.glif a-cy a-cy.glif aacute aacute.glif abreve abreve.glif abreveacute abreveacute.glif abrevedotbelow abrevedotbelow.glif abrevegrave abrevegrave.glif abrevehookabove abrevehookabove.glif abrevetilde abrevetilde.glif acaron acaron.glif acircumflex acircumflex.glif acircumflexacute acircumflexacute.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexgrave acircumflexgrave.glif acircumflexhookabove acircumflexhookabove.glif acircumflextilde acircumflextilde.glif acknowledgeControl acknowledgeC_ontrol.glif acknowledgeControl.ss20 acknowledgeC_ontrol.ss20.glif acute acute.glif acutecomb acutecomb.glif acutecomb.case acutecomb.case.glif acutecomb.case.loclPLK acutecomb.case.loclP_L_K_.glif acutecomb.loclPLK acutecomb.loclP_L_K_.glif acutetonecomb acutetonecomb.glif adieresis adieresis.glif adotbelow adotbelow.glif ae ae.glif aeacute aeacute.glif agrave agrave.glif ahookabove ahookabove.glif alpha alpha.glif alpha-latin alpha-latin.glif alphatonos alphatonos.glif amacron amacron.glif ampersand ampersand.glif ampersand.BRACKET.600 ampersand.B_R_A_C_K_E_T_.600.glif ampersand_ampersand.liga ampersand_ampersand.liga.glif ampersand_ampersand.liga.BRACKET.600 ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif anoteleia anoteleia.glif aogonek aogonek.glif apostrophemod apostrophemod.glif approxequal approxequal.glif aring aring.glif aringacute aringacute.glif asciicircum asciicircum.glif asciicircum_equal.liga asciicircum_equal.liga.glif asciitilde asciitilde.glif asciitilde_asciitilde.liga asciitilde_asciitilde.liga.glif asciitilde_asciitilde_greater.liga asciitilde_asciitilde_greater.liga.glif asciitilde_at.liga asciitilde_at.liga.glif asciitilde_equal.liga asciitilde_equal.liga.glif asciitilde_greater.liga asciitilde_greater.liga.glif asciitilde_hyphen.liga asciitilde_hyphen.liga.glif asterisk asterisk.glif asterisk_asterisk.liga asterisk_asterisk.liga.glif asterisk_asterisk_asterisk.liga asterisk_asterisk_asterisk.liga.glif asterisk_greater.liga asterisk_greater.liga.glif asterisk_parenright.liga asterisk_parenright.liga.glif asterisk_slash.liga asterisk_slash.liga.glif at at.glif atilde atilde.glif b b.glif b.alt b.alt.glif backslash backslash.glif backslash_backslash.liga backslash_backslash.liga.glif backslash_slash.liga backslash_slash.liga.glif backspaceControl backspaceC_ontrol.glif backspaceControl.ss20 backspaceC_ontrol.ss20.glif baht baht.glif baht.BRACKET.600 baht.B_R_A_C_K_E_T_.600.glif bar bar.glif bar_bar.liga bar_bar.liga.glif bar_bar_bar.liga bar_bar_bar.liga.glif bar_bar_bar_greater.liga bar_bar_bar_greater.liga.glif bar_bar_equal_end.seq bar_bar_equal_end.seq.glif bar_bar_equal_middle.seq bar_bar_equal_middle.seq.glif bar_bar_equal_start.seq bar_bar_equal_start.seq.glif bar_bar_greater.liga bar_bar_greater.liga.glif bar_bar_hyphen_end.seq bar_bar_hyphen_end.seq.glif bar_bar_hyphen_middle.seq bar_bar_hyphen_middle.seq.glif bar_bar_hyphen_start.seq bar_bar_hyphen_start.seq.glif bar_braceright.liga bar_braceright.liga.glif bar_bracketright.liga bar_bracketright.liga.glif bar_equal_end.seq bar_equal_end.seq.glif bar_equal_middle.seq bar_equal_middle.seq.glif bar_equal_start.seq bar_equal_start.seq.glif bar_greater.liga bar_greater.liga.glif bar_hyphen_end.seq bar_hyphen_end.seq.glif bar_hyphen_middle.seq bar_hyphen_middle.seq.glif bar_hyphen_start.seq bar_hyphen_start.seq.glif bar_underscore_middle.seq bar_underscore_middle.seq.glif be-cy be-cy.glif be-cy.loclSRB be-cy.loclS_R_B_.glif bellControl bellC_ontrol.glif bellControl.ss20 bellC_ontrol.ss20.glif beta beta.glif bitcoin bitcoin.glif blackCircle blackC_ircle.glif blackDiamond blackD_iamond.glif blackHexagon blackH_exagon.glif blackHorizontalEllipse blackH_orizontalE_llipse.glif blackInWhiteDiamond blackI_nW_hiteD_iamond.glif blackLargeCircle blackL_argeC_ircle.glif blackLargeSquare blackL_argeS_quare.glif blackMediumDiamond blackM_ediumD_iamond.glif blackMediumDownTriangleCentred blackM_ediumD_ownT_riangleC_entred.glif blackMediumLeftTriangleCentred blackM_ediumL_eftT_riangleC_entred.glif blackMediumLozenge blackM_ediumL_ozenge.glif blackMediumRightTriangleCentred blackM_ediumR_ightT_riangleC_entred.glif blackMediumUpTriangleCentred blackM_ediumU_pT_riangleC_entred.glif blackParallelogram blackP_arallelogram.glif blackPentagon blackP_entagon.glif blackSmallDiamond blackS_mallD_iamond.glif blackSmallLozenge blackS_mallL_ozenge.glif blackSmallSquare blackS_mallS_quare.glif blackSmilingFace blackS_milingF_ace.glif blackSquare blackS_quare.glif blackVerticalEllipse blackV_erticalE_llipse.glif blackVerticalRect blackV_erticalR_ect.glif blackVerysmallSquare blackV_erysmallS_quare.glif blank blank.glif blank-braille blank-braille.glif blankSymbol blankS_ymbol.glif bottomHalfBlackCircle bottomH_alfB_lackC_ircle.glif bottomHalfBlackDiamond bottomH_alfB_lackD_iamond.glif boxDoubleDownAndHorizontal boxD_oubleD_ownA_ndH_orizontal.glif boxDoubleDownAndHorizontal.stypo boxD_oubleD_ownA_ndH_orizontal.stypo.glif boxDoubleDownAndLeft boxD_oubleD_ownA_ndL_eft.glif boxDoubleDownAndLeft.stypo boxD_oubleD_ownA_ndL_eft.stypo.glif boxDoubleDownAndRight boxD_oubleD_ownA_ndR_ight.glif boxDoubleDownAndRight.stypo boxD_oubleD_ownA_ndR_ight.stypo.glif boxDoubleHorizontal boxD_oubleH_orizontal.glif boxDoubleHorizontal.stypo boxD_oubleH_orizontal.stypo.glif boxDoubleUpAndHorizontal boxD_oubleU_pA_ndH_orizontal.glif boxDoubleUpAndHorizontal.stypo boxD_oubleU_pA_ndH_orizontal.stypo.glif boxDoubleUpAndLeft boxD_oubleU_pA_ndL_eft.glif boxDoubleUpAndLeft.stypo boxD_oubleU_pA_ndL_eft.stypo.glif boxDoubleUpAndRight boxD_oubleU_pA_ndR_ight.glif boxDoubleUpAndRight.stypo boxD_oubleU_pA_ndR_ight.stypo.glif boxDoubleVertical boxD_oubleV_ertical.glif boxDoubleVertical.stypo boxD_oubleV_ertical.stypo.glif boxDoubleVerticalAndHorizontal boxD_oubleV_erticalA_ndH_orizontal.glif boxDoubleVerticalAndHorizontal.stypo boxD_oubleV_erticalA_ndH_orizontal.stypo.glif boxDoubleVerticalAndLeft boxD_oubleV_erticalA_ndL_eft.glif boxDoubleVerticalAndLeft.stypo boxD_oubleV_erticalA_ndL_eft.stypo.glif boxDoubleVerticalAndRight boxD_oubleV_erticalA_ndR_ight.glif boxDoubleVerticalAndRight.stypo boxD_oubleV_erticalA_ndR_ight.stypo.glif boxDownDoubleAndHorizontalSingle boxD_ownD_oubleA_ndH_orizontalS_ingle.glif boxDownDoubleAndHorizontalSingle.stypo boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif boxDownDoubleAndLeftSingle boxD_ownD_oubleA_ndL_eftS_ingle.glif boxDownDoubleAndLeftSingle.stypo boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif boxDownDoubleAndRightSingle boxD_ownD_oubleA_ndR_ightS_ingle.glif boxDownDoubleAndRightSingle.stypo boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif boxDownHeavyAndHorizontalLight boxD_ownH_eavyA_ndH_orizontalL_ight.glif boxDownHeavyAndHorizontalLight.stypo boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif boxDownHeavyAndLeftLight boxD_ownH_eavyA_ndL_eftL_ight.glif boxDownHeavyAndLeftLight.stypo boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif boxDownHeavyAndLeftUpLight boxD_ownH_eavyA_ndL_eftU_pL_ight.glif boxDownHeavyAndLeftUpLight.stypo boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxDownHeavyAndRightLight boxD_ownH_eavyA_ndR_ightL_ight.glif boxDownHeavyAndRightLight.stypo boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif boxDownHeavyAndRightUpLight boxD_ownH_eavyA_ndR_ightU_pL_ight.glif boxDownHeavyAndRightUpLight.stypo boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxDownHeavyAndUpHorizontalLight boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif boxDownHeavyAndUpHorizontalLight.stypo boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif boxDownLightAndHorizontalHeavy boxD_ownL_ightA_ndH_orizontalH_eavy.glif boxDownLightAndHorizontalHeavy.stypo boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif boxDownLightAndLeftHeavy boxD_ownL_ightA_ndL_eftH_eavy.glif boxDownLightAndLeftHeavy.stypo boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif boxDownLightAndLeftUpHeavy boxD_ownL_ightA_ndL_eftU_pH_eavy.glif boxDownLightAndLeftUpHeavy.stypo boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif boxDownLightAndRightHeavy boxD_ownL_ightA_ndR_ightH_eavy.glif boxDownLightAndRightHeavy.stypo boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif boxDownLightAndRightUpHeavy boxD_ownL_ightA_ndR_ightU_pH_eavy.glif boxDownLightAndRightUpHeavy.stypo boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif boxDownLightAndUpHorizontalHeavy boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif boxDownLightAndUpHorizontalHeavy.stypo boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif boxDownSingleAndHorizontalDouble boxD_ownS_ingleA_ndH_orizontalD_ouble.glif boxDownSingleAndHorizontalDouble.stypo boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif boxDownSingleAndLeftDouble boxD_ownS_ingleA_ndL_eftD_ouble.glif boxDownSingleAndLeftDouble.stypo boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif boxDownSingleAndRightDouble boxD_ownS_ingleA_ndR_ightD_ouble.glif boxDownSingleAndRightDouble.stypo boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif boxHeavyDoubleDashHorizontal boxH_eavyD_oubleD_ashH_orizontal.glif boxHeavyDoubleDashHorizontal.stypo boxH_eavyD_oubleD_ashH_orizontal.stypo.glif boxHeavyDoubleDashVertical boxH_eavyD_oubleD_ashV_ertical.glif boxHeavyDoubleDashVertical.stypo boxH_eavyD_oubleD_ashV_ertical.stypo.glif boxHeavyDown boxH_eavyD_own.glif boxHeavyDown.stypo boxH_eavyD_own.stypo.glif boxHeavyDownAndHorizontal boxH_eavyD_ownA_ndH_orizontal.glif boxHeavyDownAndHorizontal.stypo boxH_eavyD_ownA_ndH_orizontal.stypo.glif boxHeavyDownAndLeft boxH_eavyD_ownA_ndL_eft.glif boxHeavyDownAndLeft.stypo boxH_eavyD_ownA_ndL_eft.stypo.glif boxHeavyDownAndRight boxH_eavyD_ownA_ndR_ight.glif boxHeavyDownAndRight.stypo boxH_eavyD_ownA_ndR_ight.stypo.glif boxHeavyHorizontal boxH_eavyH_orizontal.glif boxHeavyHorizontal.stypo boxH_eavyH_orizontal.stypo.glif boxHeavyLeft boxH_eavyL_eft.glif boxHeavyLeft.stypo boxH_eavyL_eft.stypo.glif boxHeavyLeftAndLightRight boxH_eavyL_eftA_ndL_ightR_ight.glif boxHeavyLeftAndLightRight.stypo boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif boxHeavyQuadrupleDashHorizontal boxH_eavyQ_uadrupleD_ashH_orizontal.glif boxHeavyQuadrupleDashHorizontal.stypo boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif boxHeavyQuadrupleDashVertical boxH_eavyQ_uadrupleD_ashV_ertical.glif boxHeavyQuadrupleDashVertical.stypo boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif boxHeavyRight boxH_eavyR_ight.glif boxHeavyRight.stypo boxH_eavyR_ight.stypo.glif boxHeavyTripleDashHorizontal boxH_eavyT_ripleD_ashH_orizontal.glif boxHeavyTripleDashHorizontal.stypo boxH_eavyT_ripleD_ashH_orizontal.stypo.glif boxHeavyTripleDashVertical boxH_eavyT_ripleD_ashV_ertical.glif boxHeavyTripleDashVertical.stypo boxH_eavyT_ripleD_ashV_ertical.stypo.glif boxHeavyUp boxH_eavyU_p.glif boxHeavyUp.stypo boxH_eavyU_p.stypo.glif boxHeavyUpAndHorizontal boxH_eavyU_pA_ndH_orizontal.glif boxHeavyUpAndHorizontal.stypo boxH_eavyU_pA_ndH_orizontal.stypo.glif boxHeavyUpAndLeft boxH_eavyU_pA_ndL_eft.glif boxHeavyUpAndLeft.stypo boxH_eavyU_pA_ndL_eft.stypo.glif boxHeavyUpAndLightDown boxH_eavyU_pA_ndL_ightD_own.glif boxHeavyUpAndLightDown.stypo boxH_eavyU_pA_ndL_ightD_own.stypo.glif boxHeavyUpAndRight boxH_eavyU_pA_ndR_ight.glif boxHeavyUpAndRight.stypo boxH_eavyU_pA_ndR_ight.stypo.glif boxHeavyVertical boxH_eavyV_ertical.glif boxHeavyVertical.stypo boxH_eavyV_ertical.stypo.glif boxHeavyVerticalAndHorizontal boxH_eavyV_erticalA_ndH_orizontal.glif boxHeavyVerticalAndHorizontal.stypo boxH_eavyV_erticalA_ndH_orizontal.stypo.glif boxHeavyVerticalAndLeft boxH_eavyV_erticalA_ndL_eft.glif boxHeavyVerticalAndLeft.stypo boxH_eavyV_erticalA_ndL_eft.stypo.glif boxHeavyVerticalAndRight boxH_eavyV_erticalA_ndR_ight.glif boxHeavyVerticalAndRight.stypo boxH_eavyV_erticalA_ndR_ight.stypo.glif boxLeftDownHeavyAndRightUpLight boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif boxLeftDownHeavyAndRightUpLight.stypo boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightDownLight boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif boxLeftHeavyAndRightDownLight.stypo boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLeftHeavyAndRightUpLight boxL_eftH_eavyA_ndR_ightU_pL_ight.glif boxLeftHeavyAndRightUpLight.stypo boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif boxLeftHeavyAndRightVerticalLight boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif boxLeftHeavyAndRightVerticalLight.stypo boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif boxLeftLightAndRightDownHeavy boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif boxLeftLightAndRightDownHeavy.stypo boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxLeftLightAndRightUpHeavy boxL_eftL_ightA_ndR_ightU_pH_eavy.glif boxLeftLightAndRightUpHeavy.stypo boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif boxLeftLightAndRightVerticalHeavy boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif boxLeftLightAndRightVerticalHeavy.stypo boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif boxLeftUpHeavyAndRightDownLight boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif boxLeftUpHeavyAndRightDownLight.stypo boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxLightArcDownAndLeft boxL_ightA_rcD_ownA_ndL_eft.glif boxLightArcDownAndLeft.stypo boxL_ightA_rcD_ownA_ndL_eft.stypo.glif boxLightArcDownAndRight boxL_ightA_rcD_ownA_ndR_ight.glif boxLightArcDownAndRight.stypo boxL_ightA_rcD_ownA_ndR_ight.stypo.glif boxLightArcUpAndLeft boxL_ightA_rcU_pA_ndL_eft.glif boxLightArcUpAndLeft.stypo boxL_ightA_rcU_pA_ndL_eft.stypo.glif boxLightArcUpAndRight boxL_ightA_rcU_pA_ndR_ight.glif boxLightArcUpAndRight.stypo boxL_ightA_rcU_pA_ndR_ight.stypo.glif boxLightDiagonalCross boxL_ightD_iagonalC_ross.glif boxLightDiagonalCross.stypo boxL_ightD_iagonalC_ross.stypo.glif boxLightDiagonalUpperLeftToLowerRight boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif boxLightDiagonalUpperLeftToLowerRight.stypo boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif boxLightDiagonalUpperRightToLowerLeft boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif boxLightDiagonalUpperRightToLowerLeft.stypo boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif boxLightDoubleDashHorizontal boxL_ightD_oubleD_ashH_orizontal.glif boxLightDoubleDashHorizontal.stypo boxL_ightD_oubleD_ashH_orizontal.stypo.glif boxLightDoubleDashVertical boxL_ightD_oubleD_ashV_ertical.glif boxLightDoubleDashVertical.stypo boxL_ightD_oubleD_ashV_ertical.stypo.glif boxLightDown boxL_ightD_own.glif boxLightDown.stypo boxL_ightD_own.stypo.glif boxLightDownAndHorizontal boxL_ightD_ownA_ndH_orizontal.glif boxLightDownAndHorizontal.stypo boxL_ightD_ownA_ndH_orizontal.stypo.glif boxLightDownAndLeft boxL_ightD_ownA_ndL_eft.glif boxLightDownAndLeft.stypo boxL_ightD_ownA_ndL_eft.stypo.glif boxLightDownAndRight boxL_ightD_ownA_ndR_ight.glif boxLightDownAndRight.stypo boxL_ightD_ownA_ndR_ight.stypo.glif boxLightHorizontal boxL_ightH_orizontal.glif boxLightHorizontal.stypo boxL_ightH_orizontal.stypo.glif boxLightLeft boxL_ightL_eft.glif boxLightLeft.stypo boxL_ightL_eft.stypo.glif boxLightLeftAndHeavyRight boxL_ightL_eftA_ndH_eavyR_ight.glif boxLightLeftAndHeavyRight.stypo boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif boxLightQuadrupleDashHorizontal boxL_ightQ_uadrupleD_ashH_orizontal.glif boxLightQuadrupleDashHorizontal.stypo boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif boxLightQuadrupleDashVertical boxL_ightQ_uadrupleD_ashV_ertical.glif boxLightQuadrupleDashVertical.stypo boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif boxLightRight boxL_ightR_ight.glif boxLightRight.stypo boxL_ightR_ight.stypo.glif boxLightTripleDashHorizontal boxL_ightT_ripleD_ashH_orizontal.glif boxLightTripleDashHorizontal.stypo boxL_ightT_ripleD_ashH_orizontal.stypo.glif boxLightTripleDashVertical boxL_ightT_ripleD_ashV_ertical.glif boxLightTripleDashVertical.stypo boxL_ightT_ripleD_ashV_ertical.stypo.glif boxLightUp boxL_ightU_p.glif boxLightUp.stypo boxL_ightU_p.stypo.glif boxLightUpAndHeavyDown boxL_ightU_pA_ndH_eavyD_own.glif boxLightUpAndHeavyDown.stypo boxL_ightU_pA_ndH_eavyD_own.stypo.glif boxLightUpAndHorizontal boxL_ightU_pA_ndH_orizontal.glif boxLightUpAndHorizontal.stypo boxL_ightU_pA_ndH_orizontal.stypo.glif boxLightUpAndLeft boxL_ightU_pA_ndL_eft.glif boxLightUpAndLeft.stypo boxL_ightU_pA_ndL_eft.stypo.glif boxLightUpAndRight boxL_ightU_pA_ndR_ight.glif boxLightUpAndRight.stypo boxL_ightU_pA_ndR_ight.stypo.glif boxLightVertical boxL_ightV_ertical.glif boxLightVertical.stypo boxL_ightV_ertical.stypo.glif boxLightVerticalAndHorizontal boxL_ightV_erticalA_ndH_orizontal.glif boxLightVerticalAndHorizontal.stypo boxL_ightV_erticalA_ndH_orizontal.stypo.glif boxLightVerticalAndLeft boxL_ightV_erticalA_ndL_eft.glif boxLightVerticalAndLeft.stypo boxL_ightV_erticalA_ndL_eft.stypo.glif boxLightVerticalAndRight boxL_ightV_erticalA_ndR_ight.glif boxLightVerticalAndRight.stypo boxL_ightV_erticalA_ndR_ight.stypo.glif boxRightDownHeavyAndLeftUpLight boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif boxRightDownHeavyAndLeftUpLight.stypo boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftDownLight boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif boxRightHeavyAndLeftDownLight.stypo boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxRightHeavyAndLeftUpLight boxR_ightH_eavyA_ndL_eftU_pL_ight.glif boxRightHeavyAndLeftUpLight.stypo boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif boxRightHeavyAndLeftVerticalLight boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif boxRightHeavyAndLeftVerticalLight.stypo boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif boxRightLightAndLeftDownHeavy boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif boxRightLightAndLeftDownHeavy.stypo boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxRightLightAndLeftUpHeavy boxR_ightL_ightA_ndL_eftU_pH_eavy.glif boxRightLightAndLeftUpHeavy.stypo boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif boxRightLightAndLeftVerticalHeavy boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif boxRightLightAndLeftVerticalHeavy.stypo boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif boxRightUpHeavyAndLeftDownLight boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif boxRightUpHeavyAndLeftDownLight.stypo boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpDoubleAndHorizontalSingle boxU_pD_oubleA_ndH_orizontalS_ingle.glif boxUpDoubleAndHorizontalSingle.stypo boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif boxUpDoubleAndLeftSingle boxU_pD_oubleA_ndL_eftS_ingle.glif boxUpDoubleAndLeftSingle.stypo boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif boxUpDoubleAndRightSingle boxU_pD_oubleA_ndR_ightS_ingle.glif boxUpDoubleAndRightSingle.stypo boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif boxUpHeavyAndDownHorizontalLight boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif boxUpHeavyAndDownHorizontalLight.stypo boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif boxUpHeavyAndHorizontalLight boxU_pH_eavyA_ndH_orizontalL_ight.glif boxUpHeavyAndHorizontalLight.stypo boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif boxUpHeavyAndLeftDownLight boxU_pH_eavyA_ndL_eftD_ownL_ight.glif boxUpHeavyAndLeftDownLight.stypo boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif boxUpHeavyAndLeftLight boxU_pH_eavyA_ndL_eftL_ight.glif boxUpHeavyAndLeftLight.stypo boxU_pH_eavyA_ndL_eftL_ight.stypo.glif boxUpHeavyAndRightDownLight boxU_pH_eavyA_ndR_ightD_ownL_ight.glif boxUpHeavyAndRightDownLight.stypo boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif boxUpHeavyAndRightLight boxU_pH_eavyA_ndR_ightL_ight.glif boxUpHeavyAndRightLight.stypo boxU_pH_eavyA_ndR_ightL_ight.stypo.glif boxUpLightAndDownHorizontalHeavy boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif boxUpLightAndDownHorizontalHeavy.stypo boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif boxUpLightAndHorizontalHeavy boxU_pL_ightA_ndH_orizontalH_eavy.glif boxUpLightAndHorizontalHeavy.stypo boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif boxUpLightAndLeftDownHeavy boxU_pL_ightA_ndL_eftD_ownH_eavy.glif boxUpLightAndLeftDownHeavy.stypo boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif boxUpLightAndLeftHeavy boxU_pL_ightA_ndL_eftH_eavy.glif boxUpLightAndLeftHeavy.stypo boxU_pL_ightA_ndL_eftH_eavy.stypo.glif boxUpLightAndRightDownHeavy boxU_pL_ightA_ndR_ightD_ownH_eavy.glif boxUpLightAndRightDownHeavy.stypo boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif boxUpLightAndRightHeavy boxU_pL_ightA_ndR_ightH_eavy.glif boxUpLightAndRightHeavy.stypo boxU_pL_ightA_ndR_ightH_eavy.stypo.glif boxUpSingleAndHorizontalDouble boxU_pS_ingleA_ndH_orizontalD_ouble.glif boxUpSingleAndHorizontalDouble.stypo boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif boxUpSingleAndLeftDouble boxU_pS_ingleA_ndL_eftD_ouble.glif boxUpSingleAndLeftDouble.stypo boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif boxUpSingleAndRightDouble boxU_pS_ingleA_ndR_ightD_ouble.glif boxUpSingleAndRightDouble.stypo boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif boxVerticalDoubleAndHorizontalSingle boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif boxVerticalDoubleAndHorizontalSingle.stypo boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif boxVerticalDoubleAndLeftSingle boxV_erticalD_oubleA_ndL_eftS_ingle.glif boxVerticalDoubleAndLeftSingle.stypo boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif boxVerticalDoubleAndRightSingle boxV_erticalD_oubleA_ndR_ightS_ingle.glif boxVerticalDoubleAndRightSingle.stypo boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif boxVerticalHeavyAndHorizontalLight boxV_erticalH_eavyA_ndH_orizontalL_ight.glif boxVerticalHeavyAndHorizontalLight.stypo boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif boxVerticalHeavyAndLeftLight boxV_erticalH_eavyA_ndL_eftL_ight.glif boxVerticalHeavyAndLeftLight.stypo boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif boxVerticalHeavyAndRightLight boxV_erticalH_eavyA_ndR_ightL_ight.glif boxVerticalHeavyAndRightLight.stypo boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif boxVerticalLightAndHorizontalHeavy boxV_erticalL_ightA_ndH_orizontalH_eavy.glif boxVerticalLightAndHorizontalHeavy.stypo boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif boxVerticalLightAndLeftHeavy boxV_erticalL_ightA_ndL_eftH_eavy.glif boxVerticalLightAndLeftHeavy.stypo boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif boxVerticalLightAndRightHeavy boxV_erticalL_ightA_ndR_ightH_eavy.glif boxVerticalLightAndRightHeavy.stypo boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif boxVerticalSingleAndHorizontalDouble boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif boxVerticalSingleAndHorizontalDouble.stypo boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif boxVerticalSingleAndLeftDouble boxV_erticalS_ingleA_ndL_eftD_ouble.glif boxVerticalSingleAndLeftDouble.stypo boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif boxVerticalSingleAndRightDouble boxV_erticalS_ingleA_ndR_ightD_ouble.glif boxVerticalSingleAndRightDouble.stypo boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif braceleft braceleft.glif braceleft_bar.liga braceleft_bar.liga.glif braceright braceright.glif braceright_numbersign.liga braceright_numbersign.liga.glif bracketleft bracketleft.glif bracketleft_bar.liga bracketleft_bar.liga.glif bracketright bracketright.glif bracketright_numbersign.liga bracketright_numbersign.liga.glif breve breve.glif brevecomb brevecomb.glif brevecomb-cy brevecomb-cy.glif brevecomb-cy.case brevecomb-cy.case.glif brevecomb.case brevecomb.case.glif brokenbar brokenbar.glif bullet bullet.glif bulletoperator bulletoperator.glif bullseye bullseye.glif c c.glif cacute cacute.glif cacute.loclPLK cacute.loclP_L_K_.glif cancelControl cancelC_ontrol.glif cancelControl.ss20 cancelC_ontrol.ss20.glif careof careof.glif caron caron.glif caroncomb caroncomb.glif caroncomb.case caroncomb.case.glif carriageReturnControl carriageR_eturnC_ontrol.glif carriageReturnControl.ss20 carriageR_eturnC_ontrol.ss20.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif cent cent.glif che-cy che-cy.glif che-cy.salt che-cy.salt.glif checkmark checkmark.glif chedescender-cy chedescender-cy.glif chedescender-cy.salt chedescender-cy.salt.glif chi chi.glif circumflex circumflex.glif circumflexcomb circumflexcomb.glif circumflexcomb.case circumflexcomb.case.glif clubBlackSuit clubB_lackS_uit.glif colon colon.glif colon.center colon.center.glif colon_colon.liga colon_colon.liga.glif colon_colon_colon.liga colon_colon_colon.liga.glif colon_colon_equal.liga colon_colon_equal.liga.glif colon_equal.liga colon_equal.liga.glif colon_equal_middle.seq colon_equal_middle.seq.glif colon_slash_slash.liga colon_slash_slash.liga.glif colonsign colonsign.glif colontriangularmod colontriangularmod.glif comma comma.glif commaabovecomb commaabovecomb.glif commaaboverightcomb commaaboverightcomb.glif commaaccentcomb commaaccentcomb.glif commaturnedabovecomb commaturnedabovecomb.glif commaturnedmod commaturnedmod.glif copyright copyright.glif crosshatchFillSquare crosshatchF_illS_quare.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dashdownArrow dashdownA_rrow.glif dataLinkEscapeControl dataL_inkE_scapeC_ontrol.glif dataLinkEscapeControl.ss20 dataL_inkE_scapeC_ontrol.ss20.glif dcaron dcaron.glif dcaron.alt dcaron.alt.glif dcroat dcroat.glif de-cy de-cy.glif de-cy.loclBGR de-cy.loclB_G_R_.glif degree degree.glif deleteControl deleteC_ontrol.glif deleteFormTwoControl deleteF_ormT_woC_ontrol.glif delta delta.glif deviceControlFourControl deviceC_ontrolF_ourC_ontrol.glif deviceControlOneControl deviceC_ontrolO_neC_ontrol.glif deviceControlThreeControl deviceC_ontrolT_hreeC_ontrol.glif deviceControlTwoControl deviceC_ontrolT_woC_ontrol.glif diagonalcrosshatchFillSquare diagonalcrosshatchF_illS_quare.glif diamondBlackSuit diamondB_lackS_uit.glif dieresis dieresis.glif dieresiscomb dieresiscomb.glif dieresiscomb.case dieresiscomb.case.glif dieresistonos dieresistonos.glif divide divide.glif divisionslash divisionslash.glif dje-cy dje-cy.glif dollar dollar.glif dollar.BRACKET.600 dollar.B_R_A_C_K_E_T_.600.glif dollar_greater.liga dollar_greater.liga.glif dollar_greater.liga.BRACKET.600 dollar_greater.liga.B_R_A_C_K_E_T_.600.glif dong dong.glif dotaccent dotaccent.glif dotaccentcomb dotaccentcomb.glif dotaccentcomb.case dotaccentcomb.case.glif dotbelowcomb dotbelowcomb.glif dots1-braille dots1-braille.glif dots12-braille dots12-braille.glif dots123-braille dots123-braille.glif dots1234-braille dots1234-braille.glif dots12345-braille dots12345-braille.glif dots123456-braille dots123456-braille.glif dots1234567-braille dots1234567-braille.glif dots12345678-braille dots12345678-braille.glif dots1234568-braille dots1234568-braille.glif dots123457-braille dots123457-braille.glif dots1234578-braille dots1234578-braille.glif dots123458-braille dots123458-braille.glif dots12346-braille dots12346-braille.glif dots123467-braille dots123467-braille.glif dots1234678-braille dots1234678-braille.glif dots123468-braille dots123468-braille.glif dots12347-braille dots12347-braille.glif dots123478-braille dots123478-braille.glif dots12348-braille dots12348-braille.glif dots1235-braille dots1235-braille.glif dots12356-braille dots12356-braille.glif dots123567-braille dots123567-braille.glif dots1235678-braille dots1235678-braille.glif dots123568-braille dots123568-braille.glif dots12357-braille dots12357-braille.glif dots123578-braille dots123578-braille.glif dots12358-braille dots12358-braille.glif dots1236-braille dots1236-braille.glif dots12367-braille dots12367-braille.glif dots123678-braille dots123678-braille.glif dots12368-braille dots12368-braille.glif dots1237-braille dots1237-braille.glif dots12378-braille dots12378-braille.glif dots1238-braille dots1238-braille.glif dots124-braille dots124-braille.glif dots1245-braille dots1245-braille.glif dots12456-braille dots12456-braille.glif dots124567-braille dots124567-braille.glif dots1245678-braille dots1245678-braille.glif dots124568-braille dots124568-braille.glif dots12457-braille dots12457-braille.glif dots124578-braille dots124578-braille.glif dots12458-braille dots12458-braille.glif dots1246-braille dots1246-braille.glif dots12467-braille dots12467-braille.glif dots124678-braille dots124678-braille.glif dots12468-braille dots12468-braille.glif dots1247-braille dots1247-braille.glif dots12478-braille dots12478-braille.glif dots1248-braille dots1248-braille.glif dots125-braille dots125-braille.glif dots1256-braille dots1256-braille.glif dots12567-braille dots12567-braille.glif dots125678-braille dots125678-braille.glif dots12568-braille dots12568-braille.glif dots1257-braille dots1257-braille.glif dots12578-braille dots12578-braille.glif dots1258-braille dots1258-braille.glif dots126-braille dots126-braille.glif dots1267-braille dots1267-braille.glif dots12678-braille dots12678-braille.glif dots1268-braille dots1268-braille.glif dots127-braille dots127-braille.glif dots1278-braille dots1278-braille.glif dots128-braille dots128-braille.glif dots13-braille dots13-braille.glif dots134-braille dots134-braille.glif dots1345-braille dots1345-braille.glif dots13456-braille dots13456-braille.glif dots134567-braille dots134567-braille.glif dots1345678-braille dots1345678-braille.glif dots134568-braille dots134568-braille.glif dots13457-braille dots13457-braille.glif dots134578-braille dots134578-braille.glif dots13458-braille dots13458-braille.glif dots1346-braille dots1346-braille.glif dots13467-braille dots13467-braille.glif dots134678-braille dots134678-braille.glif dots13468-braille dots13468-braille.glif dots1347-braille dots1347-braille.glif dots13478-braille dots13478-braille.glif dots1348-braille dots1348-braille.glif dots135-braille dots135-braille.glif dots1356-braille dots1356-braille.glif dots13567-braille dots13567-braille.glif dots135678-braille dots135678-braille.glif dots13568-braille dots13568-braille.glif dots1357-braille dots1357-braille.glif dots13578-braille dots13578-braille.glif dots1358-braille dots1358-braille.glif dots136-braille dots136-braille.glif dots1367-braille dots1367-braille.glif dots13678-braille dots13678-braille.glif dots1368-braille dots1368-braille.glif dots137-braille dots137-braille.glif dots1378-braille dots1378-braille.glif dots138-braille dots138-braille.glif dots14-braille dots14-braille.glif dots145-braille dots145-braille.glif dots1456-braille dots1456-braille.glif dots14567-braille dots14567-braille.glif dots145678-braille dots145678-braille.glif dots14568-braille dots14568-braille.glif dots1457-braille dots1457-braille.glif dots14578-braille dots14578-braille.glif dots1458-braille dots1458-braille.glif dots146-braille dots146-braille.glif dots1467-braille dots1467-braille.glif dots14678-braille dots14678-braille.glif dots1468-braille dots1468-braille.glif dots147-braille dots147-braille.glif dots1478-braille dots1478-braille.glif dots148-braille dots148-braille.glif dots15-braille dots15-braille.glif dots156-braille dots156-braille.glif dots1567-braille dots1567-braille.glif dots15678-braille dots15678-braille.glif dots1568-braille dots1568-braille.glif dots157-braille dots157-braille.glif dots1578-braille dots1578-braille.glif dots158-braille dots158-braille.glif dots16-braille dots16-braille.glif dots167-braille dots167-braille.glif dots1678-braille dots1678-braille.glif dots168-braille dots168-braille.glif dots17-braille dots17-braille.glif dots178-braille dots178-braille.glif dots18-braille dots18-braille.glif dots2-braille dots2-braille.glif dots23-braille dots23-braille.glif dots234-braille dots234-braille.glif dots2345-braille dots2345-braille.glif dots23456-braille dots23456-braille.glif dots234567-braille dots234567-braille.glif dots2345678-braille dots2345678-braille.glif dots234568-braille dots234568-braille.glif dots23457-braille dots23457-braille.glif dots234578-braille dots234578-braille.glif dots23458-braille dots23458-braille.glif dots2346-braille dots2346-braille.glif dots23467-braille dots23467-braille.glif dots234678-braille dots234678-braille.glif dots23468-braille dots23468-braille.glif dots2347-braille dots2347-braille.glif dots23478-braille dots23478-braille.glif dots2348-braille dots2348-braille.glif dots235-braille dots235-braille.glif dots2356-braille dots2356-braille.glif dots23567-braille dots23567-braille.glif dots235678-braille dots235678-braille.glif dots23568-braille dots23568-braille.glif dots2357-braille dots2357-braille.glif dots23578-braille dots23578-braille.glif dots2358-braille dots2358-braille.glif dots236-braille dots236-braille.glif dots2367-braille dots2367-braille.glif dots23678-braille dots23678-braille.glif dots2368-braille dots2368-braille.glif dots237-braille dots237-braille.glif dots2378-braille dots2378-braille.glif dots238-braille dots238-braille.glif dots24-braille dots24-braille.glif dots245-braille dots245-braille.glif dots2456-braille dots2456-braille.glif dots24567-braille dots24567-braille.glif dots245678-braille dots245678-braille.glif dots24568-braille dots24568-braille.glif dots2457-braille dots2457-braille.glif dots24578-braille dots24578-braille.glif dots2458-braille dots2458-braille.glif dots246-braille dots246-braille.glif dots2467-braille dots2467-braille.glif dots24678-braille dots24678-braille.glif dots2468-braille dots2468-braille.glif dots247-braille dots247-braille.glif dots2478-braille dots2478-braille.glif dots248-braille dots248-braille.glif dots25-braille dots25-braille.glif dots256-braille dots256-braille.glif dots2567-braille dots2567-braille.glif dots25678-braille dots25678-braille.glif dots2568-braille dots2568-braille.glif dots257-braille dots257-braille.glif dots2578-braille dots2578-braille.glif dots258-braille dots258-braille.glif dots26-braille dots26-braille.glif dots267-braille dots267-braille.glif dots2678-braille dots2678-braille.glif dots268-braille dots268-braille.glif dots27-braille dots27-braille.glif dots278-braille dots278-braille.glif dots28-braille dots28-braille.glif dots3-braille dots3-braille.glif dots34-braille dots34-braille.glif dots345-braille dots345-braille.glif dots3456-braille dots3456-braille.glif dots34567-braille dots34567-braille.glif dots345678-braille dots345678-braille.glif dots34568-braille dots34568-braille.glif dots3457-braille dots3457-braille.glif dots34578-braille dots34578-braille.glif dots3458-braille dots3458-braille.glif dots346-braille dots346-braille.glif dots3467-braille dots3467-braille.glif dots34678-braille dots34678-braille.glif dots3468-braille dots3468-braille.glif dots347-braille dots347-braille.glif dots3478-braille dots3478-braille.glif dots348-braille dots348-braille.glif dots35-braille dots35-braille.glif dots356-braille dots356-braille.glif dots3567-braille dots3567-braille.glif dots35678-braille dots35678-braille.glif dots3568-braille dots3568-braille.glif dots357-braille dots357-braille.glif dots3578-braille dots3578-braille.glif dots358-braille dots358-braille.glif dots36-braille dots36-braille.glif dots367-braille dots367-braille.glif dots3678-braille dots3678-braille.glif dots368-braille dots368-braille.glif dots37-braille dots37-braille.glif dots378-braille dots378-braille.glif dots38-braille dots38-braille.glif dots4-braille dots4-braille.glif dots45-braille dots45-braille.glif dots456-braille dots456-braille.glif dots4567-braille dots4567-braille.glif dots45678-braille dots45678-braille.glif dots4568-braille dots4568-braille.glif dots457-braille dots457-braille.glif dots4578-braille dots4578-braille.glif dots458-braille dots458-braille.glif dots46-braille dots46-braille.glif dots467-braille dots467-braille.glif dots4678-braille dots4678-braille.glif dots468-braille dots468-braille.glif dots47-braille dots47-braille.glif dots478-braille dots478-braille.glif dots48-braille dots48-braille.glif dots5-braille dots5-braille.glif dots56-braille dots56-braille.glif dots567-braille dots567-braille.glif dots5678-braille dots5678-braille.glif dots568-braille dots568-braille.glif dots57-braille dots57-braille.glif dots578-braille dots578-braille.glif dots58-braille dots58-braille.glif dots6-braille dots6-braille.glif dots67-braille dots67-braille.glif dots678-braille dots678-braille.glif dots68-braille dots68-braille.glif dots7-braille dots7-braille.glif dots78-braille dots78-braille.glif dots8-braille dots8-braille.glif dottedCircle dottedC_ircle.glif dottedSquare dottedS_quare.glif downArrow downA_rrow.glif downBlackSmallTriangle downB_lackS_mallT_riangle.glif downBlackTriangle downB_lackT_riangle.glif downTipLeftArrow downT_ipL_eftA_rrow.glif downWhiteSmallTriangle downW_hiteS_mallT_riangle.glif downWhiteTriangle downW_hiteT_riangle.glif dtail dtail.glif dze-cy dze-cy.glif dzhe-cy dzhe-cy.glif e e.glif e-cy e-cy.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhookabove ecircumflexhookabove.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif ef-cy ef-cy.glif egrave egrave.glif ehookabove ehookabove.glif eight eight.glif eight.dnom eight.dnom.glif eight.numr eight.numr.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif el-cy el-cy.glif ellipsis ellipsis.glif em-cy em-cy.glif emacron emacron.glif emdash emdash.glif en-cy en-cy.glif endOfMediumControl endO_fM_ediumC_ontrol.glif endOfMediumControl.ss20 endO_fM_ediumC_ontrol.ss20.glif endOfTextControl endO_fT_extC_ontrol.glif endOfTextControl.ss20 endO_fT_extC_ontrol.ss20.glif endOfTransmissionBlockControl endO_fT_ransmissionB_lockC_ontrol.glif endOfTransmissionBlockControl.ss20 endO_fT_ransmissionB_lockC_ontrol.ss20.glif endOfTransmissionControl endO_fT_ransmissionC_ontrol.glif endOfTransmissionControl.ss20 endO_fT_ransmissionC_ontrol.ss20.glif endash endash.glif endescender-cy endescender-cy.glif eng eng.glif enquiryControl enquiryC_ontrol.glif enquiryControl.ss20 enquiryC_ontrol.ss20.glif eogonek eogonek.glif eopen eopen.glif epsilon epsilon.glif epsilontonos epsilontonos.glif equal equal.glif equal_end.seq equal_end.seq.glif equal_equal.liga equal_equal.liga.glif equal_equal_equal.liga equal_equal_equal.liga.glif equal_greater_greater.liga equal_greater_greater.liga.glif equal_less_less.liga equal_less_less.liga.glif equal_middle.seq equal_middle.seq.glif equal_start.seq equal_start.seq.glif equivalence equivalence.glif er-cy er-cy.glif ereversed-cy ereversed-cy.glif es-cy es-cy.glif escapeControl escapeC_ontrol.glif escapeControl.ss20 escapeC_ontrol.ss20.glif esh esh.glif estimated estimated.glif eta eta.glif etatonos etatonos.glif eth eth.glif etilde etilde.glif eturned eturned.glif euro euro.glif eurocurrency eurocurrency.glif exclam exclam.glif exclam_colon.liga exclam_colon.liga.glif exclam_equal.liga exclam_equal.liga.glif exclam_equal_equal.liga exclam_equal_equal.liga.glif exclam_equal_middle.seq exclam_equal_middle.seq.glif exclam_exclam.liga exclam_exclam.liga.glif exclam_exclam_period.liga exclam_exclam_period.liga.glif exclam_period.liga exclam_period.liga.glif exclamdouble exclamdouble.glif exclamdown exclamdown.glif ezh ezh.glif f f.glif f.locl f.locl.glif f.salt f.salt.glif fi fi.glif fileSeparatorControl fileS_eparatorC_ontrol.glif filledRect filledR_ect.glif firsttonechinese firsttonechinese.glif fisheye fisheye.glif five five.glif five.dnom five.dnom.glif five.numr five.numr.glif fiveeighths fiveeighths.glif fiveeighths.BRACKET.500 fiveeighths.B_R_A_C_K_E_T_.500.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif formFeedControl formF_eedC_ontrol.glif formFeedControl.ss20 formF_eedC_ontrol.ss20.glif four four.glif four.dnom four.dnom.glif four.half four.half.glif four.numr four.numr.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fraction fraction.glif franc franc.glif fullBlock fullB_lock.glif fullBlock.stypo fullB_lock.stypo.glif g g.glif gamma gamma.glif gamma-latin gamma-latin.glif gbreve gbreve.glif gcaron gcaron.glif gcircumflex gcircumflex.glif gcommaaccent gcommaaccent.glif gdotaccent gdotaccent.glif ge-cy ge-cy.glif ge-cy.loclSRB ge-cy.loclS_R_B_.glif germandbls germandbls.glif ghestroke-cy ghestroke-cy.glif gheupturn-cy gheupturn-cy.glif gje-cy gje-cy.glif glottalstop glottalstop.glif glottalstopmod glottalstopmod.glif glottalstopreversed glottalstopreversed.glif grave grave.glif gravecomb gravecomb.glif gravecomb.case gravecomb.case.glif gravetonecomb gravetonecomb.glif greater greater.glif greater.alt greater.alt.glif greater.center greater.center.glif greater_equal.liga greater_equal.liga.glif greater_equal_end.seq greater_equal_end.seq.glif greater_equal_middle.seq greater_equal_middle.seq.glif greater_equal_start.seq greater_equal_start.seq.glif greater_greater.liga greater_greater.liga.glif greater_greater_equal.liga greater_greater_equal.liga.glif greater_greater_equal_end.seq greater_greater_equal_end.seq.glif greater_greater_equal_middle.seq greater_greater_equal_middle.seq.glif greater_greater_equal_start.seq greater_greater_equal_start.seq.glif greater_greater_greater.liga greater_greater_greater.liga.glif greater_greater_hyphen_end.seq greater_greater_hyphen_end.seq.glif greater_greater_hyphen_middle.seq greater_greater_hyphen_middle.seq.glif greater_greater_hyphen_start.seq greater_greater_hyphen_start.seq.glif greater_hyphen_end.seq greater_hyphen_end.seq.glif greater_hyphen_middle.seq greater_hyphen_middle.seq.glif greater_hyphen_start.seq greater_hyphen_start.seq.glif greaterequal greaterequal.glif groupSeparatorControl groupS_eparatorC_ontrol.glif gstroke gstroke.glif guarani guarani.glif guillemetleft guillemetleft.glif guillemetright guillemetright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif h.alt h.alt.glif ha-cy ha-cy.glif hadescender-cy hadescender-cy.glif hardsign-cy hardsign-cy.glif hbar hbar.glif hcaron hcaron.glif hcircumflex hcircumflex.glif hdotbelow hdotbelow.glif heartBlackSuit heartB_lackS_uit.glif heavyleftpointinganglebracketornament heavyleftpointinganglebracketornament.glif heavyleftpointinganglequotationmarkornament heavyleftpointinganglequotationmarkornament.glif heavyrightpointinganglebracketornament heavyrightpointinganglebracketornament.glif heavyrightpointinganglequotationmarkornament heavyrightpointinganglequotationmarkornament.glif hookabovecomb hookabovecomb.glif hookabovecomb.case hookabovecomb.case.glif horizontalBlackHexagon horizontalB_lackH_exagon.glif horizontalFillSquare horizontalF_illS_quare.glif horizontalTabulationControl horizontalT_abulationC_ontrol.glif horizontalTabulationControl.ss20 horizontalT_abulationC_ontrol.ss20.glif horizontalbar horizontalbar.glif horizontallineextension horizontallineextension.glif horncomb horncomb.glif horncomb.case horncomb.case.glif house house.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlautcomb hungarumlautcomb.glif hungarumlautcomb.case hungarumlautcomb.case.glif hyphen hyphen.glif hyphen_asciitilde.liga hyphen_asciitilde.liga.glif hyphen_end.seq hyphen_end.seq.glif hyphen_hyphen.liga hyphen_hyphen.liga.glif hyphen_hyphen_hyphen.liga hyphen_hyphen_hyphen.liga.glif hyphen_middle.seq hyphen_middle.seq.glif hyphen_start.seq hyphen_start.seq.glif hyphentwo hyphentwo.glif i i.glif i-cy i-cy.glif ia-cy ia-cy.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif idotless idotless.glif ie-cy ie-cy.glif iegrave-cy iegrave-cy.glif igrave igrave.glif ihookabove ihookabove.glif ii-cy ii-cy.glif iigrave-cy iigrave-cy.glif iishort-cy iishort-cy.glif ij ij.glif ij_acute ij_acute.glif imacron imacron.glif imacron-cy imacron-cy.glif increment increment.glif infinity infinity.glif integral integral.glif integralbt integralbt.glif integraltp integraltp.glif intersection intersection.glif inverseBullet inverseB_ullet.glif inverseWhiteCircle inverseW_hiteC_ircle.glif io-cy io-cy.glif iogonek iogonek.glif iota iota.glif iota-latin iota-latin.glif iotadieresis iotadieresis.glif iotadieresistonos iotadieresistonos.glif iotatonos iotatonos.glif itilde itilde.glif iu-cy iu-cy.glif iu-cy.loclBGR iu-cy.loclB_G_R_.glif iu-cy.loclBGR.alt iu-cy.loclB_G_R_.alt.glif j j.glif jacute jacute.glif jcaron jcaron.glif jcircumflex jcircumflex.glif jdotless jdotless.glif je-cy je-cy.glif k k.glif k.alt k.alt.glif ka-cy ka-cy.glif ka-cy.loclBGR ka-cy.loclB_G_R_.glif ka-cy.loclBGR.alt ka-cy.loclB_G_R_.alt.glif kadescender-cy kadescender-cy.glif kaiSymbol kaiS_ymbol.glif kappa kappa.glif kcommaaccent kcommaaccent.glif kdotbelow kdotbelow.glif kgreenlandic kgreenlandic.glif kip kip.glif kje-cy kje-cy.glif klinebelow klinebelow.glif l l.glif l.salt l.salt.glif lacute lacute.glif lacute.salt lacute.salt.glif lambda lambda.glif lambdastroke lambdastroke.glif largeCircle largeC_ircle.glif lari lari.glif lbar lbar.glif lbar.salt lbar.salt.glif lbelt lbelt.glif lbelt.salt lbelt.salt.glif lcaron lcaron.glif lcaron.salt lcaron.salt.glif lcommaaccent lcommaaccent.glif lcommaaccent.salt lcommaaccent.salt.glif ldot ldot.glif ldot.salt ldot.salt.glif ldotbelow ldotbelow.glif ldotbelow.salt ldotbelow.salt.glif leftArrow leftA_rrow.glif leftBlackPointer leftB_lackP_ointer.glif leftBlackSmallTriangle leftB_lackS_mallT_riangle.glif leftBlackTriangle leftB_lackT_riangle.glif leftBlock leftB_lock.glif leftBlock.stypo leftB_lock.stypo.glif leftFiveEighthsBlock leftF_iveE_ighthsB_lock.glif leftFiveEighthsBlock.stypo leftF_iveE_ighthsB_lock.stypo.glif leftHalfBlackCircle leftH_alfB_lackC_ircle.glif leftHalfBlackDiamond leftH_alfB_lackD_iamond.glif leftHalfBlackSquare leftH_alfB_lackS_quare.glif leftHalfBlackWhiteCircle leftH_alfB_lackW_hiteC_ircle.glif leftOneEighthBlock leftO_neE_ighthB_lock.glif leftOneEighthBlock.stypo leftO_neE_ighthB_lock.stypo.glif leftOneQuarterBlock leftO_neQ_uarterB_lock.glif leftOneQuarterBlock.stypo leftO_neQ_uarterB_lock.stypo.glif leftRightArrow leftR_ightA_rrow.glif leftSevenEighthsBlock leftS_evenE_ighthsB_lock.glif leftSevenEighthsBlock.stypo leftS_evenE_ighthsB_lock.stypo.glif leftThreeEighthsBlock leftT_hreeE_ighthsB_lock.glif leftThreeEighthsBlock.stypo leftT_hreeE_ighthsB_lock.stypo.glif leftThreeQuartersBlock leftT_hreeQ_uartersB_lock.glif leftThreeQuartersBlock.stypo leftT_hreeQ_uartersB_lock.stypo.glif leftWhitePointer leftW_hiteP_ointer.glif leftWhiteSmallTriangle leftW_hiteS_mallT_riangle.glif leftWhiteTriangle leftW_hiteT_riangle.glif less less.glif less.alt less.alt.glif less.center less.center.glif less_asciitilde.liga less_asciitilde.liga.glif less_asciitilde_asciitilde.liga less_asciitilde_asciitilde.liga.glif less_asciitilde_greater.liga less_asciitilde_greater.liga.glif less_asterisk.liga less_asterisk.liga.glif less_asterisk_greater.liga less_asterisk_greater.liga.glif less_bar.liga less_bar.liga.glif less_bar_bar.liga less_bar_bar.liga.glif less_bar_bar_bar.liga less_bar_bar_bar.liga.glif less_bar_greater.liga less_bar_greater.liga.glif less_dollar.liga less_dollar.liga.glif less_dollar.liga.BRACKET.600 less_dollar.liga.B_R_A_C_K_E_T_.600.glif less_dollar_greater.liga less_dollar_greater.liga.glif less_dollar_greater.liga.BRACKET.600 less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif less_equal.liga less_equal.liga.glif less_equal_end.seq less_equal_end.seq.glif less_equal_middle.seq less_equal_middle.seq.glif less_equal_start.seq less_equal_start.seq.glif less_exclam_hyphen_hyphen.liga less_exclam_hyphen_hyphen.liga.glif less_greater.liga less_greater.liga.glif less_hyphen_end.seq less_hyphen_end.seq.glif less_hyphen_middle.seq less_hyphen_middle.seq.glif less_hyphen_start.seq less_hyphen_start.seq.glif less_less.liga less_less.liga.glif less_less_equal.liga less_less_equal.liga.glif less_less_equal_end.seq less_less_equal_end.seq.glif less_less_equal_middle.seq less_less_equal_middle.seq.glif less_less_equal_start.seq less_less_equal_start.seq.glif less_less_hyphen_end.seq less_less_hyphen_end.seq.glif less_less_hyphen_middle.seq less_less_hyphen_middle.seq.glif less_less_hyphen_start.seq less_less_hyphen_start.seq.glif less_less_less.liga less_less_less.liga.glif less_plus.liga less_plus.liga.glif less_plus_greater.liga less_plus_greater.liga.glif less_slash.liga less_slash.liga.glif less_slash_greater.liga less_slash_greater.liga.glif lessequal lessequal.glif lineFeedControl lineF_eedC_ontrol.glif lineFeedControl.ss20 lineF_eedC_ontrol.ss20.glif lineseparator lineseparator.glif lira lira.glif liraTurkish liraT_urkish.glif literSign literS_ign.glif lje-cy lje-cy.glif llinebelow llinebelow.glif llinebelow.salt llinebelow.salt.glif lmiddletilde lmiddletilde.glif lmiddletilde.salt lmiddletilde.salt.glif logicalnot logicalnot.glif logicalnotReversed logicalnotR_eversed.glif longs longs.glif lowerFiveEighthsBlock lowerF_iveE_ighthsB_lock.glif lowerFiveEighthsBlock.stypo lowerF_iveE_ighthsB_lock.stypo.glif lowerHalfArc lowerH_alfA_rc.glif lowerHalfBlackWhiteCircle lowerH_alfB_lackW_hiteC_ircle.glif lowerHalfBlock lowerH_alfB_lock.glif lowerHalfBlock.stypo lowerH_alfB_lock.stypo.glif lowerHalfInverseWhiteCircle lowerH_alfI_nverseW_hiteC_ircle.glif lowerHalfWhiteSquare lowerH_alfW_hiteS_quare.glif lowerLeftArc lowerL_eftA_rc.glif lowerLeftBlackTriangle lowerL_eftB_lackT_riangle.glif lowerLeftBlock lowerL_eftB_lock.glif lowerLeftBlock.stypo lowerL_eftB_lock.stypo.glif lowerLeftHalfWhiteSquare lowerL_eftH_alfW_hiteS_quare.glif lowerLeftQuadrantWhiteCircle lowerL_eftQ_uadrantW_hiteC_ircle.glif lowerLeftTriangle lowerL_eftT_riangle.glif lowerOneEighthBlock lowerO_neE_ighthB_lock.glif lowerOneEighthBlock.stypo lowerO_neE_ighthB_lock.stypo.glif lowerOneQuarterBlock lowerO_neQ_uarterB_lock.glif lowerOneQuarterBlock.stypo lowerO_neQ_uarterB_lock.stypo.glif lowerRightArc lowerR_ightA_rc.glif lowerRightBlackTriangle lowerR_ightB_lackT_riangle.glif lowerRightBlock lowerR_ightB_lock.glif lowerRightBlock.stypo lowerR_ightB_lock.stypo.glif lowerRightDiagonalHalfBlackSquare lowerR_ightD_iagonalH_alfB_lackS_quare.glif lowerRightQuadrantWhiteCircle lowerR_ightQ_uadrantW_hiteC_ircle.glif lowerRightTriangle lowerR_ightT_riangle.glif lowerSevenEighthsBlock lowerS_evenE_ighthsB_lock.glif lowerSevenEighthsBlock.stypo lowerS_evenE_ighthsB_lock.stypo.glif lowerThreeEighthsBlock lowerT_hreeE_ighthsB_lock.glif lowerThreeEighthsBlock.stypo lowerT_hreeE_ighthsB_lock.stypo.glif lowerThreeQuartersBlock lowerT_hreeQ_uartersB_lock.glif lowerThreeQuartersBlock.stypo lowerT_hreeQ_uartersB_lock.stypo.glif lowernumeral-greek lowernumeral-greek.glif lowlinecomb lowlinecomb.glif lozenge lozenge.glif lslash lslash.glif lslash.salt lslash.salt.glif m m.glif macron macron.glif macronbelowcomb macronbelowcomb.glif macroncomb macroncomb.glif macroncomb.case macroncomb.case.glif manat manat.glif mars mars.glif mediumBlackSmallSquare mediumB_lackS_mallS_quare.glif mediumBlackSquare mediumB_lackS_quare.glif mediumWhiteSmallSquare mediumW_hiteS_mallS_quare.glif mediumWhiteSquare mediumW_hiteS_quare.glif mediumleftpointinganglebracketornament mediumleftpointinganglebracketornament.glif mediumrightpointinganglebracketornament mediumrightpointinganglebracketornament.glif micro micro.glif minus minus.glif minute minute.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif nacute.loclPLK nacute.loclP_L_K_.glif naira naira.glif napostrophe napostrophe.glif nbspace nbspace.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif negativeAcknowledgeControl negativeA_cknowledgeC_ontrol.glif negativeAcknowledgeControl.ss20 negativeA_cknowledgeC_ontrol.ss20.glif newlineControl newlineC_ontrol.glif nhookleft nhookleft.glif nine nine.glif nine.dnom nine.dnom.glif nine.numr nine.numr.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif nje-cy nje-cy.glif nlinebelow nlinebelow.glif nmod nmod.glif nonbreakinghyphen nonbreakinghyphen.glif note-musical note-musical.glif notedbl-musical notedbl-musical.glif notequal notequal.glif notidentical notidentical.glif ntilde ntilde.glif nu nu.glif nullControl nullC_ontrol.glif numbersign numbersign.glif numbersign_braceleft.liga numbersign_braceleft.liga.glif numbersign_bracketleft.liga numbersign_bracketleft.liga.glif numbersign_colon.liga numbersign_colon.liga.glif numbersign_end.seq numbersign_end.seq.glif numbersign_equal.liga numbersign_equal.liga.glif numbersign_exclam.liga numbersign_exclam.liga.glif numbersign_middle.seq numbersign_middle.seq.glif numbersign_parenleft.liga numbersign_parenleft.liga.glif numbersign_question.liga numbersign_question.liga.glif numbersign_start.seq numbersign_start.seq.glif numbersign_underscore.liga numbersign_underscore.liga.glif numbersign_underscore_parenleft.liga numbersign_underscore_parenleft.liga.glif numeral-greek numeral-greek.glif numero numero.glif o o.glif o-cy o-cy.glif oacute oacute.glif oacute.loclPLK oacute.loclP_L_K_.glif obarred-cy obarred-cy.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhookabove ocircumflexhookabove.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohookabove ohookabove.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhookabove ohornhookabove.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif omacronacute omacronacute.glif omacrongrave omacrongrave.glif omega omega.glif omegatonos omegatonos.glif omicron omicron.glif omicrontonos omicrontonos.glif one one.glif one.dnom one.dnom.glif one.half one.half.glif one.numr one.numr.glif onedotenleader onedotenleader.glif oneeighth oneeighth.glif oneeighth.BRACKET.500 oneeighth.B_R_A_C_K_E_T_.500.glif onehalf onehalf.glif onehalf.BRACKET.500 onehalf.B_R_A_C_K_E_T_.500.glif oneinferior oneinferior.glif onequarter onequarter.glif onequarter.BRACKET.500 onequarter.B_R_A_C_K_E_T_.500.glif onesuperior onesuperior.glif oogonek oogonek.glif oopen oopen.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif orthogonal orthogonal.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif overline overline.glif p p.glif palochka-cy palochka-cy.glif paragraph paragraph.glif parenleft parenleft.glif parenleft_asterisk.liga parenleft_asterisk.liga.glif parenright parenright.glif partialdiff partialdiff.glif pe-cy pe-cy.glif pe-cy.loclSRB pe-cy.loclS_R_B_.glif percent percent.glif percent_percent.liga percent_percent.liga.glif period period.glif period_equal.liga period_equal.liga.glif period_hyphen.liga period_hyphen.liga.glif period_period.liga period_period.liga.glif period_period_equal.liga period_period_equal.liga.glif period_period_less.liga period_period_less.liga.glif period_period_period.liga period_period_period.liga.glif period_question.liga period_question.liga.glif periodcentered periodcentered.glif perispomenicomb perispomenicomb.glif perthousand perthousand.glif peseta peseta.glif peso peso.glif phi phi.glif pi pi.glif plus plus.glif plus_greater.liga plus_greater.liga.glif plus_plus.liga plus_plus.liga.glif plus_plus_plus.liga plus_plus_plus.liga.glif plusminus plusminus.glif prescription prescription.glif product product.glif psi psi.glif published published.glif punctuationspace punctuationspace.glif q q.glif question question.glif question_colon.liga question_colon.liga.glif question_equal.liga question_equal.liga.glif question_period.liga question_period.liga.glif question_question.liga question_question.liga.glif question_question_equal.liga question_question_equal.liga.glif questiondown questiondown.glif questiongreek questiongreek.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quotereversed quotereversed.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif r.salt r.salt.glif racute racute.glif racute.salt racute.salt.glif radical radical.glif ratio ratio.glif rcaron rcaron.glif rcaron.salt rcaron.salt.glif rcommaaccent rcommaaccent.glif rcommaaccent.salt rcommaaccent.salt.glif rdotbelow rdotbelow.glif rdotbelow.salt rdotbelow.salt.glif recordSeparatorControl recordS_eparatorC_ontrol.glif registered registered.glif replacementCharacter replacementC_haracter.glif returnsymbol returnsymbol.glif reversedRotatedFloralHeartBullet reversedR_otatedF_loralH_eartB_ullet.glif rho rho.glif rightArrow rightA_rrow.glif rightBlackPointer rightB_lackP_ointer.glif rightBlackSmallTriangle rightB_lackS_mallT_riangle.glif rightBlackTriangle rightB_lackT_riangle.glif rightBlock rightB_lock.glif rightBlock.stypo rightB_lock.stypo.glif rightHalfBlackCircle rightH_alfB_lackC_ircle.glif rightHalfBlackDiamond rightH_alfB_lackD_iamond.glif rightHalfBlackSquare rightH_alfB_lackS_quare.glif rightHalfBlackWhiteCircle rightH_alfB_lackW_hiteC_ircle.glif rightOneEighthBlock rightO_neE_ighthB_lock.glif rightOneEighthBlock.stypo rightO_neE_ighthB_lock.stypo.glif rightWhitePointer rightW_hiteP_ointer.glif rightWhiteSmallTriangle rightW_hiteS_mallT_riangle.glif rightWhiteTriangle rightW_hiteT_riangle.glif ring ring.glif ringbelowcomb ringbelowcomb.glif ringcomb ringcomb.glif ringcomb.case ringcomb.case.glif rotatedFloralHeartBullet rotatedF_loralH_eartB_ullet.glif ruble ruble.glif rupee rupee.glif rupeeIndian rupeeI_ndian.glif s s.glif s.salt s.salt.glif sacute sacute.glif sacute.loclPLK sacute.loclP_L_K_.glif sacute.salt sacute.salt.glif scaron scaron.glif scaron.salt scaron.salt.glif scedilla scedilla.glif scedilla.salt scedilla.salt.glif schwa schwa.glif schwa-cy schwa-cy.glif scircumflex scircumflex.glif scircumflex.salt scircumflex.salt.glif scommaaccent scommaaccent.glif scommaaccent.salt scommaaccent.salt.glif sdotbelow sdotbelow.glif sdotbelow.salt sdotbelow.salt.glif second second.glif section section.glif semicolon semicolon.glif semicolon_semicolon.liga semicolon_semicolon.liga.glif seven seven.glif seven.dnom seven.dnom.glif seven.numr seven.numr.glif seveneighths seveneighths.glif seveneighths.BRACKET.500 seveneighths.B_R_A_C_K_E_T_.500.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sha-cy sha-cy.glif shadedark shadedark.glif shadedark.stypo shadedark.stypo.glif shadelight shadelight.glif shadelight.stypo shadelight.stypo.glif shademedium shademedium.glif shademedium.stypo shademedium.stypo.glif shcha-cy shcha-cy.glif sheqel sheqel.glif shha-cy shha-cy.glif shha-cy.alt shha-cy.alt.glif shiftInControl shiftI_nC_ontrol.glif shiftInControl.ss20 shiftI_nC_ontrol.ss20.glif shiftOutControl shiftO_utC_ontrol.glif shiftOutControl.ss20 shiftO_utC_ontrol.ss20.glif sigma sigma.glif sigmafinal sigmafinal.glif six six.glif six.dnom six.dnom.glif six.numr six.numr.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif slash_asterisk.liga slash_asterisk.liga.glif slash_backslash.liga slash_backslash.liga.glif slash_equal_end.seq slash_equal_end.seq.glif slash_equal_middle.seq slash_equal_middle.seq.glif slash_equal_start.seq slash_equal_start.seq.glif slash_greater.liga slash_greater.liga.glif slash_slash.liga slash_slash.liga.glif slash_slash_equal_end.seq slash_slash_equal_end.seq.glif slash_slash_equal_middle.seq slash_slash_equal_middle.seq.glif slash_slash_equal_start.seq slash_slash_equal_start.seq.glif slash_slash_slash.liga slash_slash_slash.liga.glif softhyphen softhyphen.glif softsign-cy softsign-cy.glif space space.glif spaceControl spaceC_ontrol.glif spadeBlackSuit spadeB_lackS_uit.glif startOfHeadingControl startO_fH_eadingC_ontrol.glif startOfHeadingControl.ss20 startO_fH_eadingC_ontrol.ss20.glif startOfTextControl startO_fT_extC_ontrol.glif startOfTextControl.ss20 startO_fT_extC_ontrol.ss20.glif sterling sterling.glif strictlyequivalentto strictlyequivalentto.glif substituteControl substituteC_ontrol.glif substituteControl.ss20 substituteC_ontrol.ss20.glif substituteFormTwoControl substituteF_ormT_woC_ontrol.glif summation summation.glif sunWithRays sunW_ithR_ays.glif synchronousIdleControl synchronousI_dleC_ontrol.glif synchronousIdleControl.ss20 synchronousI_dleC_ontrol.ss20.glif t t.glif tau tau.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcommaaccent tcommaaccent.glif te-cy te-cy.glif te-cy.loclSRB te-cy.loclS_R_B_.glif tenge tenge.glif tesh tesh.glif theta theta.glif thetamod thetamod.glif thorn thorn.glif three three.glif three.dnom three.dnom.glif three.half three.half.glif three.numr three.numr.glif threeeighths threeeighths.glif threeeighths.BRACKET.500 threeeighths.B_R_A_C_K_E_T_.500.glif threeinferior threeinferior.glif threequarters threequarters.glif threequarters.BRACKET.500 threequarters.B_R_A_C_K_E_T_.500.glif threesuperior threesuperior.glif tilde tilde.glif tildecomb tildecomb.glif tildecomb.case tildecomb.case.glif tonos tonos.glif tonos.case tonos.case.glif topHalfBlackCircle topH_alfB_lackC_ircle.glif topHalfBlackDiamond topH_alfB_lackD_iamond.glif topHalfWhiteSquare topH_alfW_hiteS_quare.glif topRightHalfWhiteSquare topR_ightH_alfW_hiteS_quare.glif trademark trademark.glif tse-cy tse-cy.glif tshe-cy tshe-cy.glif tugrik tugrik.glif two two.glif two.dnom two.dnom.glif two.half two.half.glif two.numr two.numr.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif u-cy u-cy.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhookabove uhookabove.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhookabove uhornhookabove.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif umacron-cy umacron-cy.glif underscore underscore.glif underscore_end.seq underscore_end.seq.glif underscore_middle.seq underscore_middle.seq.glif underscore_start.seq underscore_start.seq.glif underscore_underscore.liga underscore_underscore.liga.glif underscoredbl underscoredbl.glif unitSeparatorControl unitS_eparatorC_ontrol.glif uogonek uogonek.glif upArrow upA_rrow.glif upBlackSmallTriangle upB_lackS_mallT_riangle.glif upBlackTriangle upB_lackT_riangle.glif upDashArrow upD_ashA_rrow.glif upDownArrow upD_ownA_rrow.glif upDownbaseArrow upD_ownbaseA_rrow.glif upLeftHalfBlackTriangle upL_eftH_alfB_lackT_riangle.glif upRightHalfBlackTriangle upR_ightH_alfB_lackT_riangle.glif upWhiteSmallTriangle upW_hiteS_mallT_riangle.glif upWhiteTriangle upW_hiteT_riangle.glif upWhiteTriangleWithDot upW_hiteT_riangleW_ithD_ot.glif upperHalfArc upperH_alfA_rc.glif upperHalfBlackWhiteCircle upperH_alfB_lackW_hiteC_ircle.glif upperHalfBlock upperH_alfB_lock.glif upperHalfBlock.stypo upperH_alfB_lock.stypo.glif upperHalfInverseWhiteCircle upperH_alfI_nverseW_hiteC_ircle.glif upperLeftAndLowerLeftAndLowerRightBlock upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndLowerRightBlock upperL_eftA_ndL_owerR_ightB_lock.glif upperLeftAndLowerRightBlock.stypo upperL_eftA_ndL_owerR_ightB_lock.stypo.glif upperLeftAndUpperRightAndLowerLeftBlock upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif upperLeftAndUpperRightAndLowerLeftBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperLeftAndUpperRightAndLowerRightBlock upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif upperLeftAndUpperRightAndLowerRightBlock.stypo upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif upperLeftArc upperL_eftA_rc.glif upperLeftBlackTriangle upperL_eftB_lackT_riangle.glif upperLeftBlock upperL_eftB_lock.glif upperLeftBlock.stypo upperL_eftB_lock.stypo.glif upperLeftDiagonalHalfBlackSquare upperL_eftD_iagonalH_alfB_lackS_quare.glif upperLeftQuadrantWhiteCircle upperL_eftQ_uadrantW_hiteC_ircle.glif upperLeftTriangle upperL_eftT_riangle.glif upperLeftWhiteCircle upperL_eftW_hiteC_ircle.glif upperOneEighthBlock upperO_neE_ighthB_lock.glif upperOneEighthBlock.stypo upperO_neE_ighthB_lock.stypo.glif upperRightAndLowerLeftAndLowerRightBlock upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif upperRightAndLowerLeftAndLowerRightBlock.stypo upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif upperRightAndLowerLeftBlock upperR_ightA_ndL_owerL_eftB_lock.glif upperRightAndLowerLeftBlock.stypo upperR_ightA_ndL_owerL_eftB_lock.stypo.glif upperRightArc upperR_ightA_rc.glif upperRightBlackCircle upperR_ightB_lackC_ircle.glif upperRightBlackTriangle upperR_ightB_lackT_riangle.glif upperRightBlock upperR_ightB_lock.glif upperRightBlock.stypo upperR_ightB_lock.stypo.glif upperRightQuadrantWhiteCircle upperR_ightQ_uadrantW_hiteC_ircle.glif upperRightTriangle upperR_ightT_riangle.glif upperlefttolowerrightFillSquare upperlefttolowerrightF_illS_quare.glif upperrighttolowerleftFillSquare upperrighttolowerleftF_illS_quare.glif upsilon upsilon.glif upsilon-latin upsilon-latin.glif upsilondieresis upsilondieresis.glif upsilondieresistonos upsilondieresistonos.glif upsilontonos upsilontonos.glif uring uring.glif ushort-cy ushort-cy.glif ustraight-cy ustraight-cy.glif ustraightstroke-cy ustraightstroke-cy.glif utilde utilde.glif v v.glif ve-cy ve-cy.glif ve-cy.salt ve-cy.salt.glif vectorOrCrossProduct vectorO_rC_rossP_roduct.glif venus venus.glif verticalBisectingLineWhiteSquare verticalB_isectingL_ineW_hiteS_quare.glif verticalFillCircle verticalF_illC_ircle.glif verticalFillSquare verticalF_illS_quare.glif verticalTabulationControl verticalT_abulationC_ontrol.glif verticalTabulationControl.ss20 verticalT_abulationC_ontrol.ss20.glif vhook vhook.glif vturned vturned.glif w w.glif w_w_w.liga w_w_w.liga.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif whiteBullet whiteB_ullet.glif whiteCircle whiteC_ircle.glif whiteDiamond whiteD_iamond.glif whiteHexagon whiteH_exagon.glif whiteHorizontalEllipse whiteH_orizontalE_llipse.glif whiteInBlackSquare whiteI_nB_lackS_quare.glif whiteLargeSquare whiteL_argeS_quare.glif whiteLowerLeftQuadrantSquare whiteL_owerL_eftQ_uadrantS_quare.glif whiteLowerRightQuadrantSquare whiteL_owerR_ightQ_uadrantS_quare.glif whiteMediumDiamond whiteM_ediumD_iamond.glif whiteMediumLozenge whiteM_ediumL_ozenge.glif whiteParallelogram whiteP_arallelogram.glif whitePentagon whiteP_entagon.glif whiteRect whiteR_ect.glif whiteRoundedCornersSquare whiteR_oundedC_ornersS_quare.glif whiteSmallLozenge whiteS_mallL_ozenge.glif whiteSmallSquare whiteS_mallS_quare.glif whiteSmilingFace whiteS_milingF_ace.glif whiteSquare whiteS_quare.glif whiteUpperLeftQuadrantSquare whiteU_pperL_eftQ_uadrantS_quare.glif whiteUpperRightQuadrantSquare whiteU_pperR_ightQ_uadrantS_quare.glif whiteVerticalEllipse whiteV_erticalE_llipse.glif whiteVerticalRect whiteV_erticalR_ect.glif whiteVerysmallSquare whiteV_erysmallS_quare.glif wmod wmod.glif won won.glif x x.glif x.multiply x.multiply.glif xi xi.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif yen yen.glif yeru-cy yeru-cy.glif ygrave ygrave.glif yhookabove yhookabove.glif yi-cy yi-cy.glif ymacron ymacron.glif ymod ymod.glif ytilde ytilde.glif z z.glif zacute zacute.glif zacute.loclPLK zacute.loclP_L_K_.glif zcaron zcaron.glif zdotaccent zdotaccent.glif ze-cy ze-cy.glif ze-cy.loclBGR ze-cy.loclB_G_R_.glif ze-cy.salt ze-cy.salt.glif zero zero.glif zero.dnom zero.dnom.glif zero.numr zero.numr.glif zero.zero zero.zero.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif zeta zeta.glif zhe-cy zhe-cy.glif zhe-cy.loclBGR zhe-cy.loclB_G_R_.glif zhedescender-cy zhedescender-cy.glif zmod zmod.glif checkerBoardDeleteApple2 checkerB_oardD_eleteA_pple2.glif checkerBoardDeleteTrs80 checkerB_oardD_eleteT_rs80.glif checkerBoardDeleteAmstradCpc checkerB_oardD_eleteA_mstradC_pc.glif checkerBoardDeleteAmstradCpc.stypo checkerB_oardD_eleteA_mstradC_pc.stypo.glif checkerBoardFill checkerB_oardF_ill.glif checkerBoardFill.stypo checkerB_oardF_ill.stypo.glif checkerBoardFillInverse checkerB_oardF_illI_nverse.glif checkerBoardFillInverse.stypo checkerB_oardF_illI_nverse.stypo.glif blockQuadrant-UC blockQ_uadrant-UC.glif blockQuadrant-UC.stypo blockQ_uadrant-UC.stypo.glif blockQuadrant-LC blockQ_uadrant-LC.glif blockQuadrant-LC.stypo blockQ_uadrant-LC.stypo.glif blockQuadrant-ML blockQ_uadrant-ML.glif blockQuadrant-ML.stypo blockQ_uadrant-ML.stypo.glif blockQuadrant-MR blockQ_uadrant-MR.glif blockQuadrant-MR.stypo blockQ_uadrant-MR.stypo.glif blockTriangle-1 blockT_riangle-1.glif blockTriangle-1.stypo blockT_riangle-1.stypo.glif blockTriangle-2 blockT_riangle-2.glif blockTriangle-2.stypo blockT_riangle-2.stypo.glif blockTriangle-3 blockT_riangle-3.glif blockTriangle-3.stypo blockT_riangle-3.stypo.glif blockTriangle-4 blockT_riangle-4.glif blockTriangle-4.stypo blockT_riangle-4.stypo.glif blockTriangle-14 blockT_riangle-14.glif blockTriangle-14.stypo blockT_riangle-14.stypo.glif blockTriangle-23 blockT_riangle-23.glif blockTriangle-23.stypo blockT_riangle-23.stypo.glif blockTriangle-123 blockT_riangle-123.glif blockTriangle-123.stypo blockT_riangle-123.stypo.glif blockTriangle-124 blockT_riangle-124.glif blockTriangle-124.stypo blockT_riangle-124.stypo.glif blockTriangle-134 blockT_riangle-134.glif blockTriangle-134.stypo blockT_riangle-134.stypo.glif blockTriangle-234 blockT_riangle-234.glif blockTriangle-234.stypo blockT_riangle-234.stypo.glif blockCircle-UC blockC_ircle-UC.glif blockCircle-UC.stypo blockC_ircle-UC.stypo.glif blockCircle-LC blockC_ircle-LC.glif blockCircle-LC.stypo blockC_ircle-LC.stypo.glif blockCircle-ML blockC_ircle-ML.glif blockCircle-ML.stypo blockC_ircle-ML.stypo.glif blockCircle-MR blockC_ircle-MR.glif blockCircle-MR.stypo blockC_ircle-MR.stypo.glif blockCircle-1 blockC_ircle-1.glif blockCircle-1.stypo blockC_ircle-1.stypo.glif blockCircle-2 blockC_ircle-2.glif blockCircle-2.stypo blockC_ircle-2.stypo.glif blockCircle-3 blockC_ircle-3.glif blockCircle-3.stypo blockC_ircle-3.stypo.glif blockCircle-4 blockC_ircle-4.glif blockCircle-4.stypo blockC_ircle-4.stypo.glif blockSextant-1 blockS_extant-1.glif blockSextant-1.stypo blockS_extant-1.stypo.glif blockSextant-2 blockS_extant-2.glif blockSextant-2.stypo blockS_extant-2.stypo.glif blockSextant-12 blockS_extant-12.glif blockSextant-12.stypo blockS_extant-12.stypo.glif blockSextant-3 blockS_extant-3.glif blockSextant-3.stypo blockS_extant-3.stypo.glif blockSextant-13 blockS_extant-13.glif blockSextant-13.stypo blockS_extant-13.stypo.glif blockSextant-23 blockS_extant-23.glif blockSextant-23.stypo blockS_extant-23.stypo.glif blockSextant-123 blockS_extant-123.glif blockSextant-123.stypo blockS_extant-123.stypo.glif blockSextant-4 blockS_extant-4.glif blockSextant-4.stypo blockS_extant-4.stypo.glif blockSextant-14 blockS_extant-14.glif blockSextant-14.stypo blockS_extant-14.stypo.glif blockSextant-24 blockS_extant-24.glif blockSextant-24.stypo blockS_extant-24.stypo.glif blockSextant-124 blockS_extant-124.glif blockSextant-124.stypo blockS_extant-124.stypo.glif blockSextant-34 blockS_extant-34.glif blockSextant-34.stypo blockS_extant-34.stypo.glif blockSextant-134 blockS_extant-134.glif blockSextant-134.stypo blockS_extant-134.stypo.glif blockSextant-234 blockS_extant-234.glif blockSextant-234.stypo blockS_extant-234.stypo.glif blockSextant-1234 blockS_extant-1234.glif blockSextant-1234.stypo blockS_extant-1234.stypo.glif blockSextant-5 blockS_extant-5.glif blockSextant-5.stypo blockS_extant-5.stypo.glif blockSextant-15 blockS_extant-15.glif blockSextant-15.stypo blockS_extant-15.stypo.glif blockSextant-25 blockS_extant-25.glif blockSextant-25.stypo blockS_extant-25.stypo.glif blockSextant-125 blockS_extant-125.glif blockSextant-125.stypo blockS_extant-125.stypo.glif blockSextant-35 blockS_extant-35.glif blockSextant-35.stypo blockS_extant-35.stypo.glif blockSextant-235 blockS_extant-235.glif blockSextant-235.stypo blockS_extant-235.stypo.glif blockSextant-1235 blockS_extant-1235.glif blockSextant-1235.stypo blockS_extant-1235.stypo.glif blockSextant-45 blockS_extant-45.glif blockSextant-45.stypo blockS_extant-45.stypo.glif blockSextant-145 blockS_extant-145.glif blockSextant-145.stypo blockS_extant-145.stypo.glif blockSextant-245 blockS_extant-245.glif blockSextant-245.stypo blockS_extant-245.stypo.glif blockSextant-1245 blockS_extant-1245.glif blockSextant-1245.stypo blockS_extant-1245.stypo.glif blockSextant-345 blockS_extant-345.glif blockSextant-345.stypo blockS_extant-345.stypo.glif blockSextant-1345 blockS_extant-1345.glif blockSextant-1345.stypo blockS_extant-1345.stypo.glif blockSextant-2345 blockS_extant-2345.glif blockSextant-2345.stypo blockS_extant-2345.stypo.glif blockSextant-12345 blockS_extant-12345.glif blockSextant-12345.stypo blockS_extant-12345.stypo.glif blockSextant-6 blockS_extant-6.glif blockSextant-6.stypo blockS_extant-6.stypo.glif blockSextant-16 blockS_extant-16.glif blockSextant-16.stypo blockS_extant-16.stypo.glif blockSextant-26 blockS_extant-26.glif blockSextant-26.stypo blockS_extant-26.stypo.glif blockSextant-126 blockS_extant-126.glif blockSextant-126.stypo blockS_extant-126.stypo.glif blockSextant-36 blockS_extant-36.glif blockSextant-36.stypo blockS_extant-36.stypo.glif blockSextant-136 blockS_extant-136.glif blockSextant-136.stypo blockS_extant-136.stypo.glif blockSextant-236 blockS_extant-236.glif blockSextant-236.stypo blockS_extant-236.stypo.glif blockSextant-1236 blockS_extant-1236.glif blockSextant-1236.stypo blockS_extant-1236.stypo.glif blockSextant-46 blockS_extant-46.glif blockSextant-46.stypo blockS_extant-46.stypo.glif blockSextant-146 blockS_extant-146.glif blockSextant-146.stypo blockS_extant-146.stypo.glif blockSextant-1246 blockS_extant-1246.glif blockSextant-1246.stypo blockS_extant-1246.stypo.glif blockSextant-346 blockS_extant-346.glif blockSextant-346.stypo blockS_extant-346.stypo.glif blockSextant-1346 blockS_extant-1346.glif blockSextant-1346.stypo blockS_extant-1346.stypo.glif blockSextant-2346 blockS_extant-2346.glif blockSextant-2346.stypo blockS_extant-2346.stypo.glif blockSextant-12346 blockS_extant-12346.glif blockSextant-12346.stypo blockS_extant-12346.stypo.glif blockSextant-56 blockS_extant-56.glif blockSextant-56.stypo blockS_extant-56.stypo.glif blockSextant-156 blockS_extant-156.glif blockSextant-156.stypo blockS_extant-156.stypo.glif blockSextant-256 blockS_extant-256.glif blockSextant-256.stypo blockS_extant-256.stypo.glif blockSextant-1256 blockS_extant-1256.glif blockSextant-1256.stypo blockS_extant-1256.stypo.glif blockSextant-356 blockS_extant-356.glif blockSextant-356.stypo blockS_extant-356.stypo.glif blockSextant-1356 blockS_extant-1356.glif blockSextant-1356.stypo blockS_extant-1356.stypo.glif blockSextant-2356 blockS_extant-2356.glif blockSextant-2356.stypo blockS_extant-2356.stypo.glif blockSextant-12356 blockS_extant-12356.glif blockSextant-12356.stypo blockS_extant-12356.stypo.glif blockSextant-456 blockS_extant-456.glif blockSextant-456.stypo blockS_extant-456.stypo.glif blockSextant-1456 blockS_extant-1456.glif blockSextant-1456.stypo blockS_extant-1456.stypo.glif blockSextant-2456 blockS_extant-2456.glif blockSextant-2456.stypo blockS_extant-2456.stypo.glif blockSextant-12456 blockS_extant-12456.glif blockSextant-12456.stypo blockS_extant-12456.stypo.glif blockSextant-3456 blockS_extant-3456.glif blockSextant-3456.stypo blockS_extant-3456.stypo.glif blockSextant-13456 blockS_extant-13456.glif blockSextant-13456.stypo blockS_extant-13456.stypo.glif blockSextant-23456 blockS_extant-23456.glif blockSextant-23456.stypo blockS_extant-23456.stypo.glif blockDiagonal-1FB3C blockD_iagonal-1FB3C.glif blockDiagonal-1FB3C.stypo blockD_iagonal-1FB3C.stypo.glif blockDiagonal-1FB3D blockD_iagonal-1FB3D.glif blockDiagonal-1FB3D.stypo blockD_iagonal-1FB3D.stypo.glif blockDiagonal-1FB3E blockD_iagonal-1FB3E.glif blockDiagonal-1FB3E.stypo blockD_iagonal-1FB3E.stypo.glif blockDiagonal-1FB3F blockD_iagonal-1FB3F.glif blockDiagonal-1FB3F.stypo blockD_iagonal-1FB3F.stypo.glif blockDiagonal-1FB40 blockD_iagonal-1FB40.glif blockDiagonal-1FB40.stypo blockD_iagonal-1FB40.stypo.glif blockDiagonal-1FB41 blockD_iagonal-1FB41.glif blockDiagonal-1FB41.stypo blockD_iagonal-1FB41.stypo.glif blockDiagonal-1FB42 blockD_iagonal-1FB42.glif blockDiagonal-1FB42.stypo blockD_iagonal-1FB42.stypo.glif blockDiagonal-1FB43 blockD_iagonal-1FB43.glif blockDiagonal-1FB43.stypo blockD_iagonal-1FB43.stypo.glif blockDiagonal-1FB44 blockD_iagonal-1FB44.glif blockDiagonal-1FB44.stypo blockD_iagonal-1FB44.stypo.glif blockDiagonal-1FB45 blockD_iagonal-1FB45.glif blockDiagonal-1FB45.stypo blockD_iagonal-1FB45.stypo.glif blockDiagonal-1FB46 blockD_iagonal-1FB46.glif blockDiagonal-1FB46.stypo blockD_iagonal-1FB46.stypo.glif blockDiagonal-1FB47 blockD_iagonal-1FB47.glif blockDiagonal-1FB47.stypo blockD_iagonal-1FB47.stypo.glif blockDiagonal-1FB48 blockD_iagonal-1FB48.glif blockDiagonal-1FB48.stypo blockD_iagonal-1FB48.stypo.glif blockDiagonal-1FB49 blockD_iagonal-1FB49.glif blockDiagonal-1FB49.stypo blockD_iagonal-1FB49.stypo.glif blockDiagonal-1FB4A blockD_iagonal-1FB4A.glif blockDiagonal-1FB4A.stypo blockD_iagonal-1FB4A.stypo.glif blockDiagonal-1FB4B blockD_iagonal-1FB4B.glif blockDiagonal-1FB4B.stypo blockD_iagonal-1FB4B.stypo.glif blockDiagonal-1FB4C blockD_iagonal-1FB4C.glif blockDiagonal-1FB4C.stypo blockD_iagonal-1FB4C.stypo.glif blockDiagonal-1FB4D blockD_iagonal-1FB4D.glif blockDiagonal-1FB4D.stypo blockD_iagonal-1FB4D.stypo.glif blockDiagonal-1FB4E blockD_iagonal-1FB4E.glif blockDiagonal-1FB4E.stypo blockD_iagonal-1FB4E.stypo.glif blockDiagonal-1FB4F blockD_iagonal-1FB4F.glif blockDiagonal-1FB4F.stypo blockD_iagonal-1FB4F.stypo.glif blockDiagonal-1FB50 blockD_iagonal-1FB50.glif blockDiagonal-1FB50.stypo blockD_iagonal-1FB50.stypo.glif blockDiagonal-1FB51 blockD_iagonal-1FB51.glif blockDiagonal-1FB51.stypo blockD_iagonal-1FB51.stypo.glif blockDiagonal-1FB52 blockD_iagonal-1FB52.glif blockDiagonal-1FB52.stypo blockD_iagonal-1FB52.stypo.glif blockDiagonal-1FB53 blockD_iagonal-1FB53.glif blockDiagonal-1FB53.stypo blockD_iagonal-1FB53.stypo.glif blockDiagonal-1FB54 blockD_iagonal-1FB54.glif blockDiagonal-1FB54.stypo blockD_iagonal-1FB54.stypo.glif blockDiagonal-1FB55 blockD_iagonal-1FB55.glif blockDiagonal-1FB55.stypo blockD_iagonal-1FB55.stypo.glif blockDiagonal-1FB56 blockD_iagonal-1FB56.glif blockDiagonal-1FB56.stypo blockD_iagonal-1FB56.stypo.glif blockDiagonal-1FB57 blockD_iagonal-1FB57.glif blockDiagonal-1FB57.stypo blockD_iagonal-1FB57.stypo.glif blockDiagonal-1FB58 blockD_iagonal-1FB58.glif blockDiagonal-1FB58.stypo blockD_iagonal-1FB58.stypo.glif blockDiagonal-1FB59 blockD_iagonal-1FB59.glif blockDiagonal-1FB59.stypo blockD_iagonal-1FB59.stypo.glif blockDiagonal-1FB5A blockD_iagonal-1FB5A.glif blockDiagonal-1FB5A.stypo blockD_iagonal-1FB5A.stypo.glif blockDiagonal-1FB5B blockD_iagonal-1FB5B.glif blockDiagonal-1FB5B.stypo blockD_iagonal-1FB5B.stypo.glif blockDiagonal-1FB5C blockD_iagonal-1FB5C.glif blockDiagonal-1FB5C.stypo blockD_iagonal-1FB5C.stypo.glif blockDiagonal-1FB5D blockD_iagonal-1FB5D.glif blockDiagonal-1FB5D.stypo blockD_iagonal-1FB5D.stypo.glif blockDiagonal-1FB5E blockD_iagonal-1FB5E.glif blockDiagonal-1FB5E.stypo blockD_iagonal-1FB5E.stypo.glif blockDiagonal-1FB5F blockD_iagonal-1FB5F.glif blockDiagonal-1FB5F.stypo blockD_iagonal-1FB5F.stypo.glif blockDiagonal-1FB60 blockD_iagonal-1FB60.glif blockDiagonal-1FB60.stypo blockD_iagonal-1FB60.stypo.glif blockDiagonal-1FB61 blockD_iagonal-1FB61.glif blockDiagonal-1FB61.stypo blockD_iagonal-1FB61.stypo.glif blockDiagonal-1FB62 blockD_iagonal-1FB62.glif blockDiagonal-1FB62.stypo blockD_iagonal-1FB62.stypo.glif blockDiagonal-1FB63 blockD_iagonal-1FB63.glif blockDiagonal-1FB63.stypo blockD_iagonal-1FB63.stypo.glif blockDiagonal-1FB64 blockD_iagonal-1FB64.glif blockDiagonal-1FB64.stypo blockD_iagonal-1FB64.stypo.glif blockDiagonal-1FB65 blockD_iagonal-1FB65.glif blockDiagonal-1FB65.stypo blockD_iagonal-1FB65.stypo.glif blockDiagonal-1FB66 blockD_iagonal-1FB66.glif blockDiagonal-1FB66.stypo blockD_iagonal-1FB66.stypo.glif blockDiagonal-1FB67 blockD_iagonal-1FB67.glif blockDiagonal-1FB67.stypo blockD_iagonal-1FB67.stypo.glif blockOctant-1 blockO_ctant-1.glif blockOctant-1.stypo blockO_ctant-1.stypo.glif blockOctant-2 blockO_ctant-2.glif blockOctant-2.stypo blockO_ctant-2.stypo.glif blockOctant-12 blockO_ctant-12.glif blockOctant-12.stypo blockO_ctant-12.stypo.glif blockOctant-3 blockO_ctant-3.glif blockOctant-3.stypo blockO_ctant-3.stypo.glif blockOctant-23 blockO_ctant-23.glif blockOctant-23.stypo blockO_ctant-23.stypo.glif blockOctant-123 blockO_ctant-123.glif blockOctant-123.stypo blockO_ctant-123.stypo.glif blockOctant-4 blockO_ctant-4.glif blockOctant-4.stypo blockO_ctant-4.stypo.glif blockOctant-14 blockO_ctant-14.glif blockOctant-14.stypo blockO_ctant-14.stypo.glif blockOctant-124 blockO_ctant-124.glif blockOctant-124.stypo blockO_ctant-124.stypo.glif blockOctant-34 blockO_ctant-34.glif blockOctant-34.stypo blockO_ctant-34.stypo.glif blockOctant-134 blockO_ctant-134.glif blockOctant-134.stypo blockO_ctant-134.stypo.glif blockOctant-234 blockO_ctant-234.glif blockOctant-234.stypo blockO_ctant-234.stypo.glif blockOctant-5 blockO_ctant-5.glif blockOctant-5.stypo blockO_ctant-5.stypo.glif blockOctant-15 blockO_ctant-15.glif blockOctant-15.stypo blockO_ctant-15.stypo.glif blockOctant-25 blockO_ctant-25.glif blockOctant-25.stypo blockO_ctant-25.stypo.glif blockOctant-125 blockO_ctant-125.glif blockOctant-125.stypo blockO_ctant-125.stypo.glif blockOctant-135 blockO_ctant-135.glif blockOctant-135.stypo blockO_ctant-135.stypo.glif blockOctant-235 blockO_ctant-235.glif blockOctant-235.stypo blockO_ctant-235.stypo.glif blockOctant-1235 blockO_ctant-1235.glif blockOctant-1235.stypo blockO_ctant-1235.stypo.glif blockOctant-45 blockO_ctant-45.glif blockOctant-45.stypo blockO_ctant-45.stypo.glif blockOctant-145 blockO_ctant-145.glif blockOctant-145.stypo blockO_ctant-145.stypo.glif blockOctant-245 blockO_ctant-245.glif blockOctant-245.stypo blockO_ctant-245.stypo.glif blockOctant-1245 blockO_ctant-1245.glif blockOctant-1245.stypo blockO_ctant-1245.stypo.glif blockOctant-345 blockO_ctant-345.glif blockOctant-345.stypo blockO_ctant-345.stypo.glif blockOctant-1345 blockO_ctant-1345.glif blockOctant-1345.stypo blockO_ctant-1345.stypo.glif blockOctant-2345 blockO_ctant-2345.glif blockOctant-2345.stypo blockO_ctant-2345.stypo.glif blockOctant-12345 blockO_ctant-12345.glif blockOctant-12345.stypo blockO_ctant-12345.stypo.glif blockOctant-6 blockO_ctant-6.glif blockOctant-6.stypo blockO_ctant-6.stypo.glif blockOctant-16 blockO_ctant-16.glif blockOctant-16.stypo blockO_ctant-16.stypo.glif blockOctant-26 blockO_ctant-26.glif blockOctant-26.stypo blockO_ctant-26.stypo.glif blockOctant-126 blockO_ctant-126.glif blockOctant-126.stypo blockO_ctant-126.stypo.glif blockOctant-36 blockO_ctant-36.glif blockOctant-36.stypo blockO_ctant-36.stypo.glif blockOctant-136 blockO_ctant-136.glif blockOctant-136.stypo blockO_ctant-136.stypo.glif blockOctant-236 blockO_ctant-236.glif blockOctant-236.stypo blockO_ctant-236.stypo.glif blockOctant-1236 blockO_ctant-1236.glif blockOctant-1236.stypo blockO_ctant-1236.stypo.glif blockOctant-146 blockO_ctant-146.glif blockOctant-146.stypo blockO_ctant-146.stypo.glif blockOctant-246 blockO_ctant-246.glif blockOctant-246.stypo blockO_ctant-246.stypo.glif blockOctant-1246 blockO_ctant-1246.glif blockOctant-1246.stypo blockO_ctant-1246.stypo.glif blockOctant-346 blockO_ctant-346.glif blockOctant-346.stypo blockO_ctant-346.stypo.glif blockOctant-1346 blockO_ctant-1346.glif blockOctant-1346.stypo blockO_ctant-1346.stypo.glif blockOctant-2346 blockO_ctant-2346.glif blockOctant-2346.stypo blockO_ctant-2346.stypo.glif blockOctant-12346 blockO_ctant-12346.glif blockOctant-12346.stypo blockO_ctant-12346.stypo.glif blockOctant-56 blockO_ctant-56.glif blockOctant-56.stypo blockO_ctant-56.stypo.glif blockOctant-156 blockO_ctant-156.glif blockOctant-156.stypo blockO_ctant-156.stypo.glif blockOctant-256 blockO_ctant-256.glif blockOctant-256.stypo blockO_ctant-256.stypo.glif blockOctant-1256 blockO_ctant-1256.glif blockOctant-1256.stypo blockO_ctant-1256.stypo.glif blockOctant-356 blockO_ctant-356.glif blockOctant-356.stypo blockO_ctant-356.stypo.glif blockOctant-1356 blockO_ctant-1356.glif blockOctant-1356.stypo blockO_ctant-1356.stypo.glif blockOctant-2356 blockO_ctant-2356.glif blockOctant-2356.stypo blockO_ctant-2356.stypo.glif blockOctant-12356 blockO_ctant-12356.glif blockOctant-12356.stypo blockO_ctant-12356.stypo.glif blockOctant-456 blockO_ctant-456.glif blockOctant-456.stypo blockO_ctant-456.stypo.glif blockOctant-1456 blockO_ctant-1456.glif blockOctant-1456.stypo blockO_ctant-1456.stypo.glif blockOctant-2456 blockO_ctant-2456.glif blockOctant-2456.stypo blockO_ctant-2456.stypo.glif blockOctant-12456 blockO_ctant-12456.glif blockOctant-12456.stypo blockO_ctant-12456.stypo.glif blockOctant-3456 blockO_ctant-3456.glif blockOctant-3456.stypo blockO_ctant-3456.stypo.glif blockOctant-13456 blockO_ctant-13456.glif blockOctant-13456.stypo blockO_ctant-13456.stypo.glif blockOctant-23456 blockO_ctant-23456.glif blockOctant-23456.stypo blockO_ctant-23456.stypo.glif blockOctant-123456 blockO_ctant-123456.glif blockOctant-123456.stypo blockO_ctant-123456.stypo.glif blockOctant-7 blockO_ctant-7.glif blockOctant-7.stypo blockO_ctant-7.stypo.glif blockOctant-17 blockO_ctant-17.glif blockOctant-17.stypo blockO_ctant-17.stypo.glif blockOctant-27 blockO_ctant-27.glif blockOctant-27.stypo blockO_ctant-27.stypo.glif blockOctant-127 blockO_ctant-127.glif blockOctant-127.stypo blockO_ctant-127.stypo.glif blockOctant-37 blockO_ctant-37.glif blockOctant-37.stypo blockO_ctant-37.stypo.glif blockOctant-137 blockO_ctant-137.glif blockOctant-137.stypo blockO_ctant-137.stypo.glif blockOctant-237 blockO_ctant-237.glif blockOctant-237.stypo blockO_ctant-237.stypo.glif blockOctant-1237 blockO_ctant-1237.glif blockOctant-1237.stypo blockO_ctant-1237.stypo.glif blockOctant-47 blockO_ctant-47.glif blockOctant-47.stypo blockO_ctant-47.stypo.glif blockOctant-147 blockO_ctant-147.glif blockOctant-147.stypo blockO_ctant-147.stypo.glif blockOctant-247 blockO_ctant-247.glif blockOctant-247.stypo blockO_ctant-247.stypo.glif blockOctant-1247 blockO_ctant-1247.glif blockOctant-1247.stypo blockO_ctant-1247.stypo.glif blockOctant-347 blockO_ctant-347.glif blockOctant-347.stypo blockO_ctant-347.stypo.glif blockOctant-1347 blockO_ctant-1347.glif blockOctant-1347.stypo blockO_ctant-1347.stypo.glif blockOctant-2347 blockO_ctant-2347.glif blockOctant-2347.stypo blockO_ctant-2347.stypo.glif blockOctant-12347 blockO_ctant-12347.glif blockOctant-12347.stypo blockO_ctant-12347.stypo.glif blockOctant-157 blockO_ctant-157.glif blockOctant-157.stypo blockO_ctant-157.stypo.glif blockOctant-257 blockO_ctant-257.glif blockOctant-257.stypo blockO_ctant-257.stypo.glif blockOctant-1257 blockO_ctant-1257.glif blockOctant-1257.stypo blockO_ctant-1257.stypo.glif blockOctant-357 blockO_ctant-357.glif blockOctant-357.stypo blockO_ctant-357.stypo.glif blockOctant-2357 blockO_ctant-2357.glif blockOctant-2357.stypo blockO_ctant-2357.stypo.glif blockOctant-12357 blockO_ctant-12357.glif blockOctant-12357.stypo blockO_ctant-12357.stypo.glif blockOctant-457 blockO_ctant-457.glif blockOctant-457.stypo blockO_ctant-457.stypo.glif blockOctant-1457 blockO_ctant-1457.glif blockOctant-1457.stypo blockO_ctant-1457.stypo.glif blockOctant-12457 blockO_ctant-12457.glif blockOctant-12457.stypo blockO_ctant-12457.stypo.glif blockOctant-3457 blockO_ctant-3457.glif blockOctant-3457.stypo blockO_ctant-3457.stypo.glif blockOctant-13457 blockO_ctant-13457.glif blockOctant-13457.stypo blockO_ctant-13457.stypo.glif blockOctant-23457 blockO_ctant-23457.glif blockOctant-23457.stypo blockO_ctant-23457.stypo.glif blockOctant-67 blockO_ctant-67.glif blockOctant-67.stypo blockO_ctant-67.stypo.glif blockOctant-167 blockO_ctant-167.glif blockOctant-167.stypo blockO_ctant-167.stypo.glif blockOctant-267 blockO_ctant-267.glif blockOctant-267.stypo blockO_ctant-267.stypo.glif blockOctant-1267 blockO_ctant-1267.glif blockOctant-1267.stypo blockO_ctant-1267.stypo.glif blockOctant-367 blockO_ctant-367.glif blockOctant-367.stypo blockO_ctant-367.stypo.glif blockOctant-1367 blockO_ctant-1367.glif blockOctant-1367.stypo blockO_ctant-1367.stypo.glif blockOctant-2367 blockO_ctant-2367.glif blockOctant-2367.stypo blockO_ctant-2367.stypo.glif blockOctant-12367 blockO_ctant-12367.glif blockOctant-12367.stypo blockO_ctant-12367.stypo.glif blockOctant-467 blockO_ctant-467.glif blockOctant-467.stypo blockO_ctant-467.stypo.glif blockOctant-1467 blockO_ctant-1467.glif blockOctant-1467.stypo blockO_ctant-1467.stypo.glif blockOctant-2467 blockO_ctant-2467.glif blockOctant-2467.stypo blockO_ctant-2467.stypo.glif blockOctant-12467 blockO_ctant-12467.glif blockOctant-12467.stypo blockO_ctant-12467.stypo.glif blockOctant-3467 blockO_ctant-3467.glif blockOctant-3467.stypo blockO_ctant-3467.stypo.glif blockOctant-13467 blockO_ctant-13467.glif blockOctant-13467.stypo blockO_ctant-13467.stypo.glif blockOctant-23467 blockO_ctant-23467.glif blockOctant-23467.stypo blockO_ctant-23467.stypo.glif blockOctant-123467 blockO_ctant-123467.glif blockOctant-123467.stypo blockO_ctant-123467.stypo.glif blockOctant-567 blockO_ctant-567.glif blockOctant-567.stypo blockO_ctant-567.stypo.glif blockOctant-1567 blockO_ctant-1567.glif blockOctant-1567.stypo blockO_ctant-1567.stypo.glif blockOctant-2567 blockO_ctant-2567.glif blockOctant-2567.stypo blockO_ctant-2567.stypo.glif blockOctant-12567 blockO_ctant-12567.glif blockOctant-12567.stypo blockO_ctant-12567.stypo.glif blockOctant-3567 blockO_ctant-3567.glif blockOctant-3567.stypo blockO_ctant-3567.stypo.glif blockOctant-13567 blockO_ctant-13567.glif blockOctant-13567.stypo blockO_ctant-13567.stypo.glif blockOctant-23567 blockO_ctant-23567.glif blockOctant-23567.stypo blockO_ctant-23567.stypo.glif blockOctant-123567 blockO_ctant-123567.glif blockOctant-123567.stypo blockO_ctant-123567.stypo.glif blockOctant-4567 blockO_ctant-4567.glif blockOctant-4567.stypo blockO_ctant-4567.stypo.glif blockOctant-14567 blockO_ctant-14567.glif blockOctant-14567.stypo blockO_ctant-14567.stypo.glif blockOctant-24567 blockO_ctant-24567.glif blockOctant-24567.stypo blockO_ctant-24567.stypo.glif blockOctant-124567 blockO_ctant-124567.glif blockOctant-124567.stypo blockO_ctant-124567.stypo.glif blockOctant-34567 blockO_ctant-34567.glif blockOctant-34567.stypo blockO_ctant-34567.stypo.glif blockOctant-134567 blockO_ctant-134567.glif blockOctant-134567.stypo blockO_ctant-134567.stypo.glif blockOctant-234567 blockO_ctant-234567.glif blockOctant-234567.stypo blockO_ctant-234567.stypo.glif blockOctant-1234567 blockO_ctant-1234567.glif blockOctant-1234567.stypo blockO_ctant-1234567.stypo.glif blockOctant-8 blockO_ctant-8.glif blockOctant-8.stypo blockO_ctant-8.stypo.glif blockOctant-18 blockO_ctant-18.glif blockOctant-18.stypo blockO_ctant-18.stypo.glif blockOctant-28 blockO_ctant-28.glif blockOctant-28.stypo blockO_ctant-28.stypo.glif blockOctant-128 blockO_ctant-128.glif blockOctant-128.stypo blockO_ctant-128.stypo.glif blockOctant-38 blockO_ctant-38.glif blockOctant-38.stypo blockO_ctant-38.stypo.glif blockOctant-138 blockO_ctant-138.glif blockOctant-138.stypo blockO_ctant-138.stypo.glif blockOctant-238 blockO_ctant-238.glif blockOctant-238.stypo blockO_ctant-238.stypo.glif blockOctant-1238 blockO_ctant-1238.glif blockOctant-1238.stypo blockO_ctant-1238.stypo.glif blockOctant-48 blockO_ctant-48.glif blockOctant-48.stypo blockO_ctant-48.stypo.glif blockOctant-148 blockO_ctant-148.glif blockOctant-148.stypo blockO_ctant-148.stypo.glif blockOctant-248 blockO_ctant-248.glif blockOctant-248.stypo blockO_ctant-248.stypo.glif blockOctant-1248 blockO_ctant-1248.glif blockOctant-1248.stypo blockO_ctant-1248.stypo.glif blockOctant-348 blockO_ctant-348.glif blockOctant-348.stypo blockO_ctant-348.stypo.glif blockOctant-1348 blockO_ctant-1348.glif blockOctant-1348.stypo blockO_ctant-1348.stypo.glif blockOctant-2348 blockO_ctant-2348.glif blockOctant-2348.stypo blockO_ctant-2348.stypo.glif blockOctant-12348 blockO_ctant-12348.glif blockOctant-12348.stypo blockO_ctant-12348.stypo.glif blockOctant-58 blockO_ctant-58.glif blockOctant-58.stypo blockO_ctant-58.stypo.glif blockOctant-158 blockO_ctant-158.glif blockOctant-158.stypo blockO_ctant-158.stypo.glif blockOctant-258 blockO_ctant-258.glif blockOctant-258.stypo blockO_ctant-258.stypo.glif blockOctant-1258 blockO_ctant-1258.glif blockOctant-1258.stypo blockO_ctant-1258.stypo.glif blockOctant-358 blockO_ctant-358.glif blockOctant-358.stypo blockO_ctant-358.stypo.glif blockOctant-1358 blockO_ctant-1358.glif blockOctant-1358.stypo blockO_ctant-1358.stypo.glif blockOctant-2358 blockO_ctant-2358.glif blockOctant-2358.stypo blockO_ctant-2358.stypo.glif blockOctant-12358 blockO_ctant-12358.glif blockOctant-12358.stypo blockO_ctant-12358.stypo.glif blockOctant-458 blockO_ctant-458.glif blockOctant-458.stypo blockO_ctant-458.stypo.glif blockOctant-1458 blockO_ctant-1458.glif blockOctant-1458.stypo blockO_ctant-1458.stypo.glif blockOctant-2458 blockO_ctant-2458.glif blockOctant-2458.stypo blockO_ctant-2458.stypo.glif blockOctant-12458 blockO_ctant-12458.glif blockOctant-12458.stypo blockO_ctant-12458.stypo.glif blockOctant-3458 blockO_ctant-3458.glif blockOctant-3458.stypo blockO_ctant-3458.stypo.glif blockOctant-13458 blockO_ctant-13458.glif blockOctant-13458.stypo blockO_ctant-13458.stypo.glif blockOctant-23458 blockO_ctant-23458.glif blockOctant-23458.stypo blockO_ctant-23458.stypo.glif blockOctant-123458 blockO_ctant-123458.glif blockOctant-123458.stypo blockO_ctant-123458.stypo.glif blockOctant-168 blockO_ctant-168.glif blockOctant-168.stypo blockO_ctant-168.stypo.glif blockOctant-268 blockO_ctant-268.glif blockOctant-268.stypo blockO_ctant-268.stypo.glif blockOctant-1268 blockO_ctant-1268.glif blockOctant-1268.stypo blockO_ctant-1268.stypo.glif blockOctant-368 blockO_ctant-368.glif blockOctant-368.stypo blockO_ctant-368.stypo.glif blockOctant-2368 blockO_ctant-2368.glif blockOctant-2368.stypo blockO_ctant-2368.stypo.glif blockOctant-12368 blockO_ctant-12368.glif blockOctant-12368.stypo blockO_ctant-12368.stypo.glif blockOctant-468 blockO_ctant-468.glif blockOctant-468.stypo blockO_ctant-468.stypo.glif blockOctant-1468 blockO_ctant-1468.glif blockOctant-1468.stypo blockO_ctant-1468.stypo.glif blockOctant-12468 blockO_ctant-12468.glif blockOctant-12468.stypo blockO_ctant-12468.stypo.glif blockOctant-3468 blockO_ctant-3468.glif blockOctant-3468.stypo blockO_ctant-3468.stypo.glif blockOctant-13468 blockO_ctant-13468.glif blockOctant-13468.stypo blockO_ctant-13468.stypo.glif blockOctant-23468 blockO_ctant-23468.glif blockOctant-23468.stypo blockO_ctant-23468.stypo.glif blockOctant-568 blockO_ctant-568.glif blockOctant-568.stypo blockO_ctant-568.stypo.glif blockOctant-1568 blockO_ctant-1568.glif blockOctant-1568.stypo blockO_ctant-1568.stypo.glif blockOctant-2568 blockO_ctant-2568.glif blockOctant-2568.stypo blockO_ctant-2568.stypo.glif blockOctant-12568 blockO_ctant-12568.glif blockOctant-12568.stypo blockO_ctant-12568.stypo.glif blockOctant-3568 blockO_ctant-3568.glif blockOctant-3568.stypo blockO_ctant-3568.stypo.glif blockOctant-13568 blockO_ctant-13568.glif blockOctant-13568.stypo blockO_ctant-13568.stypo.glif blockOctant-23568 blockO_ctant-23568.glif blockOctant-23568.stypo blockO_ctant-23568.stypo.glif blockOctant-123568 blockO_ctant-123568.glif blockOctant-123568.stypo blockO_ctant-123568.stypo.glif blockOctant-4568 blockO_ctant-4568.glif blockOctant-4568.stypo blockO_ctant-4568.stypo.glif blockOctant-14568 blockO_ctant-14568.glif blockOctant-14568.stypo blockO_ctant-14568.stypo.glif blockOctant-24568 blockO_ctant-24568.glif blockOctant-24568.stypo blockO_ctant-24568.stypo.glif blockOctant-124568 blockO_ctant-124568.glif blockOctant-124568.stypo blockO_ctant-124568.stypo.glif blockOctant-34568 blockO_ctant-34568.glif blockOctant-34568.stypo blockO_ctant-34568.stypo.glif blockOctant-134568 blockO_ctant-134568.glif blockOctant-134568.stypo blockO_ctant-134568.stypo.glif blockOctant-234568 blockO_ctant-234568.glif blockOctant-234568.stypo blockO_ctant-234568.stypo.glif blockOctant-1234568 blockO_ctant-1234568.glif blockOctant-1234568.stypo blockO_ctant-1234568.stypo.glif blockOctant-178 blockO_ctant-178.glif blockOctant-178.stypo blockO_ctant-178.stypo.glif blockOctant-278 blockO_ctant-278.glif blockOctant-278.stypo blockO_ctant-278.stypo.glif blockOctant-1278 blockO_ctant-1278.glif blockOctant-1278.stypo blockO_ctant-1278.stypo.glif blockOctant-378 blockO_ctant-378.glif blockOctant-378.stypo blockO_ctant-378.stypo.glif blockOctant-1378 blockO_ctant-1378.glif blockOctant-1378.stypo blockO_ctant-1378.stypo.glif blockOctant-2378 blockO_ctant-2378.glif blockOctant-2378.stypo blockO_ctant-2378.stypo.glif blockOctant-12378 blockO_ctant-12378.glif blockOctant-12378.stypo blockO_ctant-12378.stypo.glif blockOctant-478 blockO_ctant-478.glif blockOctant-478.stypo blockO_ctant-478.stypo.glif blockOctant-1478 blockO_ctant-1478.glif blockOctant-1478.stypo blockO_ctant-1478.stypo.glif blockOctant-2478 blockO_ctant-2478.glif blockOctant-2478.stypo blockO_ctant-2478.stypo.glif blockOctant-12478 blockO_ctant-12478.glif blockOctant-12478.stypo blockO_ctant-12478.stypo.glif blockOctant-3478 blockO_ctant-3478.glif blockOctant-3478.stypo blockO_ctant-3478.stypo.glif blockOctant-13478 blockO_ctant-13478.glif blockOctant-13478.stypo blockO_ctant-13478.stypo.glif blockOctant-23478 blockO_ctant-23478.glif blockOctant-23478.stypo blockO_ctant-23478.stypo.glif blockOctant-123478 blockO_ctant-123478.glif blockOctant-123478.stypo blockO_ctant-123478.stypo.glif blockOctant-578 blockO_ctant-578.glif blockOctant-578.stypo blockO_ctant-578.stypo.glif blockOctant-1578 blockO_ctant-1578.glif blockOctant-1578.stypo blockO_ctant-1578.stypo.glif blockOctant-2578 blockO_ctant-2578.glif blockOctant-2578.stypo blockO_ctant-2578.stypo.glif blockOctant-12578 blockO_ctant-12578.glif blockOctant-12578.stypo blockO_ctant-12578.stypo.glif blockOctant-3578 blockO_ctant-3578.glif blockOctant-3578.stypo blockO_ctant-3578.stypo.glif blockOctant-13578 blockO_ctant-13578.glif blockOctant-13578.stypo blockO_ctant-13578.stypo.glif blockOctant-23578 blockO_ctant-23578.glif blockOctant-23578.stypo blockO_ctant-23578.stypo.glif blockOctant-123578 blockO_ctant-123578.glif blockOctant-123578.stypo blockO_ctant-123578.stypo.glif blockOctant-4578 blockO_ctant-4578.glif blockOctant-4578.stypo blockO_ctant-4578.stypo.glif blockOctant-14578 blockO_ctant-14578.glif blockOctant-14578.stypo blockO_ctant-14578.stypo.glif blockOctant-24578 blockO_ctant-24578.glif blockOctant-24578.stypo blockO_ctant-24578.stypo.glif blockOctant-124578 blockO_ctant-124578.glif blockOctant-124578.stypo blockO_ctant-124578.stypo.glif blockOctant-34578 blockO_ctant-34578.glif blockOctant-34578.stypo blockO_ctant-34578.stypo.glif blockOctant-134578 blockO_ctant-134578.glif blockOctant-134578.stypo blockO_ctant-134578.stypo.glif blockOctant-234578 blockO_ctant-234578.glif blockOctant-234578.stypo blockO_ctant-234578.stypo.glif blockOctant-1234578 blockO_ctant-1234578.glif blockOctant-1234578.stypo blockO_ctant-1234578.stypo.glif blockOctant-678 blockO_ctant-678.glif blockOctant-678.stypo blockO_ctant-678.stypo.glif blockOctant-1678 blockO_ctant-1678.glif blockOctant-1678.stypo blockO_ctant-1678.stypo.glif blockOctant-2678 blockO_ctant-2678.glif blockOctant-2678.stypo blockO_ctant-2678.stypo.glif blockOctant-12678 blockO_ctant-12678.glif blockOctant-12678.stypo blockO_ctant-12678.stypo.glif blockOctant-3678 blockO_ctant-3678.glif blockOctant-3678.stypo blockO_ctant-3678.stypo.glif blockOctant-13678 blockO_ctant-13678.glif blockOctant-13678.stypo blockO_ctant-13678.stypo.glif blockOctant-23678 blockO_ctant-23678.glif blockOctant-23678.stypo blockO_ctant-23678.stypo.glif blockOctant-123678 blockO_ctant-123678.glif blockOctant-123678.stypo blockO_ctant-123678.stypo.glif blockOctant-4678 blockO_ctant-4678.glif blockOctant-4678.stypo blockO_ctant-4678.stypo.glif blockOctant-14678 blockO_ctant-14678.glif blockOctant-14678.stypo blockO_ctant-14678.stypo.glif blockOctant-24678 blockO_ctant-24678.glif blockOctant-24678.stypo blockO_ctant-24678.stypo.glif blockOctant-124678 blockO_ctant-124678.glif blockOctant-124678.stypo blockO_ctant-124678.stypo.glif blockOctant-34678 blockO_ctant-34678.glif blockOctant-34678.stypo blockO_ctant-34678.stypo.glif blockOctant-134678 blockO_ctant-134678.glif blockOctant-134678.stypo blockO_ctant-134678.stypo.glif blockOctant-234678 blockO_ctant-234678.glif blockOctant-234678.stypo blockO_ctant-234678.stypo.glif blockOctant-1234678 blockO_ctant-1234678.glif blockOctant-1234678.stypo blockO_ctant-1234678.stypo.glif blockOctant-15678 blockO_ctant-15678.glif blockOctant-15678.stypo blockO_ctant-15678.stypo.glif blockOctant-25678 blockO_ctant-25678.glif blockOctant-25678.stypo blockO_ctant-25678.stypo.glif blockOctant-125678 blockO_ctant-125678.glif blockOctant-125678.stypo blockO_ctant-125678.stypo.glif blockOctant-35678 blockO_ctant-35678.glif blockOctant-35678.stypo blockO_ctant-35678.stypo.glif blockOctant-235678 blockO_ctant-235678.glif blockOctant-235678.stypo blockO_ctant-235678.stypo.glif blockOctant-1235678 blockO_ctant-1235678.glif blockOctant-1235678.stypo blockO_ctant-1235678.stypo.glif blockOctant-45678 blockO_ctant-45678.glif blockOctant-45678.stypo blockO_ctant-45678.stypo.glif blockOctant-145678 blockO_ctant-145678.glif blockOctant-145678.stypo blockO_ctant-145678.stypo.glif blockOctant-1245678 blockO_ctant-1245678.glif blockOctant-1245678.stypo blockO_ctant-1245678.stypo.glif blockOctant-1345678 blockO_ctant-1345678.glif blockOctant-1345678.stypo blockO_ctant-1345678.stypo.glif blockOctant-2345678 blockO_ctant-2345678.glif blockOctant-2345678.stypo blockO_ctant-2345678.stypo.glif blockSedecimant-1 blockS_edecimant-1.glif blockSedecimant-1.stypo blockS_edecimant-1.stypo.glif blockSedecimant-2 blockS_edecimant-2.glif blockSedecimant-2.stypo blockS_edecimant-2.stypo.glif blockSedecimant-3 blockS_edecimant-3.glif blockSedecimant-3.stypo blockS_edecimant-3.stypo.glif blockSedecimant-4 blockS_edecimant-4.glif blockSedecimant-4.stypo blockS_edecimant-4.stypo.glif blockSedecimant-5 blockS_edecimant-5.glif blockSedecimant-5.stypo blockS_edecimant-5.stypo.glif blockSedecimant-6 blockS_edecimant-6.glif blockSedecimant-6.stypo blockS_edecimant-6.stypo.glif blockSedecimant-7 blockS_edecimant-7.glif blockSedecimant-7.stypo blockS_edecimant-7.stypo.glif blockSedecimant-8 blockS_edecimant-8.glif blockSedecimant-8.stypo blockS_edecimant-8.stypo.glif blockSedecimant-9 blockS_edecimant-9.glif blockSedecimant-9.stypo blockS_edecimant-9.stypo.glif blockSedecimant-A blockS_edecimant-A.glif blockSedecimant-A.stypo blockS_edecimant-A.stypo.glif blockSedecimant-B blockS_edecimant-B.glif blockSedecimant-B.stypo blockS_edecimant-B.stypo.glif blockSedecimant-C blockS_edecimant-C.glif blockSedecimant-C.stypo blockS_edecimant-C.stypo.glif blockSedecimant-D blockS_edecimant-D.glif blockSedecimant-D.stypo blockS_edecimant-D.stypo.glif blockSedecimant-E blockS_edecimant-E.glif blockSedecimant-E.stypo blockS_edecimant-E.stypo.glif blockSedecimant-F blockS_edecimant-F.glif blockSedecimant-F.stypo blockS_edecimant-F.stypo.glif blockSedecimant-G blockS_edecimant-G.glif blockSedecimant-G.stypo blockS_edecimant-G.stypo.glif blockSedecimant-EFG blockS_edecimant-EFG.glif blockSedecimant-EFG.stypo blockS_edecimant-EFG.stypo.glif blockSedecimant-DEF blockS_edecimant-DEF.glif blockSedecimant-DEF.stypo blockS_edecimant-DEF.stypo.glif blockSedecimant-9D blockS_edecimant-9D.glif blockSedecimant-9D.stypo blockS_edecimant-9D.stypo.glif blockSedecimant-59D blockS_edecimant-59D.glif blockSedecimant-59D.stypo blockS_edecimant-59D.stypo.glif blockSedecimant-159 blockS_edecimant-159.glif blockSedecimant-159.stypo blockS_edecimant-159.stypo.glif blockSedecimant-15 blockS_edecimant-15.glif blockSedecimant-15.stypo blockS_edecimant-15.stypo.glif blockSedecimant-123 blockS_edecimant-123.glif blockSedecimant-123.stypo blockS_edecimant-123.stypo.glif blockSedecimant-234 blockS_edecimant-234.glif blockSedecimant-234.stypo blockS_edecimant-234.stypo.glif blockSedecimant-48 blockS_edecimant-48.glif blockSedecimant-48.stypo blockS_edecimant-48.stypo.glif blockSedecimant-48C blockS_edecimant-48C.glif blockSedecimant-48C.stypo blockS_edecimant-48C.stypo.glif blockSedecimant-8CG blockS_edecimant-8CG.glif blockSedecimant-8CG.stypo blockS_edecimant-8CG.stypo.glif blockSedecimant-CG blockS_edecimant-CG.glif blockSedecimant-CG.stypo blockS_edecimant-CG.stypo.glif verticalOneEighthBlock-2 verticalO_neE_ighthB_lock-2.glif verticalOneEighthBlock-2.stypo verticalO_neE_ighthB_lock-2.stypo.glif verticalOneEighthBlock-3 verticalO_neE_ighthB_lock-3.glif verticalOneEighthBlock-3.stypo verticalO_neE_ighthB_lock-3.stypo.glif verticalOneEighthBlock-4 verticalO_neE_ighthB_lock-4.glif verticalOneEighthBlock-4.stypo verticalO_neE_ighthB_lock-4.stypo.glif verticalOneEighthBlock-5 verticalO_neE_ighthB_lock-5.glif verticalOneEighthBlock-5.stypo verticalO_neE_ighthB_lock-5.stypo.glif verticalOneEighthBlock-6 verticalO_neE_ighthB_lock-6.glif verticalOneEighthBlock-6.stypo verticalO_neE_ighthB_lock-6.stypo.glif verticalOneEighthBlock-7 verticalO_neE_ighthB_lock-7.glif verticalOneEighthBlock-7.stypo verticalO_neE_ighthB_lock-7.stypo.glif horizontalOneEightBlock-2 horizontalO_neE_ightB_lock-2.glif horizontalOneEightBlock-2.stypo horizontalO_neE_ightB_lock-2.stypo.glif horizontalOneEightBlock-3 horizontalO_neE_ightB_lock-3.glif horizontalOneEightBlock-3.stypo horizontalO_neE_ightB_lock-3.stypo.glif horizontalOneEightBlock-4 horizontalO_neE_ightB_lock-4.glif horizontalOneEightBlock-4.stypo horizontalO_neE_ightB_lock-4.stypo.glif horizontalOneEightBlock-5 horizontalO_neE_ightB_lock-5.glif horizontalOneEightBlock-5.stypo horizontalO_neE_ightB_lock-5.stypo.glif horizontalOneEightBlock-6 horizontalO_neE_ightB_lock-6.glif horizontalOneEightBlock-6.stypo horizontalO_neE_ightB_lock-6.stypo.glif horizontalOneEightBlock-7 horizontalO_neE_ightB_lock-7.glif horizontalOneEightBlock-7.stypo horizontalO_neE_ightB_lock-7.stypo.glif leftAndLowerOneEightBlock leftA_ndL_owerO_neE_ightB_lock.glif leftAndLowerOneEightBlock.stypo leftA_ndL_owerO_neE_ightB_lock.stypo.glif leftAndUpperOneEightBlock leftA_ndU_pperO_neE_ightB_lock.glif leftAndUpperOneEightBlock.stypo leftA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndUpperOneEightBlock rightA_ndU_pperO_neE_ightB_lock.glif rightAndUpperOneEightBlock.stypo rightA_ndU_pperO_neE_ightB_lock.stypo.glif rightAndLowerOneEightBlock rightA_ndL_owerO_neE_ightB_lock.glif rightAndLowerOneEightBlock.stypo rightA_ndL_owerO_neE_ightB_lock.stypo.glif upperAndLowerOneEightBlock upperA_ndL_owerO_neE_ightB_lock.glif upperAndLowerOneEightBlock.stypo upperA_ndL_owerO_neE_ightB_lock.stypo.glif upperThreeEighthsBlock upperT_hreeE_ighthsB_lock.glif upperThreeEighthsBlock.stypo upperT_hreeE_ighthsB_lock.stypo.glif upperFiveEighthsBlock upperF_iveE_ighthsB_lock.glif upperFiveEighthsBlock.stypo upperF_iveE_ighthsB_lock.stypo.glif upperSevenEighthsBlock upperS_evenE_ighthsB_lock.glif upperSevenEighthsBlock.stypo upperS_evenE_ighthsB_lock.stypo.glif rightOneQuarterBlock rightO_neQ_uarterB_lock.glif rightOneQuarterBlock.stypo rightO_neQ_uarterB_lock.stypo.glif rightThreeEighthsBlock rightT_hreeE_ighthsB_lock.glif rightThreeEighthsBlock.stypo rightT_hreeE_ighthsB_lock.stypo.glif rightFiveEighthsBlock rightF_iveE_ighthsB_lock.glif rightFiveEighthsBlock.stypo rightF_iveE_ighthsB_lock.stypo.glif rightThreeQuartersBlock rightT_hreeQ_uartersB_lock.glif rightThreeQuartersBlock.stypo rightT_hreeQ_uartersB_lock.stypo.glif rightSevenEighthsBlock rightS_evenE_ighthsB_lock.glif rightSevenEighthsBlock.stypo rightS_evenE_ighthsB_lock.stypo.glif leftTwoThirdsBlock leftT_woT_hirdsB_lock.glif leftTwoThirdsBlock.stypo leftT_woT_hirdsB_lock.stypo.glif leftOneThirdBlock leftO_neT_hirdB_lock.glif leftOneThirdBlock.stypo leftO_neT_hirdB_lock.stypo.glif heavyHorizontalFill heavyH_orizontalF_ill.glif heavyHorizontalFill.stypo heavyH_orizontalF_ill.stypo.glif blockSeparatedQuadrant-1 blockS_eparatedQ_uadrant-1.glif blockSeparatedQuadrant-1.stypo blockS_eparatedQ_uadrant-1.stypo.glif blockSeparatedQuadrant-2 blockS_eparatedQ_uadrant-2.glif blockSeparatedQuadrant-2.stypo blockS_eparatedQ_uadrant-2.stypo.glif blockSeparatedQuadrant-12 blockS_eparatedQ_uadrant-12.glif blockSeparatedQuadrant-12.stypo blockS_eparatedQ_uadrant-12.stypo.glif blockSeparatedQuadrant-3 blockS_eparatedQ_uadrant-3.glif blockSeparatedQuadrant-3.stypo blockS_eparatedQ_uadrant-3.stypo.glif blockSeparatedQuadrant-13 blockS_eparatedQ_uadrant-13.glif blockSeparatedQuadrant-13.stypo blockS_eparatedQ_uadrant-13.stypo.glif blockSeparatedQuadrant-23 blockS_eparatedQ_uadrant-23.glif blockSeparatedQuadrant-23.stypo blockS_eparatedQ_uadrant-23.stypo.glif blockSeparatedQuadrant-123 blockS_eparatedQ_uadrant-123.glif blockSeparatedQuadrant-123.stypo blockS_eparatedQ_uadrant-123.stypo.glif blockSeparatedQuadrant-4 blockS_eparatedQ_uadrant-4.glif blockSeparatedQuadrant-4.stypo blockS_eparatedQ_uadrant-4.stypo.glif blockSeparatedQuadrant-14 blockS_eparatedQ_uadrant-14.glif blockSeparatedQuadrant-14.stypo blockS_eparatedQ_uadrant-14.stypo.glif blockSeparatedQuadrant-24 blockS_eparatedQ_uadrant-24.glif blockSeparatedQuadrant-24.stypo blockS_eparatedQ_uadrant-24.stypo.glif blockSeparatedQuadrant-124 blockS_eparatedQ_uadrant-124.glif blockSeparatedQuadrant-124.stypo blockS_eparatedQ_uadrant-124.stypo.glif blockSeparatedQuadrant-34 blockS_eparatedQ_uadrant-34.glif blockSeparatedQuadrant-34.stypo blockS_eparatedQ_uadrant-34.stypo.glif blockSeparatedQuadrant-134 blockS_eparatedQ_uadrant-134.glif blockSeparatedQuadrant-134.stypo blockS_eparatedQ_uadrant-134.stypo.glif blockSeparatedQuadrant-234 blockS_eparatedQ_uadrant-234.glif blockSeparatedQuadrant-234.stypo blockS_eparatedQ_uadrant-234.stypo.glif blockSeparatedQuadrant-1234 blockS_eparatedQ_uadrant-1234.glif blockSeparatedQuadrant-1234.stypo blockS_eparatedQ_uadrant-1234.stypo.glif blockSeparatedSextant-1 blockS_eparatedS_extant-1.glif blockSeparatedSextant-1.stypo blockS_eparatedS_extant-1.stypo.glif blockSeparatedSextant-2 blockS_eparatedS_extant-2.glif blockSeparatedSextant-2.stypo blockS_eparatedS_extant-2.stypo.glif blockSeparatedSextant-12 blockS_eparatedS_extant-12.glif blockSeparatedSextant-12.stypo blockS_eparatedS_extant-12.stypo.glif blockSeparatedSextant-3 blockS_eparatedS_extant-3.glif blockSeparatedSextant-3.stypo blockS_eparatedS_extant-3.stypo.glif blockSeparatedSextant-13 blockS_eparatedS_extant-13.glif blockSeparatedSextant-13.stypo blockS_eparatedS_extant-13.stypo.glif blockSeparatedSextant-23 blockS_eparatedS_extant-23.glif blockSeparatedSextant-23.stypo blockS_eparatedS_extant-23.stypo.glif blockSeparatedSextant-123 blockS_eparatedS_extant-123.glif blockSeparatedSextant-123.stypo blockS_eparatedS_extant-123.stypo.glif blockSeparatedSextant-4 blockS_eparatedS_extant-4.glif blockSeparatedSextant-4.stypo blockS_eparatedS_extant-4.stypo.glif blockSeparatedSextant-14 blockS_eparatedS_extant-14.glif blockSeparatedSextant-14.stypo blockS_eparatedS_extant-14.stypo.glif blockSeparatedSextant-24 blockS_eparatedS_extant-24.glif blockSeparatedSextant-24.stypo blockS_eparatedS_extant-24.stypo.glif blockSeparatedSextant-124 blockS_eparatedS_extant-124.glif blockSeparatedSextant-124.stypo blockS_eparatedS_extant-124.stypo.glif blockSeparatedSextant-34 blockS_eparatedS_extant-34.glif blockSeparatedSextant-34.stypo blockS_eparatedS_extant-34.stypo.glif blockSeparatedSextant-134 blockS_eparatedS_extant-134.glif blockSeparatedSextant-134.stypo blockS_eparatedS_extant-134.stypo.glif blockSeparatedSextant-234 blockS_eparatedS_extant-234.glif blockSeparatedSextant-234.stypo blockS_eparatedS_extant-234.stypo.glif blockSeparatedSextant-1234 blockS_eparatedS_extant-1234.glif blockSeparatedSextant-1234.stypo blockS_eparatedS_extant-1234.stypo.glif blockSeparatedSextant-5 blockS_eparatedS_extant-5.glif blockSeparatedSextant-5.stypo blockS_eparatedS_extant-5.stypo.glif blockSeparatedSextant-15 blockS_eparatedS_extant-15.glif blockSeparatedSextant-15.stypo blockS_eparatedS_extant-15.stypo.glif blockSeparatedSextant-25 blockS_eparatedS_extant-25.glif blockSeparatedSextant-25.stypo blockS_eparatedS_extant-25.stypo.glif blockSeparatedSextant-125 blockS_eparatedS_extant-125.glif blockSeparatedSextant-125.stypo blockS_eparatedS_extant-125.stypo.glif blockSeparatedSextant-35 blockS_eparatedS_extant-35.glif blockSeparatedSextant-35.stypo blockS_eparatedS_extant-35.stypo.glif blockSeparatedSextant-135 blockS_eparatedS_extant-135.glif blockSeparatedSextant-135.stypo blockS_eparatedS_extant-135.stypo.glif blockSeparatedSextant-235 blockS_eparatedS_extant-235.glif blockSeparatedSextant-235.stypo blockS_eparatedS_extant-235.stypo.glif blockSeparatedSextant-1235 blockS_eparatedS_extant-1235.glif blockSeparatedSextant-1235.stypo blockS_eparatedS_extant-1235.stypo.glif blockSeparatedSextant-45 blockS_eparatedS_extant-45.glif blockSeparatedSextant-45.stypo blockS_eparatedS_extant-45.stypo.glif blockSeparatedSextant-145 blockS_eparatedS_extant-145.glif blockSeparatedSextant-145.stypo blockS_eparatedS_extant-145.stypo.glif blockSeparatedSextant-245 blockS_eparatedS_extant-245.glif blockSeparatedSextant-245.stypo blockS_eparatedS_extant-245.stypo.glif blockSeparatedSextant-1245 blockS_eparatedS_extant-1245.glif blockSeparatedSextant-1245.stypo blockS_eparatedS_extant-1245.stypo.glif blockSeparatedSextant-345 blockS_eparatedS_extant-345.glif blockSeparatedSextant-345.stypo blockS_eparatedS_extant-345.stypo.glif blockSeparatedSextant-1345 blockS_eparatedS_extant-1345.glif blockSeparatedSextant-1345.stypo blockS_eparatedS_extant-1345.stypo.glif blockSeparatedSextant-2345 blockS_eparatedS_extant-2345.glif blockSeparatedSextant-2345.stypo blockS_eparatedS_extant-2345.stypo.glif blockSeparatedSextant-12345 blockS_eparatedS_extant-12345.glif blockSeparatedSextant-12345.stypo blockS_eparatedS_extant-12345.stypo.glif blockSeparatedSextant-6 blockS_eparatedS_extant-6.glif blockSeparatedSextant-6.stypo blockS_eparatedS_extant-6.stypo.glif blockSeparatedSextant-16 blockS_eparatedS_extant-16.glif blockSeparatedSextant-16.stypo blockS_eparatedS_extant-16.stypo.glif blockSeparatedSextant-26 blockS_eparatedS_extant-26.glif blockSeparatedSextant-26.stypo blockS_eparatedS_extant-26.stypo.glif blockSeparatedSextant-126 blockS_eparatedS_extant-126.glif blockSeparatedSextant-126.stypo blockS_eparatedS_extant-126.stypo.glif blockSeparatedSextant-36 blockS_eparatedS_extant-36.glif blockSeparatedSextant-36.stypo blockS_eparatedS_extant-36.stypo.glif blockSeparatedSextant-136 blockS_eparatedS_extant-136.glif blockSeparatedSextant-136.stypo blockS_eparatedS_extant-136.stypo.glif blockSeparatedSextant-236 blockS_eparatedS_extant-236.glif blockSeparatedSextant-236.stypo blockS_eparatedS_extant-236.stypo.glif blockSeparatedSextant-1236 blockS_eparatedS_extant-1236.glif blockSeparatedSextant-1236.stypo blockS_eparatedS_extant-1236.stypo.glif blockSeparatedSextant-46 blockS_eparatedS_extant-46.glif blockSeparatedSextant-46.stypo blockS_eparatedS_extant-46.stypo.glif blockSeparatedSextant-146 blockS_eparatedS_extant-146.glif blockSeparatedSextant-146.stypo blockS_eparatedS_extant-146.stypo.glif blockSeparatedSextant-246 blockS_eparatedS_extant-246.glif blockSeparatedSextant-246.stypo blockS_eparatedS_extant-246.stypo.glif blockSeparatedSextant-1246 blockS_eparatedS_extant-1246.glif blockSeparatedSextant-1246.stypo blockS_eparatedS_extant-1246.stypo.glif blockSeparatedSextant-346 blockS_eparatedS_extant-346.glif blockSeparatedSextant-346.stypo blockS_eparatedS_extant-346.stypo.glif blockSeparatedSextant-1346 blockS_eparatedS_extant-1346.glif blockSeparatedSextant-1346.stypo blockS_eparatedS_extant-1346.stypo.glif blockSeparatedSextant-2346 blockS_eparatedS_extant-2346.glif blockSeparatedSextant-2346.stypo blockS_eparatedS_extant-2346.stypo.glif blockSeparatedSextant-12346 blockS_eparatedS_extant-12346.glif blockSeparatedSextant-12346.stypo blockS_eparatedS_extant-12346.stypo.glif blockSeparatedSextant-56 blockS_eparatedS_extant-56.glif blockSeparatedSextant-56.stypo blockS_eparatedS_extant-56.stypo.glif blockSeparatedSextant-156 blockS_eparatedS_extant-156.glif blockSeparatedSextant-156.stypo blockS_eparatedS_extant-156.stypo.glif blockSeparatedSextant-256 blockS_eparatedS_extant-256.glif blockSeparatedSextant-256.stypo blockS_eparatedS_extant-256.stypo.glif blockSeparatedSextant-1256 blockS_eparatedS_extant-1256.glif blockSeparatedSextant-1256.stypo blockS_eparatedS_extant-1256.stypo.glif blockSeparatedSextant-356 blockS_eparatedS_extant-356.glif blockSeparatedSextant-356.stypo blockS_eparatedS_extant-356.stypo.glif blockSeparatedSextant-1356 blockS_eparatedS_extant-1356.glif blockSeparatedSextant-1356.stypo blockS_eparatedS_extant-1356.stypo.glif blockSeparatedSextant-2356 blockS_eparatedS_extant-2356.glif blockSeparatedSextant-2356.stypo blockS_eparatedS_extant-2356.stypo.glif blockSeparatedSextant-12356 blockS_eparatedS_extant-12356.glif blockSeparatedSextant-12356.stypo blockS_eparatedS_extant-12356.stypo.glif blockSeparatedSextant-456 blockS_eparatedS_extant-456.glif blockSeparatedSextant-456.stypo blockS_eparatedS_extant-456.stypo.glif blockSeparatedSextant-1456 blockS_eparatedS_extant-1456.glif blockSeparatedSextant-1456.stypo blockS_eparatedS_extant-1456.stypo.glif blockSeparatedSextant-2456 blockS_eparatedS_extant-2456.glif blockSeparatedSextant-2456.stypo blockS_eparatedS_extant-2456.stypo.glif blockSeparatedSextant-12456 blockS_eparatedS_extant-12456.glif blockSeparatedSextant-12456.stypo blockS_eparatedS_extant-12456.stypo.glif blockSeparatedSextant-3456 blockS_eparatedS_extant-3456.glif blockSeparatedSextant-3456.stypo blockS_eparatedS_extant-3456.stypo.glif blockSeparatedSextant-13456 blockS_eparatedS_extant-13456.glif blockSeparatedSextant-13456.stypo blockS_eparatedS_extant-13456.stypo.glif blockSeparatedSextant-23456 blockS_eparatedS_extant-23456.glif blockSeparatedSextant-23456.stypo blockS_eparatedS_extant-23456.stypo.glif blockSeparatedSextant-123456 blockS_eparatedS_extant-123456.glif blockSeparatedSextant-123456.stypo blockS_eparatedS_extant-123456.stypo.glif segmentedDigit0 segmentedD_igit0.glif segmentedDigit1 segmentedD_igit1.glif segmentedDigit2 segmentedD_igit2.glif segmentedDigit3 segmentedD_igit3.glif segmentedDigit4 segmentedD_igit4.glif segmentedDigit5 segmentedD_igit5.glif segmentedDigit6 segmentedD_igit6.glif segmentedDigit7 segmentedD_igit7.glif segmentedDigit8 segmentedD_igit8.glif segmentedDigit9 segmentedD_igit9.glif largeType-1CE1A largeT_ype-1CE1A.glif largeType-1CE1A.stypo largeT_ype-1CE1A.stypo.glif largeType-1CE1B largeT_ype-1CE1B.glif largeType-1CE1B.stypo largeT_ype-1CE1B.stypo.glif largeType-1CE1C largeT_ype-1CE1C.glif largeType-1CE1C.stypo largeT_ype-1CE1C.stypo.glif largeType-1CE1D largeT_ype-1CE1D.glif largeType-1CE1D.stypo largeT_ype-1CE1D.stypo.glif largeType-1CE1E largeT_ype-1CE1E.glif largeType-1CE1E.stypo largeT_ype-1CE1E.stypo.glif largeType-1CE1F largeT_ype-1CE1F.glif largeType-1CE1F.stypo largeT_ype-1CE1F.stypo.glif largeType-1CE20 largeT_ype-1CE20.glif largeType-1CE20.stypo largeT_ype-1CE20.stypo.glif largeType-1CE21 largeT_ype-1CE21.glif largeType-1CE21.stypo largeT_ype-1CE21.stypo.glif largeType-1CE22 largeT_ype-1CE22.glif largeType-1CE22.stypo largeT_ype-1CE22.stypo.glif largeType-1CE23 largeT_ype-1CE23.glif largeType-1CE23.stypo largeT_ype-1CE23.stypo.glif largeType-1CE24 largeT_ype-1CE24.glif largeType-1CE24.stypo largeT_ype-1CE24.stypo.glif largeType-1CE25 largeT_ype-1CE25.glif largeType-1CE25.stypo largeT_ype-1CE25.stypo.glif largeType-1CE26 largeT_ype-1CE26.glif largeType-1CE26.stypo largeT_ype-1CE26.stypo.glif largeType-1CE27 largeT_ype-1CE27.glif largeType-1CE27.stypo largeT_ype-1CE27.stypo.glif largeType-1CE28 largeT_ype-1CE28.glif largeType-1CE28.stypo largeT_ype-1CE28.stypo.glif largeType-1CE29 largeT_ype-1CE29.glif largeType-1CE29.stypo largeT_ype-1CE29.stypo.glif largeType-1CE2A largeT_ype-1CE2A.glif largeType-1CE2A.stypo largeT_ype-1CE2A.stypo.glif largeType-1CE2B largeT_ype-1CE2B.glif largeType-1CE2B.stypo largeT_ype-1CE2B.stypo.glif largeType-1CE2C largeT_ype-1CE2C.glif largeType-1CE2C.stypo largeT_ype-1CE2C.stypo.glif largeType-1CE2D largeT_ype-1CE2D.glif largeType-1CE2D.stypo largeT_ype-1CE2D.stypo.glif largeType-1CE2E largeT_ype-1CE2E.glif largeType-1CE2E.stypo largeT_ype-1CE2E.stypo.glif largeType-1CE2F largeT_ype-1CE2F.glif largeType-1CE2F.stypo largeT_ype-1CE2F.stypo.glif largeType-1CE30 largeT_ype-1CE30.glif largeType-1CE30.stypo largeT_ype-1CE30.stypo.glif largeType-1CE31 largeT_ype-1CE31.glif largeType-1CE31.stypo largeT_ype-1CE31.stypo.glif largeType-1CE32 largeT_ype-1CE32.glif largeType-1CE32.stypo largeT_ype-1CE32.stypo.glif largeType-1CE33 largeT_ype-1CE33.glif largeType-1CE33.stypo largeT_ype-1CE33.stypo.glif largeType-1CE34 largeT_ype-1CE34.glif largeType-1CE34.stypo largeT_ype-1CE34.stypo.glif largeType-1CE35 largeT_ype-1CE35.glif largeType-1CE35.stypo largeT_ype-1CE35.stypo.glif largeType-1CE36 largeT_ype-1CE36.glif largeType-1CE36.stypo largeT_ype-1CE36.stypo.glif largeType-1CE37 largeT_ype-1CE37.glif largeType-1CE37.stypo largeT_ype-1CE37.stypo.glif largeType-1CE38 largeT_ype-1CE38.glif largeType-1CE38.stypo largeT_ype-1CE38.stypo.glif largeType-1CE39 largeT_ype-1CE39.glif largeType-1CE39.stypo largeT_ype-1CE39.stypo.glif largeType-1CE3A largeT_ype-1CE3A.glif largeType-1CE3A.stypo largeT_ype-1CE3A.stypo.glif largeType-1CE3B largeT_ype-1CE3B.glif largeType-1CE3B.stypo largeT_ype-1CE3B.stypo.glif largeType-1CE3C largeT_ype-1CE3C.glif largeType-1CE3C.stypo largeT_ype-1CE3C.stypo.glif largeType-1CE3D largeT_ype-1CE3D.glif largeType-1CE3D.stypo largeT_ype-1CE3D.stypo.glif largeType-1CE3E largeT_ype-1CE3E.glif largeType-1CE3E.stypo largeT_ype-1CE3E.stypo.glif largeType-1CE3F largeT_ype-1CE3F.glif largeType-1CE3F.stypo largeT_ype-1CE3F.stypo.glif largeType-1CE40 largeT_ype-1CE40.glif largeType-1CE40.stypo largeT_ype-1CE40.stypo.glif largeType-1CE41 largeT_ype-1CE41.glif largeType-1CE41.stypo largeT_ype-1CE41.stypo.glif largeType-1CE42 largeT_ype-1CE42.glif largeType-1CE42.stypo largeT_ype-1CE42.stypo.glif largeType-1CE43 largeT_ype-1CE43.glif largeType-1CE43.stypo largeT_ype-1CE43.stypo.glif largeType-1CE44 largeT_ype-1CE44.glif largeType-1CE44.stypo largeT_ype-1CE44.stypo.glif largeType-1CE45 largeT_ype-1CE45.glif largeType-1CE45.stypo largeT_ype-1CE45.stypo.glif largeType-1CE46 largeT_ype-1CE46.glif largeType-1CE46.stypo largeT_ype-1CE46.stypo.glif largeType-1CE47 largeT_ype-1CE47.glif largeType-1CE47.stypo largeT_ype-1CE47.stypo.glif largeType-1CE48 largeT_ype-1CE48.glif largeType-1CE48.stypo largeT_ype-1CE48.stypo.glif largeType-1CE49 largeT_ype-1CE49.glif largeType-1CE49.stypo largeT_ype-1CE49.stypo.glif largeType-1CE4A largeT_ype-1CE4A.glif largeType-1CE4A.stypo largeT_ype-1CE4A.stypo.glif largeType-1CE4B largeT_ype-1CE4B.glif largeType-1CE4B.stypo largeT_ype-1CE4B.stypo.glif largeType-1CE4C largeT_ype-1CE4C.glif largeType-1CE4C.stypo largeT_ype-1CE4C.stypo.glif largeType-1CE4D largeT_ype-1CE4D.glif largeType-1CE4D.stypo largeT_ype-1CE4D.stypo.glif largeType-1CE4E largeT_ype-1CE4E.glif largeType-1CE4E.stypo largeT_ype-1CE4E.stypo.glif largeType-1CE4F largeT_ype-1CE4F.glif largeType-1CE4F.stypo largeT_ype-1CE4F.stypo.glif largeType-1CE50 largeT_ype-1CE50.glif largeType-1CE50.stypo largeT_ype-1CE50.stypo.glif ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/copyright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ uni25A6 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/currency.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/d.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dagger.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/daggerdbl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dashdownA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcaron.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dcroat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/de-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/degree.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deleteC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/delta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name four.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name one.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name three.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name D.half alignment -1 index 1 name two.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ uni25A9 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/diamondB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresiscomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresiscomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/divide.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/divisionslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar.glif ================================================ com.schriftgestaltung.Glyphs.glyph.leftMetricsKey =S com.schriftgestaltung.Glyphs.glyph.rightMetricsKey =S ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dong.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccentcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotaccentcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dotbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots123678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots124678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots125-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots125678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots126-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots12678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots127-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots128-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots134678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots135-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots135678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots136-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots13678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots137-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots138-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots145-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots145678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots146-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots14678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots147-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots148-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots15-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots156-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots15678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots157-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots158-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots16-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots167-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots1678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots168-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots17-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots178-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots18-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots234678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots235-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots235678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots236-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots23678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots237-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots238-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots245-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots245678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots246-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots24678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots247-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots248-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots25-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots256-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots25678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots257-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots258-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots26-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots267-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots2678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots268-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots27-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots278-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots28-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots345-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots345678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots346-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots34678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots347-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots348-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots35-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots356-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots35678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots357-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots358-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots36-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots367-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots3678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots368-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots37-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots378-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots38-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots45-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots456-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots45678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots457-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots458-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots46-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots467-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots4678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots468-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots47-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots478-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots48-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots5-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots56-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots567-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots5678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots568-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots57-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots578-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots58-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots6-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots67-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots678-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots68-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots7-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots78-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dots8-braille.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dottedC_ircle.glif ================================================ uni25CC ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dottedS_quare.glif ================================================ uni2B1A ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ uni25BE ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downB_lackT_riangle.glif ================================================ triagdn ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ uni25BF ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/downW_hiteT_riangle.glif ================================================ uni25BD ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dtail.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dze-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/dzhe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/e-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/e.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ebreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ecircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/edotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ef-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/egrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ehookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eight.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eightinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eightsuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/el-cy.glif ================================================ uni043B public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ellipsis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/em-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/emacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/emdash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/en-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name M.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name X.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name B.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/endescender-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eng.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/enquiryC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name Q.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/epsilon.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/epsilontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/equivalence.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/er-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ereversed-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/es-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/escapeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name E.half alignment -1 index 1 name C.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/esh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/estimated.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eta.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/etatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eth.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/etilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eturned.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/euro.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/eurocurrency.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclam_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclamdouble.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/exclamdown.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ezh.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.locl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/f.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/filledR_ect.glif ================================================ filledrect ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/firsttonechinese.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fisheye.glif ================================================ uni25C9 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/five.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveeighths.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fiveinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fivesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fl.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/florin.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/formF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name F.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/four.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fourinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/foursuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fraction.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/franc.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fullB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/fullB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/g.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gamma-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gamma.glif ================================================ public.markColor 0.67,0.95,0.38,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gbreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gdotaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ge-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/germandbls.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ghestroke-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gheupturn-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstop.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstopmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/glottalstopreversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/grave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gravetonecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/greaterequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name G.half alignment -1 index 1 name S.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/gstroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guarani.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guillemetleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guillemetright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guilsinglleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/guilsinglright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/h.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/h.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ha-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hardsign-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heartB_lackS_uit.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hookabovecomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hookabovecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ uni2B23 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalF_illS_quare.glif ================================================ uni25A4 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name H.half alignment -1 index 1 name T.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontalbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horizontallineextension.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/horncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/house.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hryvnia.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlautcomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hungarumlautcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/hyphentwo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/i-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/i.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ia-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ibreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/icircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/idotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ie-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iegrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/igrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ihookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ii-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iigrave-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iishort-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ij.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ij_acute.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name acutecomb alignment -1 index 1 name acutecomb ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/imacron-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/imacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/increment.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/infinity.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integral.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integralbt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/integraltp.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/intersection.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/inverseB_ullet.glif ================================================ invbullet ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ invcircle ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/io-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iota-latin.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iota.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotadieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotadieresistonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iotatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/itilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.loclB_G_R_.alt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/j.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jcircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/jdotless.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/je-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/k.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/k.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.loclB_G_R_.alt.glif ================================================ public.markColor 0.97,1,0,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kadescender-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kaiS_ymbol.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kappa.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kgreenlandic.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kip.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/kje-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/klinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/l.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/l.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lacute.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lambda.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lambdastroke.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeC_ircle.glif ================================================ uni25EF ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE20.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE21.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE22.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE23.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE24.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE25.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE26.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE27.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE28.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE29.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE30.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE31.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE32.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE33.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE34.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE35.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE36.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE37.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE38.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE39.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE40.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE41.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE42.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE43.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE44.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE45.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE46.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE47.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE48.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE49.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE50.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lari.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/layerinfo.plist ================================================ lib com.schriftgestaltung.layerId A4690C19-62E3-4552-AAB4-AF5F97C4421F com.schriftgestaltung.layerOrderInGlyph..notdef 2 com.schriftgestaltung.layerOrderInGlyph.A 2 com.schriftgestaltung.layerOrderInGlyph.A-cy 0 com.schriftgestaltung.layerOrderInGlyph.A.half 2 com.schriftgestaltung.layerOrderInGlyph.AE 2 com.schriftgestaltung.layerOrderInGlyph.AEacute 2 com.schriftgestaltung.layerOrderInGlyph.Aacute 2 com.schriftgestaltung.layerOrderInGlyph.Abreve 2 com.schriftgestaltung.layerOrderInGlyph.Abreveacute 2 com.schriftgestaltung.layerOrderInGlyph.Abrevedotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Abrevegrave 2 com.schriftgestaltung.layerOrderInGlyph.Abrevehookabove 2 com.schriftgestaltung.layerOrderInGlyph.Abrevetilde 2 com.schriftgestaltung.layerOrderInGlyph.Acaron 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Acircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Adieresis 2 com.schriftgestaltung.layerOrderInGlyph.Adotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Agrave 2 com.schriftgestaltung.layerOrderInGlyph.Ahookabove 2 com.schriftgestaltung.layerOrderInGlyph.Alpha 2 com.schriftgestaltung.layerOrderInGlyph.Alpha-latin 2 com.schriftgestaltung.layerOrderInGlyph.Alphatonos 2 com.schriftgestaltung.layerOrderInGlyph.Amacron 2 com.schriftgestaltung.layerOrderInGlyph.Aogonek 2 com.schriftgestaltung.layerOrderInGlyph.Aring 2 com.schriftgestaltung.layerOrderInGlyph.Aringacute 2 com.schriftgestaltung.layerOrderInGlyph.Asmall 2 com.schriftgestaltung.layerOrderInGlyph.Astroke 2 com.schriftgestaltung.layerOrderInGlyph.Atilde 2 com.schriftgestaltung.layerOrderInGlyph.B 2 com.schriftgestaltung.layerOrderInGlyph.B.half 2 com.schriftgestaltung.layerOrderInGlyph.Be-cy 0 com.schriftgestaltung.layerOrderInGlyph.Beta 2 com.schriftgestaltung.layerOrderInGlyph.C 2 com.schriftgestaltung.layerOrderInGlyph.C.half 2 com.schriftgestaltung.layerOrderInGlyph.CR 2 com.schriftgestaltung.layerOrderInGlyph.Cacute 2 com.schriftgestaltung.layerOrderInGlyph.Cacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Ccaron 2 com.schriftgestaltung.layerOrderInGlyph.Ccedilla 2 com.schriftgestaltung.layerOrderInGlyph.Ccircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Cdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Che-cy 0 com.schriftgestaltung.layerOrderInGlyph.Chedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Chi 2 com.schriftgestaltung.layerOrderInGlyph.Cstroke 2 com.schriftgestaltung.layerOrderInGlyph.D 2 com.schriftgestaltung.layerOrderInGlyph.D.half 2 com.schriftgestaltung.layerOrderInGlyph.Dafrican 0 com.schriftgestaltung.layerOrderInGlyph.Dcaron 2 com.schriftgestaltung.layerOrderInGlyph.Dcroat 2 com.schriftgestaltung.layerOrderInGlyph.De-cy 0 com.schriftgestaltung.layerOrderInGlyph.De-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Delta 2 com.schriftgestaltung.layerOrderInGlyph.Dje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Dze-cy 0 com.schriftgestaltung.layerOrderInGlyph.Dzhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.E 2 com.schriftgestaltung.layerOrderInGlyph.E-cy 0 com.schriftgestaltung.layerOrderInGlyph.E.half 2 com.schriftgestaltung.layerOrderInGlyph.Eacute 2 com.schriftgestaltung.layerOrderInGlyph.Ebreve 2 com.schriftgestaltung.layerOrderInGlyph.Ecaron 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ecircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Edieresis 2 com.schriftgestaltung.layerOrderInGlyph.Edotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Edotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ef-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ef-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Egrave 2 com.schriftgestaltung.layerOrderInGlyph.Ehookabove 2 com.schriftgestaltung.layerOrderInGlyph.El-cy 0 com.schriftgestaltung.layerOrderInGlyph.El-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.Em-cy 0 com.schriftgestaltung.layerOrderInGlyph.Emacron 2 com.schriftgestaltung.layerOrderInGlyph.En-cy 0 com.schriftgestaltung.layerOrderInGlyph.Endescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Eng 2 com.schriftgestaltung.layerOrderInGlyph.Eogonek 2 com.schriftgestaltung.layerOrderInGlyph.Eopen 2 com.schriftgestaltung.layerOrderInGlyph.Epsilon 2 com.schriftgestaltung.layerOrderInGlyph.Epsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.Er-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ereversed 2 com.schriftgestaltung.layerOrderInGlyph.Ereversed-cy 0 com.schriftgestaltung.layerOrderInGlyph.Es-cy 0 com.schriftgestaltung.layerOrderInGlyph.Esh 2 com.schriftgestaltung.layerOrderInGlyph.Eta 2 com.schriftgestaltung.layerOrderInGlyph.Etatonos 2 com.schriftgestaltung.layerOrderInGlyph.Eth 2 com.schriftgestaltung.layerOrderInGlyph.Etilde 2 com.schriftgestaltung.layerOrderInGlyph.Ezh 2 com.schriftgestaltung.layerOrderInGlyph.F 2 com.schriftgestaltung.layerOrderInGlyph.F.half 2 com.schriftgestaltung.layerOrderInGlyph.Fhook 0 com.schriftgestaltung.layerOrderInGlyph.G 2 com.schriftgestaltung.layerOrderInGlyph.G.half 2 com.schriftgestaltung.layerOrderInGlyph.Gamma 2 com.schriftgestaltung.layerOrderInGlyph.Gammaafrican 2 com.schriftgestaltung.layerOrderInGlyph.Gbreve 2 com.schriftgestaltung.layerOrderInGlyph.Gcaron 2 com.schriftgestaltung.layerOrderInGlyph.Gcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Gcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Gdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ge-cy 0 com.schriftgestaltung.layerOrderInGlyph.Germandbls 2 com.schriftgestaltung.layerOrderInGlyph.Ghestroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gheupturn-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Gsmall 2 com.schriftgestaltung.layerOrderInGlyph.Gstroke 2 com.schriftgestaltung.layerOrderInGlyph.H 2 com.schriftgestaltung.layerOrderInGlyph.H.half 2 com.schriftgestaltung.layerOrderInGlyph.Ha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hardsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.Hbar 2 com.schriftgestaltung.layerOrderInGlyph.Hcaron 2 com.schriftgestaltung.layerOrderInGlyph.Hcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Hdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.I 2 com.schriftgestaltung.layerOrderInGlyph.I-cy 0 com.schriftgestaltung.layerOrderInGlyph.I.half 2 com.schriftgestaltung.layerOrderInGlyph.IJ 2 com.schriftgestaltung.layerOrderInGlyph.IJ_acute 0 com.schriftgestaltung.layerOrderInGlyph.Ia-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iacute 2 com.schriftgestaltung.layerOrderInGlyph.Ibreve 2 com.schriftgestaltung.layerOrderInGlyph.Icircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Idieresis 2 com.schriftgestaltung.layerOrderInGlyph.Idotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Idotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ie-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iegrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.Igrave 2 com.schriftgestaltung.layerOrderInGlyph.Ihookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ii-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iigrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iishort-cy 0 com.schriftgestaltung.layerOrderInGlyph.Imacron 2 com.schriftgestaltung.layerOrderInGlyph.Imacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.Io-cy 0 com.schriftgestaltung.layerOrderInGlyph.Iogonek 2 com.schriftgestaltung.layerOrderInGlyph.Iota 2 com.schriftgestaltung.layerOrderInGlyph.Iotaafrican 2 com.schriftgestaltung.layerOrderInGlyph.Iotadieresis 2 com.schriftgestaltung.layerOrderInGlyph.Iotatonos 2 com.schriftgestaltung.layerOrderInGlyph.Ismall 2 com.schriftgestaltung.layerOrderInGlyph.Itilde 2 com.schriftgestaltung.layerOrderInGlyph.Iu-cy 0 com.schriftgestaltung.layerOrderInGlyph.J 2 com.schriftgestaltung.layerOrderInGlyph.Jacute 2 com.schriftgestaltung.layerOrderInGlyph.Jcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Je-cy 0 com.schriftgestaltung.layerOrderInGlyph.K 2 com.schriftgestaltung.layerOrderInGlyph.K.half 2 com.schriftgestaltung.layerOrderInGlyph.Ka-cy 0 com.schriftgestaltung.layerOrderInGlyph.Kacute 2 com.schriftgestaltung.layerOrderInGlyph.Kadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.KaiSymbol 2 com.schriftgestaltung.layerOrderInGlyph.Kappa 2 com.schriftgestaltung.layerOrderInGlyph.Kcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Kdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Kje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Klinebelow 2 com.schriftgestaltung.layerOrderInGlyph.L 2 com.schriftgestaltung.layerOrderInGlyph.L.half 2 com.schriftgestaltung.layerOrderInGlyph.LIG 2 com.schriftgestaltung.layerOrderInGlyph.Lacute 2 com.schriftgestaltung.layerOrderInGlyph.Lambda 2 com.schriftgestaltung.layerOrderInGlyph.Lbar 2 com.schriftgestaltung.layerOrderInGlyph.Lcaron 2 com.schriftgestaltung.layerOrderInGlyph.Lcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ldot 2 com.schriftgestaltung.layerOrderInGlyph.Ldotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Lje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Llinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Lmiddletilde 2 com.schriftgestaltung.layerOrderInGlyph.Lslash 2 com.schriftgestaltung.layerOrderInGlyph.Lsmall 2 com.schriftgestaltung.layerOrderInGlyph.M 2 com.schriftgestaltung.layerOrderInGlyph.M.half 2 com.schriftgestaltung.layerOrderInGlyph.Mu 2 com.schriftgestaltung.layerOrderInGlyph.N 2 com.schriftgestaltung.layerOrderInGlyph.N.half 2 com.schriftgestaltung.layerOrderInGlyph.Nacute 2 com.schriftgestaltung.layerOrderInGlyph.Nacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Ncaron 2 com.schriftgestaltung.layerOrderInGlyph.Ncommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Nhookleft 2 com.schriftgestaltung.layerOrderInGlyph.Nje-cy 0 com.schriftgestaltung.layerOrderInGlyph.Nlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Ntilde 2 com.schriftgestaltung.layerOrderInGlyph.Nu 2 com.schriftgestaltung.layerOrderInGlyph.O 2 com.schriftgestaltung.layerOrderInGlyph.O-cy 0 com.schriftgestaltung.layerOrderInGlyph.O.half 2 com.schriftgestaltung.layerOrderInGlyph.OE 2 com.schriftgestaltung.layerOrderInGlyph.Oacute 2 com.schriftgestaltung.layerOrderInGlyph.Oacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Obarred-cy 0 com.schriftgestaltung.layerOrderInGlyph.Obreve 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ocircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.Odieresis 2 com.schriftgestaltung.layerOrderInGlyph.Odotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ograve 2 com.schriftgestaltung.layerOrderInGlyph.Ohm 2 com.schriftgestaltung.layerOrderInGlyph.Ohookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ohorn 2 com.schriftgestaltung.layerOrderInGlyph.Ohornacute 2 com.schriftgestaltung.layerOrderInGlyph.Ohorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ohorngrave 2 com.schriftgestaltung.layerOrderInGlyph.Ohornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Ohorntilde 2 com.schriftgestaltung.layerOrderInGlyph.Ohungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.Omacron 2 com.schriftgestaltung.layerOrderInGlyph.Omacronacute 2 com.schriftgestaltung.layerOrderInGlyph.Omacrongrave 2 com.schriftgestaltung.layerOrderInGlyph.Omega 2 com.schriftgestaltung.layerOrderInGlyph.Omegatonos 2 com.schriftgestaltung.layerOrderInGlyph.Omicron 2 com.schriftgestaltung.layerOrderInGlyph.Omicrontonos 2 com.schriftgestaltung.layerOrderInGlyph.Oogonek 2 com.schriftgestaltung.layerOrderInGlyph.Oopen 2 com.schriftgestaltung.layerOrderInGlyph.Oslash 2 com.schriftgestaltung.layerOrderInGlyph.Oslashacute 2 com.schriftgestaltung.layerOrderInGlyph.Otilde 2 com.schriftgestaltung.layerOrderInGlyph.P 2 com.schriftgestaltung.layerOrderInGlyph.P.half 2 com.schriftgestaltung.layerOrderInGlyph.Palochka-cy 0 com.schriftgestaltung.layerOrderInGlyph.Pe-cy 0 com.schriftgestaltung.layerOrderInGlyph.Phi 2 com.schriftgestaltung.layerOrderInGlyph.Pi 2 com.schriftgestaltung.layerOrderInGlyph.Psi 2 com.schriftgestaltung.layerOrderInGlyph.Q 2 com.schriftgestaltung.layerOrderInGlyph.Q.half 2 com.schriftgestaltung.layerOrderInGlyph.R 2 com.schriftgestaltung.layerOrderInGlyph.R.half 2 com.schriftgestaltung.layerOrderInGlyph.Racute 2 com.schriftgestaltung.layerOrderInGlyph.Rcaron 2 com.schriftgestaltung.layerOrderInGlyph.Rcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Rdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Rho 2 com.schriftgestaltung.layerOrderInGlyph.S 2 com.schriftgestaltung.layerOrderInGlyph.S.half 2 com.schriftgestaltung.layerOrderInGlyph.Sacute 2 com.schriftgestaltung.layerOrderInGlyph.Sacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Scaron 2 com.schriftgestaltung.layerOrderInGlyph.Scedilla 2 com.schriftgestaltung.layerOrderInGlyph.Schwa 2 com.schriftgestaltung.layerOrderInGlyph.Schwa-cy 0 com.schriftgestaltung.layerOrderInGlyph.Scircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Scommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Sdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Sha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Shcha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Shha-cy 0 com.schriftgestaltung.layerOrderInGlyph.Sigma 2 com.schriftgestaltung.layerOrderInGlyph.Softsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.T 2 com.schriftgestaltung.layerOrderInGlyph.T.half 2 com.schriftgestaltung.layerOrderInGlyph.Tau 2 com.schriftgestaltung.layerOrderInGlyph.Tbar 2 com.schriftgestaltung.layerOrderInGlyph.Tcaron 2 com.schriftgestaltung.layerOrderInGlyph.Tcedilla 2 com.schriftgestaltung.layerOrderInGlyph.Tcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.Tdiagonalstroke 2 com.schriftgestaltung.layerOrderInGlyph.Te-cy 0 com.schriftgestaltung.layerOrderInGlyph.Theta 2 com.schriftgestaltung.layerOrderInGlyph.Thorn 2 com.schriftgestaltung.layerOrderInGlyph.Tlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.Tse-cy 0 com.schriftgestaltung.layerOrderInGlyph.Tshe-cy 0 com.schriftgestaltung.layerOrderInGlyph.U 2 com.schriftgestaltung.layerOrderInGlyph.U-cy 0 com.schriftgestaltung.layerOrderInGlyph.U.half 2 com.schriftgestaltung.layerOrderInGlyph.Uacute 2 com.schriftgestaltung.layerOrderInGlyph.Ubreve 2 com.schriftgestaltung.layerOrderInGlyph.Ucircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Udieresis 2 com.schriftgestaltung.layerOrderInGlyph.Udotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Ugrave 2 com.schriftgestaltung.layerOrderInGlyph.Uhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Uhorn 2 com.schriftgestaltung.layerOrderInGlyph.Uhornacute 2 com.schriftgestaltung.layerOrderInGlyph.Uhorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Uhorngrave 2 com.schriftgestaltung.layerOrderInGlyph.Uhornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Uhorntilde 2 com.schriftgestaltung.layerOrderInGlyph.Uhungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.Umacron 2 com.schriftgestaltung.layerOrderInGlyph.Umacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.Uogonek 2 com.schriftgestaltung.layerOrderInGlyph.Upsilon 2 com.schriftgestaltung.layerOrderInGlyph.Upsilonafrican 2 com.schriftgestaltung.layerOrderInGlyph.Upsilondieresis 2 com.schriftgestaltung.layerOrderInGlyph.Upsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.Uring 2 com.schriftgestaltung.layerOrderInGlyph.Ushort-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ustraight-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ustraightstroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.Utilde 2 com.schriftgestaltung.layerOrderInGlyph.V 2 com.schriftgestaltung.layerOrderInGlyph.V.half 2 com.schriftgestaltung.layerOrderInGlyph.Ve-cy 0 com.schriftgestaltung.layerOrderInGlyph.Vhook 2 com.schriftgestaltung.layerOrderInGlyph.Vturned 2 com.schriftgestaltung.layerOrderInGlyph.W 2 com.schriftgestaltung.layerOrderInGlyph.Wacute 2 com.schriftgestaltung.layerOrderInGlyph.Wcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Wdieresis 2 com.schriftgestaltung.layerOrderInGlyph.Wgrave 2 com.schriftgestaltung.layerOrderInGlyph.X 2 com.schriftgestaltung.layerOrderInGlyph.X.half 2 com.schriftgestaltung.layerOrderInGlyph.Xi 2 com.schriftgestaltung.layerOrderInGlyph.Y 2 com.schriftgestaltung.layerOrderInGlyph.Y.half 2 com.schriftgestaltung.layerOrderInGlyph.Yacute 2 com.schriftgestaltung.layerOrderInGlyph.Ycircumflex 2 com.schriftgestaltung.layerOrderInGlyph.Ydieresis 2 com.schriftgestaltung.layerOrderInGlyph.Ydotbelow 2 com.schriftgestaltung.layerOrderInGlyph.Yeru-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ygrave 2 com.schriftgestaltung.layerOrderInGlyph.Yhookabove 2 com.schriftgestaltung.layerOrderInGlyph.Yi-cy 0 com.schriftgestaltung.layerOrderInGlyph.Ymacron 2 com.schriftgestaltung.layerOrderInGlyph.Ytilde 2 com.schriftgestaltung.layerOrderInGlyph.Z 2 com.schriftgestaltung.layerOrderInGlyph.Zacute 2 com.schriftgestaltung.layerOrderInGlyph.Zacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.Zcaron 2 com.schriftgestaltung.layerOrderInGlyph.Zdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.Ze-cy 0 com.schriftgestaltung.layerOrderInGlyph.Zeta 2 com.schriftgestaltung.layerOrderInGlyph.Zhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.Zhedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.a 2 com.schriftgestaltung.layerOrderInGlyph.a-cy 0 com.schriftgestaltung.layerOrderInGlyph.aacute 2 com.schriftgestaltung.layerOrderInGlyph.abreve 2 com.schriftgestaltung.layerOrderInGlyph.abreveacute 2 com.schriftgestaltung.layerOrderInGlyph.abrevedotbelow 2 com.schriftgestaltung.layerOrderInGlyph.abrevegrave 2 com.schriftgestaltung.layerOrderInGlyph.abrevehookabove 2 com.schriftgestaltung.layerOrderInGlyph.abrevetilde 2 com.schriftgestaltung.layerOrderInGlyph.acaron 2 com.schriftgestaltung.layerOrderInGlyph.acircumflex 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.acircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.acircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl 2 com.schriftgestaltung.layerOrderInGlyph.acknowledgeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.acute 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.case.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.acutecomb.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.acutetonecomb 2 com.schriftgestaltung.layerOrderInGlyph.adieresis 2 com.schriftgestaltung.layerOrderInGlyph.adotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ae 2 com.schriftgestaltung.layerOrderInGlyph.aeacute 2 com.schriftgestaltung.layerOrderInGlyph.agrave 2 com.schriftgestaltung.layerOrderInGlyph.ahookabove 2 com.schriftgestaltung.layerOrderInGlyph.alpha 2 com.schriftgestaltung.layerOrderInGlyph.alpha-latin 2 com.schriftgestaltung.layerOrderInGlyph.alphatonos 2 com.schriftgestaltung.layerOrderInGlyph.amacron 2 com.schriftgestaltung.layerOrderInGlyph.ampersand 2 com.schriftgestaltung.layerOrderInGlyph.ampersand_ampersand.liga 2 com.schriftgestaltung.layerOrderInGlyph.anoteleia 2 com.schriftgestaltung.layerOrderInGlyph.aogonek 2 com.schriftgestaltung.layerOrderInGlyph.apostrophemod 2 com.schriftgestaltung.layerOrderInGlyph.approxequal 2 com.schriftgestaltung.layerOrderInGlyph.aring 2 com.schriftgestaltung.layerOrderInGlyph.aringacute 2 com.schriftgestaltung.layerOrderInGlyph.asciicircum 2 com.schriftgestaltung.layerOrderInGlyph.asciicircum_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_at.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asciitilde_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_asterisk_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_parenright.liga 2 com.schriftgestaltung.layerOrderInGlyph.asterisk_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.at 2 com.schriftgestaltung.layerOrderInGlyph.atilde 2 com.schriftgestaltung.layerOrderInGlyph.b 2 com.schriftgestaltung.layerOrderInGlyph.b.alt 2 com.schriftgestaltung.layerOrderInGlyph.backslash 2 com.schriftgestaltung.layerOrderInGlyph.backslash_backslash.liga 2 com.schriftgestaltung.layerOrderInGlyph.backslash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.backspaceControl 2 com.schriftgestaltung.layerOrderInGlyph.backspaceControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.baht 2 com.schriftgestaltung.layerOrderInGlyph.bar 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_bar_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_braceright.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_bracketright.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.bar_underscore_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.be-cy 0 com.schriftgestaltung.layerOrderInGlyph.be-cy.loclSRB 0 com.schriftgestaltung.layerOrderInGlyph.bellControl 2 com.schriftgestaltung.layerOrderInGlyph.bellControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.beta 2 com.schriftgestaltung.layerOrderInGlyph.bitcoin 0 com.schriftgestaltung.layerOrderInGlyph.blackCircle 2 com.schriftgestaltung.layerOrderInGlyph.blackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackHexagon 2 com.schriftgestaltung.layerOrderInGlyph.blackHorizontalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.blackInWhiteDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackLargeCircle 2 com.schriftgestaltung.layerOrderInGlyph.blackLargeSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumDownTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumLeftTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumLozenge 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumRightTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackMediumUpTriangleCentred 2 com.schriftgestaltung.layerOrderInGlyph.blackParallelogram 2 com.schriftgestaltung.layerOrderInGlyph.blackPentagon 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallDiamond 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallLozenge 2 com.schriftgestaltung.layerOrderInGlyph.blackSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackSmilingFace 2 com.schriftgestaltung.layerOrderInGlyph.blackSquare 2 com.schriftgestaltung.layerOrderInGlyph.blackVerticalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.blackVerticalRect 2 com.schriftgestaltung.layerOrderInGlyph.blackVerysmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.blank 2 com.schriftgestaltung.layerOrderInGlyph.blank-braille 2 com.schriftgestaltung.layerOrderInGlyph.blankSymbol 2 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.bottomHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxDoubleVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxDownDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxDownHeavyAndUpHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndLeftUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndRightUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxDownLightAndUpHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxDownSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDoubleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyLeftAndLightRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyQuadrupleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyTripleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUp.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndLightDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxHeavyVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftDownHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftHeavyAndRightVerticalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftLightAndRightVerticalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxLeftUpHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightArcUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalCross.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperLeftToLowerRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDiagonalUpperRightToLowerLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDoubleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDown 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightDownAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightLeftAndHeavyRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightQuadrupleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightTripleDashVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUp 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUp.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHeavyDown.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightUpAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVertical.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndHorizontal.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndLeft.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight 0 com.schriftgestaltung.layerOrderInGlyph.boxLightVerticalAndRight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightDownHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftUpLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightHeavyAndLeftVerticalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftUpHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxRightLightAndLeftVerticalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxRightUpHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxUpDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndDownHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightDownLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxUpHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndDownHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightDownHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxUpLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxUpSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndHorizontalSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndLeftSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalDoubleAndRightSingle.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndHorizontalLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndLeftLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalHeavyAndRightLight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndHorizontalHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndLeftHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalLightAndRightHeavy.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndHorizontalDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndLeftDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble 0 com.schriftgestaltung.layerOrderInGlyph.boxVerticalSingleAndRightDouble.stypo 0 com.schriftgestaltung.layerOrderInGlyph.braceleft 2 com.schriftgestaltung.layerOrderInGlyph.braceleft_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.braceright 2 com.schriftgestaltung.layerOrderInGlyph.braceright_numbersign.liga 2 com.schriftgestaltung.layerOrderInGlyph.bracketleft 2 com.schriftgestaltung.layerOrderInGlyph.bracketleft_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.bracketright 2 com.schriftgestaltung.layerOrderInGlyph.bracketright_numbersign.liga 2 com.schriftgestaltung.layerOrderInGlyph.breve 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb-cy.case 2 com.schriftgestaltung.layerOrderInGlyph.brevecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.brokenbar 2 com.schriftgestaltung.layerOrderInGlyph.bullet 2 com.schriftgestaltung.layerOrderInGlyph.bulletoperator 2 com.schriftgestaltung.layerOrderInGlyph.bullseye 2 com.schriftgestaltung.layerOrderInGlyph.c 2 com.schriftgestaltung.layerOrderInGlyph.cacute 2 com.schriftgestaltung.layerOrderInGlyph.cacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.cancelControl 2 com.schriftgestaltung.layerOrderInGlyph.cancelControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.careof 2 com.schriftgestaltung.layerOrderInGlyph.caron 2 com.schriftgestaltung.layerOrderInGlyph.caroncomb 2 com.schriftgestaltung.layerOrderInGlyph.caroncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl 2 com.schriftgestaltung.layerOrderInGlyph.carriageReturnControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.ccaron 2 com.schriftgestaltung.layerOrderInGlyph.ccedilla 2 com.schriftgestaltung.layerOrderInGlyph.ccircumflex 2 com.schriftgestaltung.layerOrderInGlyph.cdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.cedi 2 com.schriftgestaltung.layerOrderInGlyph.cedilla 2 com.schriftgestaltung.layerOrderInGlyph.cedillacomb 2 com.schriftgestaltung.layerOrderInGlyph.cent 2 com.schriftgestaltung.layerOrderInGlyph.che-cy 0 com.schriftgestaltung.layerOrderInGlyph.che-cy.salt 0 com.schriftgestaltung.layerOrderInGlyph.checkmark 2 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.chedescender-cy.salt 0 com.schriftgestaltung.layerOrderInGlyph.chi 2 com.schriftgestaltung.layerOrderInGlyph.circumflex 2 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb 2 com.schriftgestaltung.layerOrderInGlyph.circumflexcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.clubBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.colon 2 com.schriftgestaltung.layerOrderInGlyph.colon.center 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_colon_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.colon_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.colon_slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.colonsign 2 com.schriftgestaltung.layerOrderInGlyph.colontriangularmod 2 com.schriftgestaltung.layerOrderInGlyph.comma 2 com.schriftgestaltung.layerOrderInGlyph.commaabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.commaaboverightcomb 2 com.schriftgestaltung.layerOrderInGlyph.commaaccentcomb 2 com.schriftgestaltung.layerOrderInGlyph.commaturnedabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.commaturnedmod 2 com.schriftgestaltung.layerOrderInGlyph.copyright 2 com.schriftgestaltung.layerOrderInGlyph.crosshatchFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.currency 2 com.schriftgestaltung.layerOrderInGlyph.d 2 com.schriftgestaltung.layerOrderInGlyph.dagger 2 com.schriftgestaltung.layerOrderInGlyph.daggerdbl 2 com.schriftgestaltung.layerOrderInGlyph.dashdownArrow 2 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl 2 com.schriftgestaltung.layerOrderInGlyph.dataLinkEscapeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.dcaron 2 com.schriftgestaltung.layerOrderInGlyph.dcaron.alt 2 com.schriftgestaltung.layerOrderInGlyph.dcroat 2 com.schriftgestaltung.layerOrderInGlyph.de-cy 0 com.schriftgestaltung.layerOrderInGlyph.de-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.degree 2 com.schriftgestaltung.layerOrderInGlyph.deleteControl 2 com.schriftgestaltung.layerOrderInGlyph.deleteFormTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.delta 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlFourControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlOneControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlThreeControl 2 com.schriftgestaltung.layerOrderInGlyph.deviceControlTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.diagonalcrosshatchFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.diamondBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.dieresis 2 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb 2 com.schriftgestaltung.layerOrderInGlyph.dieresiscomb.case 2 com.schriftgestaltung.layerOrderInGlyph.dieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.divide 2 com.schriftgestaltung.layerOrderInGlyph.divisionslash 2 com.schriftgestaltung.layerOrderInGlyph.dje-cy 0 com.schriftgestaltung.layerOrderInGlyph.dollar 2 com.schriftgestaltung.layerOrderInGlyph.dollar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.dong 2 com.schriftgestaltung.layerOrderInGlyph.dotaccent 2 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb 2 com.schriftgestaltung.layerOrderInGlyph.dotaccentcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.dotbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.dots1-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1234678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1235-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1235678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1236-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots123678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1237-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1238-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1245-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1245678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1246-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots124678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1247-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1248-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots125-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1256-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots125678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1257-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1258-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots126-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1267-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots12678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1268-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots127-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1278-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots128-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots134678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots135-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots135678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots136-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots13678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots137-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots138-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots145-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots145678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots146-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots14678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots147-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots148-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots15-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots156-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots15678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots157-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots158-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots16-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots167-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots1678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots168-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots17-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots178-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots18-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots234678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots235-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots235678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots236-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots23678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots237-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots238-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots245-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots245678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots246-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots24678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots247-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots248-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots25-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots256-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots25678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots257-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots258-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots26-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots267-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots2678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots268-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots27-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots278-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots28-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots345-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots345678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots346-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots34678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots347-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots348-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots35-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots356-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots35678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots357-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots358-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots36-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots367-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots3678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots368-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots37-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots378-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots38-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots45-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots456-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots45678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots457-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots458-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots46-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots467-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots4678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots468-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots47-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots478-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots48-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots5-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots56-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots567-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots5678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots568-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots57-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots578-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots58-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots6-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots67-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots678-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots68-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots7-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots78-braille 2 com.schriftgestaltung.layerOrderInGlyph.dots8-braille 2 com.schriftgestaltung.layerOrderInGlyph.dottedCircle 2 com.schriftgestaltung.layerOrderInGlyph.dottedSquare 2 com.schriftgestaltung.layerOrderInGlyph.downArrow 2 com.schriftgestaltung.layerOrderInGlyph.downBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downTipLeftArrow 2 com.schriftgestaltung.layerOrderInGlyph.downWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.downWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.dtail 0 com.schriftgestaltung.layerOrderInGlyph.dze-cy 0 com.schriftgestaltung.layerOrderInGlyph.dzhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.e 2 com.schriftgestaltung.layerOrderInGlyph.e-cy 0 com.schriftgestaltung.layerOrderInGlyph.eacute 2 com.schriftgestaltung.layerOrderInGlyph.ebreve 2 com.schriftgestaltung.layerOrderInGlyph.ecaron 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ecircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.edieresis 2 com.schriftgestaltung.layerOrderInGlyph.edotaccent 2 com.schriftgestaltung.layerOrderInGlyph.edotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ef-cy 0 com.schriftgestaltung.layerOrderInGlyph.egrave 2 com.schriftgestaltung.layerOrderInGlyph.ehookabove 2 com.schriftgestaltung.layerOrderInGlyph.eight 2 com.schriftgestaltung.layerOrderInGlyph.eight.dnom 2 com.schriftgestaltung.layerOrderInGlyph.eight.numr 2 com.schriftgestaltung.layerOrderInGlyph.eightinferior 2 com.schriftgestaltung.layerOrderInGlyph.eightsuperior 2 com.schriftgestaltung.layerOrderInGlyph.el-cy 0 com.schriftgestaltung.layerOrderInGlyph.ellipsis 2 com.schriftgestaltung.layerOrderInGlyph.em-cy 0 com.schriftgestaltung.layerOrderInGlyph.emacron 2 com.schriftgestaltung.layerOrderInGlyph.emdash 2 com.schriftgestaltung.layerOrderInGlyph.en-cy 0 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfMediumControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTextControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionBlockControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl 2 com.schriftgestaltung.layerOrderInGlyph.endOfTransmissionControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.endash 2 com.schriftgestaltung.layerOrderInGlyph.endescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.eng 2 com.schriftgestaltung.layerOrderInGlyph.enquiryControl 2 com.schriftgestaltung.layerOrderInGlyph.enquiryControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.eogonek 2 com.schriftgestaltung.layerOrderInGlyph.eopen 2 com.schriftgestaltung.layerOrderInGlyph.epsilon 2 com.schriftgestaltung.layerOrderInGlyph.epsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.equal 2 com.schriftgestaltung.layerOrderInGlyph.equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.equal_greater_greater.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_less_less.liga 0 com.schriftgestaltung.layerOrderInGlyph.equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.equivalence 2 com.schriftgestaltung.layerOrderInGlyph.er-cy 0 com.schriftgestaltung.layerOrderInGlyph.ereversed-cy 0 com.schriftgestaltung.layerOrderInGlyph.es-cy 0 com.schriftgestaltung.layerOrderInGlyph.escapeControl 2 com.schriftgestaltung.layerOrderInGlyph.escapeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.esh 2 com.schriftgestaltung.layerOrderInGlyph.estimated 2 com.schriftgestaltung.layerOrderInGlyph.eta 2 com.schriftgestaltung.layerOrderInGlyph.etatonos 2 com.schriftgestaltung.layerOrderInGlyph.eth 2 com.schriftgestaltung.layerOrderInGlyph.etilde 2 com.schriftgestaltung.layerOrderInGlyph.eturned 2 com.schriftgestaltung.layerOrderInGlyph.euro 2 com.schriftgestaltung.layerOrderInGlyph.eurocurrency 2 com.schriftgestaltung.layerOrderInGlyph.exclam 2 com.schriftgestaltung.layerOrderInGlyph.exclam_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_exclam_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclam_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.exclamdouble 2 com.schriftgestaltung.layerOrderInGlyph.exclamdown 2 com.schriftgestaltung.layerOrderInGlyph.ezh 2 com.schriftgestaltung.layerOrderInGlyph.f 2 com.schriftgestaltung.layerOrderInGlyph.f.locl 2 com.schriftgestaltung.layerOrderInGlyph.f.salt 2 com.schriftgestaltung.layerOrderInGlyph.fi 2 com.schriftgestaltung.layerOrderInGlyph.fileSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.filledRect 2 com.schriftgestaltung.layerOrderInGlyph.firsttonechinese 2 com.schriftgestaltung.layerOrderInGlyph.fisheye 2 com.schriftgestaltung.layerOrderInGlyph.five 2 com.schriftgestaltung.layerOrderInGlyph.five.dnom 2 com.schriftgestaltung.layerOrderInGlyph.five.numr 2 com.schriftgestaltung.layerOrderInGlyph.fiveeighths 2 com.schriftgestaltung.layerOrderInGlyph.fiveinferior 2 com.schriftgestaltung.layerOrderInGlyph.fivesuperior 2 com.schriftgestaltung.layerOrderInGlyph.fl 2 com.schriftgestaltung.layerOrderInGlyph.florin 2 com.schriftgestaltung.layerOrderInGlyph.formFeedControl 2 com.schriftgestaltung.layerOrderInGlyph.formFeedControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.four 2 com.schriftgestaltung.layerOrderInGlyph.four.dnom 2 com.schriftgestaltung.layerOrderInGlyph.four.half 2 com.schriftgestaltung.layerOrderInGlyph.four.numr 2 com.schriftgestaltung.layerOrderInGlyph.fourinferior 2 com.schriftgestaltung.layerOrderInGlyph.foursuperior 2 com.schriftgestaltung.layerOrderInGlyph.fraction 2 com.schriftgestaltung.layerOrderInGlyph.franc 2 com.schriftgestaltung.layerOrderInGlyph.fullBlock 0 com.schriftgestaltung.layerOrderInGlyph.fullBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.g 2 com.schriftgestaltung.layerOrderInGlyph.gamma 2 com.schriftgestaltung.layerOrderInGlyph.gamma-latin 2 com.schriftgestaltung.layerOrderInGlyph.gbreve 2 com.schriftgestaltung.layerOrderInGlyph.gcaron 2 com.schriftgestaltung.layerOrderInGlyph.gcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.gcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.gdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.ge-cy 0 com.schriftgestaltung.layerOrderInGlyph.ge-cy.loclSRB 0 com.schriftgestaltung.layerOrderInGlyph.germandbls 2 com.schriftgestaltung.layerOrderInGlyph.ghestroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.gheupturn-cy 0 com.schriftgestaltung.layerOrderInGlyph.gje-cy 0 com.schriftgestaltung.layerOrderInGlyph.glottalstop 2 com.schriftgestaltung.layerOrderInGlyph.glottalstopmod 2 com.schriftgestaltung.layerOrderInGlyph.glottalstopreversed 2 com.schriftgestaltung.layerOrderInGlyph.grave 2 com.schriftgestaltung.layerOrderInGlyph.gravecomb 2 com.schriftgestaltung.layerOrderInGlyph.gravecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.gravetonecomb 2 com.schriftgestaltung.layerOrderInGlyph.greater 2 com.schriftgestaltung.layerOrderInGlyph.greater.alt 2 com.schriftgestaltung.layerOrderInGlyph.greater.center 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_greater_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.greater_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.greaterequal 2 com.schriftgestaltung.layerOrderInGlyph.groupSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.gstroke 2 com.schriftgestaltung.layerOrderInGlyph.guarani 2 com.schriftgestaltung.layerOrderInGlyph.guillemetleft 2 com.schriftgestaltung.layerOrderInGlyph.guillemetright 2 com.schriftgestaltung.layerOrderInGlyph.guilsinglleft 2 com.schriftgestaltung.layerOrderInGlyph.guilsinglright 2 com.schriftgestaltung.layerOrderInGlyph.h 1 com.schriftgestaltung.layerOrderInGlyph.h.alt 1 com.schriftgestaltung.layerOrderInGlyph.ha-cy 0 com.schriftgestaltung.layerOrderInGlyph.hadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.hardsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.hbar 2 com.schriftgestaltung.layerOrderInGlyph.hcaron 2 com.schriftgestaltung.layerOrderInGlyph.hcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.hdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.heartBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyleftpointinganglequotationmarkornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.heavyrightpointinganglequotationmarkornament 2 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb 2 com.schriftgestaltung.layerOrderInGlyph.hookabovecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.horizontalBlackHexagon 2 com.schriftgestaltung.layerOrderInGlyph.horizontalFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl 2 com.schriftgestaltung.layerOrderInGlyph.horizontalTabulationControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.horizontalbar 2 com.schriftgestaltung.layerOrderInGlyph.horizontallineextension 2 com.schriftgestaltung.layerOrderInGlyph.horncomb 2 com.schriftgestaltung.layerOrderInGlyph.horncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.house 2 com.schriftgestaltung.layerOrderInGlyph.hryvnia 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb 2 com.schriftgestaltung.layerOrderInGlyph.hungarumlautcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.hyphen 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.hyphentwo 2 com.schriftgestaltung.layerOrderInGlyph.i 2 com.schriftgestaltung.layerOrderInGlyph.i-cy 0 com.schriftgestaltung.layerOrderInGlyph.ia-cy 0 com.schriftgestaltung.layerOrderInGlyph.iacute 2 com.schriftgestaltung.layerOrderInGlyph.ibreve 2 com.schriftgestaltung.layerOrderInGlyph.icircumflex 2 com.schriftgestaltung.layerOrderInGlyph.idieresis 2 com.schriftgestaltung.layerOrderInGlyph.idotbelow 2 com.schriftgestaltung.layerOrderInGlyph.idotless 2 com.schriftgestaltung.layerOrderInGlyph.ie-cy 0 com.schriftgestaltung.layerOrderInGlyph.iegrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.igrave 2 com.schriftgestaltung.layerOrderInGlyph.ihookabove 2 com.schriftgestaltung.layerOrderInGlyph.ii-cy 0 com.schriftgestaltung.layerOrderInGlyph.iigrave-cy 0 com.schriftgestaltung.layerOrderInGlyph.iishort-cy 0 com.schriftgestaltung.layerOrderInGlyph.ij 2 com.schriftgestaltung.layerOrderInGlyph.ij_acute 0 com.schriftgestaltung.layerOrderInGlyph.imacron 2 com.schriftgestaltung.layerOrderInGlyph.imacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.increment 2 com.schriftgestaltung.layerOrderInGlyph.infinity 2 com.schriftgestaltung.layerOrderInGlyph.integral 2 com.schriftgestaltung.layerOrderInGlyph.integralbt 2 com.schriftgestaltung.layerOrderInGlyph.integraltp 2 com.schriftgestaltung.layerOrderInGlyph.intersection 2 com.schriftgestaltung.layerOrderInGlyph.inverseBullet 2 com.schriftgestaltung.layerOrderInGlyph.inverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.io-cy 0 com.schriftgestaltung.layerOrderInGlyph.iogonek 2 com.schriftgestaltung.layerOrderInGlyph.iota 2 com.schriftgestaltung.layerOrderInGlyph.iota-latin 2 com.schriftgestaltung.layerOrderInGlyph.iotadieresis 2 com.schriftgestaltung.layerOrderInGlyph.iotadieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.iotatonos 2 com.schriftgestaltung.layerOrderInGlyph.itilde 2 com.schriftgestaltung.layerOrderInGlyph.iu-cy 0 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.iu-cy.loclBGR.alt 0 com.schriftgestaltung.layerOrderInGlyph.j 2 com.schriftgestaltung.layerOrderInGlyph.jacute 2 com.schriftgestaltung.layerOrderInGlyph.jcaron 2 com.schriftgestaltung.layerOrderInGlyph.jcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.jdotless 2 com.schriftgestaltung.layerOrderInGlyph.je-cy 0 com.schriftgestaltung.layerOrderInGlyph.k 2 com.schriftgestaltung.layerOrderInGlyph.k.alt 2 com.schriftgestaltung.layerOrderInGlyph.ka-cy 0 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.ka-cy.loclBGR.alt 0 com.schriftgestaltung.layerOrderInGlyph.kadescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.kaiSymbol 2 com.schriftgestaltung.layerOrderInGlyph.kappa 2 com.schriftgestaltung.layerOrderInGlyph.kcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.kdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.kgreenlandic 2 com.schriftgestaltung.layerOrderInGlyph.kip 2 com.schriftgestaltung.layerOrderInGlyph.kje-cy 0 com.schriftgestaltung.layerOrderInGlyph.klinebelow 2 com.schriftgestaltung.layerOrderInGlyph.l 2 com.schriftgestaltung.layerOrderInGlyph.l.salt 2 com.schriftgestaltung.layerOrderInGlyph.lacute 2 com.schriftgestaltung.layerOrderInGlyph.lacute.salt 2 com.schriftgestaltung.layerOrderInGlyph.lambda 2 com.schriftgestaltung.layerOrderInGlyph.lambdastroke 2 com.schriftgestaltung.layerOrderInGlyph.largeCircle 2 com.schriftgestaltung.layerOrderInGlyph.lari 2 com.schriftgestaltung.layerOrderInGlyph.lbar 2 com.schriftgestaltung.layerOrderInGlyph.lbar.salt 2 com.schriftgestaltung.layerOrderInGlyph.lbelt 2 com.schriftgestaltung.layerOrderInGlyph.lbelt.salt 2 com.schriftgestaltung.layerOrderInGlyph.lcaron 2 com.schriftgestaltung.layerOrderInGlyph.lcaron.salt 2 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.lcommaaccent.salt 2 com.schriftgestaltung.layerOrderInGlyph.ldot 2 com.schriftgestaltung.layerOrderInGlyph.ldot.salt 2 com.schriftgestaltung.layerOrderInGlyph.ldotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ldotbelow.salt 2 com.schriftgestaltung.layerOrderInGlyph.leftArrow 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackPointer 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftFiveEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.leftHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftOneQuarterBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftRightArrow 2 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftSevenEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock 0 com.schriftgestaltung.layerOrderInGlyph.leftThreeQuartersBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.leftWhitePointer 2 com.schriftgestaltung.layerOrderInGlyph.leftWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.leftWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.less 2 com.schriftgestaltung.layerOrderInGlyph.less.alt 2 com.schriftgestaltung.layerOrderInGlyph.less.center 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_asciitilde.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asciitilde_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_asterisk_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_bar_bar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_bar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_dollar.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_dollar_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_exclam_hyphen_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal.liga 0 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_hyphen_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.less_less_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_plus_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.less_slash_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.lessequal 2 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl 2 com.schriftgestaltung.layerOrderInGlyph.lineFeedControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.lineseparator 2 com.schriftgestaltung.layerOrderInGlyph.lira 2 com.schriftgestaltung.layerOrderInGlyph.liraTurkish 2 com.schriftgestaltung.layerOrderInGlyph.literSign 2 com.schriftgestaltung.layerOrderInGlyph.lje-cy 0 com.schriftgestaltung.layerOrderInGlyph.llinebelow 2 com.schriftgestaltung.layerOrderInGlyph.llinebelow.salt 2 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde 2 com.schriftgestaltung.layerOrderInGlyph.lmiddletilde.salt 2 com.schriftgestaltung.layerOrderInGlyph.logicalnot 2 com.schriftgestaltung.layerOrderInGlyph.logicalnotReversed 2 com.schriftgestaltung.layerOrderInGlyph.longs 2 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerFiveEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerHalfInverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerLeftHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerLeftTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerOneQuarterBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightArc 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerRightDiagonalHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.lowerRightTriangle 2 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerSevenEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeEighthsBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock 0 com.schriftgestaltung.layerOrderInGlyph.lowerThreeQuartersBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.lowernumeral-greek 2 com.schriftgestaltung.layerOrderInGlyph.lowlinecomb 2 com.schriftgestaltung.layerOrderInGlyph.lozenge 2 com.schriftgestaltung.layerOrderInGlyph.lslash 2 com.schriftgestaltung.layerOrderInGlyph.lslash.salt 2 com.schriftgestaltung.layerOrderInGlyph.m 2 com.schriftgestaltung.layerOrderInGlyph.macron 2 com.schriftgestaltung.layerOrderInGlyph.macronbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.macroncomb 2 com.schriftgestaltung.layerOrderInGlyph.macroncomb.case 2 com.schriftgestaltung.layerOrderInGlyph.manat 2 com.schriftgestaltung.layerOrderInGlyph.mars 2 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.mediumleftpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.mediumrightpointinganglebracketornament 2 com.schriftgestaltung.layerOrderInGlyph.micro 2 com.schriftgestaltung.layerOrderInGlyph.minus 2 com.schriftgestaltung.layerOrderInGlyph.minute 2 com.schriftgestaltung.layerOrderInGlyph.mu 2 com.schriftgestaltung.layerOrderInGlyph.multiply 2 com.schriftgestaltung.layerOrderInGlyph.n 2 com.schriftgestaltung.layerOrderInGlyph.nacute 2 com.schriftgestaltung.layerOrderInGlyph.nacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.naira 2 com.schriftgestaltung.layerOrderInGlyph.napostrophe 2 com.schriftgestaltung.layerOrderInGlyph.nbspace 2 com.schriftgestaltung.layerOrderInGlyph.ncaron 2 com.schriftgestaltung.layerOrderInGlyph.ncommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl 2 com.schriftgestaltung.layerOrderInGlyph.negativeAcknowledgeControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.newlineControl 2 com.schriftgestaltung.layerOrderInGlyph.nhookleft 2 com.schriftgestaltung.layerOrderInGlyph.nine 2 com.schriftgestaltung.layerOrderInGlyph.nine.dnom 2 com.schriftgestaltung.layerOrderInGlyph.nine.numr 2 com.schriftgestaltung.layerOrderInGlyph.nineinferior 2 com.schriftgestaltung.layerOrderInGlyph.ninesuperior 2 com.schriftgestaltung.layerOrderInGlyph.nje-cy 0 com.schriftgestaltung.layerOrderInGlyph.nlinebelow 2 com.schriftgestaltung.layerOrderInGlyph.nmod 2 com.schriftgestaltung.layerOrderInGlyph.nonbreakinghyphen 2 com.schriftgestaltung.layerOrderInGlyph.note-musical 2 com.schriftgestaltung.layerOrderInGlyph.notedbl-musical 2 com.schriftgestaltung.layerOrderInGlyph.notequal 2 com.schriftgestaltung.layerOrderInGlyph.notidentical 2 com.schriftgestaltung.layerOrderInGlyph.ntilde 2 com.schriftgestaltung.layerOrderInGlyph.nu 2 com.schriftgestaltung.layerOrderInGlyph.nullControl 2 com.schriftgestaltung.layerOrderInGlyph.numbersign 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_braceleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_bracketleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_exclam.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_parenleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore.liga 2 com.schriftgestaltung.layerOrderInGlyph.numbersign_underscore_parenleft.liga 2 com.schriftgestaltung.layerOrderInGlyph.numeral-greek 2 com.schriftgestaltung.layerOrderInGlyph.numero 2 com.schriftgestaltung.layerOrderInGlyph.o 2 com.schriftgestaltung.layerOrderInGlyph.o-cy 0 com.schriftgestaltung.layerOrderInGlyph.oacute 2 com.schriftgestaltung.layerOrderInGlyph.oacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.obarred-cy 0 com.schriftgestaltung.layerOrderInGlyph.obreve 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexacute 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexgrave 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflexhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ocircumflextilde 2 com.schriftgestaltung.layerOrderInGlyph.odieresis 2 com.schriftgestaltung.layerOrderInGlyph.odotbelow 2 com.schriftgestaltung.layerOrderInGlyph.oe 2 com.schriftgestaltung.layerOrderInGlyph.ogonek 2 com.schriftgestaltung.layerOrderInGlyph.ogonekcomb 2 com.schriftgestaltung.layerOrderInGlyph.ograve 2 com.schriftgestaltung.layerOrderInGlyph.ohookabove 2 com.schriftgestaltung.layerOrderInGlyph.ohorn 2 com.schriftgestaltung.layerOrderInGlyph.ohornacute 2 com.schriftgestaltung.layerOrderInGlyph.ohorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ohorngrave 2 com.schriftgestaltung.layerOrderInGlyph.ohornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.ohorntilde 2 com.schriftgestaltung.layerOrderInGlyph.ohungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.omacron 2 com.schriftgestaltung.layerOrderInGlyph.omacronacute 2 com.schriftgestaltung.layerOrderInGlyph.omacrongrave 2 com.schriftgestaltung.layerOrderInGlyph.omega 2 com.schriftgestaltung.layerOrderInGlyph.omegatonos 2 com.schriftgestaltung.layerOrderInGlyph.omicron 2 com.schriftgestaltung.layerOrderInGlyph.omicrontonos 2 com.schriftgestaltung.layerOrderInGlyph.one 2 com.schriftgestaltung.layerOrderInGlyph.one.dnom 2 com.schriftgestaltung.layerOrderInGlyph.one.half 2 com.schriftgestaltung.layerOrderInGlyph.one.numr 2 com.schriftgestaltung.layerOrderInGlyph.onedotenleader 2 com.schriftgestaltung.layerOrderInGlyph.oneeighth 2 com.schriftgestaltung.layerOrderInGlyph.onehalf 2 com.schriftgestaltung.layerOrderInGlyph.oneinferior 2 com.schriftgestaltung.layerOrderInGlyph.onequarter 2 com.schriftgestaltung.layerOrderInGlyph.onesuperior 2 com.schriftgestaltung.layerOrderInGlyph.oogonek 2 com.schriftgestaltung.layerOrderInGlyph.oopen 2 com.schriftgestaltung.layerOrderInGlyph.ordfeminine 2 com.schriftgestaltung.layerOrderInGlyph.ordmasculine 2 com.schriftgestaltung.layerOrderInGlyph.orthogonal 2 com.schriftgestaltung.layerOrderInGlyph.oslash 2 com.schriftgestaltung.layerOrderInGlyph.oslashacute 2 com.schriftgestaltung.layerOrderInGlyph.otilde 2 com.schriftgestaltung.layerOrderInGlyph.overline 2 com.schriftgestaltung.layerOrderInGlyph.p 2 com.schriftgestaltung.layerOrderInGlyph.palochka-cy 0 com.schriftgestaltung.layerOrderInGlyph.paragraph 2 com.schriftgestaltung.layerOrderInGlyph.parenleft 2 com.schriftgestaltung.layerOrderInGlyph.parenleft_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.parenright 2 com.schriftgestaltung.layerOrderInGlyph.partialdiff 2 com.schriftgestaltung.layerOrderInGlyph.pe-cy 0 com.schriftgestaltung.layerOrderInGlyph.pe-cy.loclSRB 0 com.schriftgestaltung.layerOrderInGlyph.percent 2 com.schriftgestaltung.layerOrderInGlyph.percent_percent.liga 2 com.schriftgestaltung.layerOrderInGlyph.period 2 com.schriftgestaltung.layerOrderInGlyph.period_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_hyphen.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_less.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_period_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.period_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.periodcentered 2 com.schriftgestaltung.layerOrderInGlyph.perispomenicomb 2 com.schriftgestaltung.layerOrderInGlyph.perthousand 2 com.schriftgestaltung.layerOrderInGlyph.peseta 2 com.schriftgestaltung.layerOrderInGlyph.peso 2 com.schriftgestaltung.layerOrderInGlyph.phi 2 com.schriftgestaltung.layerOrderInGlyph.pi 2 com.schriftgestaltung.layerOrderInGlyph.plus 2 com.schriftgestaltung.layerOrderInGlyph.plus_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.plus_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.plus_plus_plus.liga 2 com.schriftgestaltung.layerOrderInGlyph.plusminus 2 com.schriftgestaltung.layerOrderInGlyph.prescription 2 com.schriftgestaltung.layerOrderInGlyph.product 2 com.schriftgestaltung.layerOrderInGlyph.psi 2 com.schriftgestaltung.layerOrderInGlyph.published 2 com.schriftgestaltung.layerOrderInGlyph.punctuationspace 2 com.schriftgestaltung.layerOrderInGlyph.q 2 com.schriftgestaltung.layerOrderInGlyph.question 2 com.schriftgestaltung.layerOrderInGlyph.question_colon.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_period.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_question.liga 2 com.schriftgestaltung.layerOrderInGlyph.question_question_equal.liga 2 com.schriftgestaltung.layerOrderInGlyph.questiondown 2 com.schriftgestaltung.layerOrderInGlyph.questiongreek 2 com.schriftgestaltung.layerOrderInGlyph.quotedbl 2 com.schriftgestaltung.layerOrderInGlyph.quotedblbase 2 com.schriftgestaltung.layerOrderInGlyph.quotedblleft 2 com.schriftgestaltung.layerOrderInGlyph.quotedblright 2 com.schriftgestaltung.layerOrderInGlyph.quoteleft 2 com.schriftgestaltung.layerOrderInGlyph.quotereversed 2 com.schriftgestaltung.layerOrderInGlyph.quoteright 2 com.schriftgestaltung.layerOrderInGlyph.quotesinglbase 2 com.schriftgestaltung.layerOrderInGlyph.quotesingle 2 com.schriftgestaltung.layerOrderInGlyph.r 2 com.schriftgestaltung.layerOrderInGlyph.r.salt 2 com.schriftgestaltung.layerOrderInGlyph.racute 2 com.schriftgestaltung.layerOrderInGlyph.racute.salt 2 com.schriftgestaltung.layerOrderInGlyph.radical 2 com.schriftgestaltung.layerOrderInGlyph.ratio 0 com.schriftgestaltung.layerOrderInGlyph.rcaron 2 com.schriftgestaltung.layerOrderInGlyph.rcaron.salt 2 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.rcommaaccent.salt 2 com.schriftgestaltung.layerOrderInGlyph.rdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.rdotbelow.salt 2 com.schriftgestaltung.layerOrderInGlyph.recordSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.registered 2 com.schriftgestaltung.layerOrderInGlyph.replacementCharacter 0 com.schriftgestaltung.layerOrderInGlyph.returnsymbol 2 com.schriftgestaltung.layerOrderInGlyph.reversedRotatedFloralHeartBullet 2 com.schriftgestaltung.layerOrderInGlyph.rho 2 com.schriftgestaltung.layerOrderInGlyph.rightArrow 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackPointer 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightBlock 0 com.schriftgestaltung.layerOrderInGlyph.rightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.rightHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.rightOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.rightWhitePointer 2 com.schriftgestaltung.layerOrderInGlyph.rightWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.rightWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.ring 2 com.schriftgestaltung.layerOrderInGlyph.ringbelowcomb 2 com.schriftgestaltung.layerOrderInGlyph.ringcomb 2 com.schriftgestaltung.layerOrderInGlyph.ringcomb.case 2 com.schriftgestaltung.layerOrderInGlyph.rotatedFloralHeartBullet 2 com.schriftgestaltung.layerOrderInGlyph.ruble 2 com.schriftgestaltung.layerOrderInGlyph.rupee 2 com.schriftgestaltung.layerOrderInGlyph.rupeeIndian 2 com.schriftgestaltung.layerOrderInGlyph.s 2 com.schriftgestaltung.layerOrderInGlyph.s.salt 2 com.schriftgestaltung.layerOrderInGlyph.sacute 2 com.schriftgestaltung.layerOrderInGlyph.sacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.sacute.salt 2 com.schriftgestaltung.layerOrderInGlyph.scaron 2 com.schriftgestaltung.layerOrderInGlyph.scaron.salt 2 com.schriftgestaltung.layerOrderInGlyph.scedilla 2 com.schriftgestaltung.layerOrderInGlyph.scedilla.salt 2 com.schriftgestaltung.layerOrderInGlyph.schwa 2 com.schriftgestaltung.layerOrderInGlyph.schwa-cy 0 com.schriftgestaltung.layerOrderInGlyph.scircumflex 2 com.schriftgestaltung.layerOrderInGlyph.scircumflex.salt 2 com.schriftgestaltung.layerOrderInGlyph.scommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.scommaaccent.salt 2 com.schriftgestaltung.layerOrderInGlyph.sdotbelow 2 com.schriftgestaltung.layerOrderInGlyph.sdotbelow.salt 2 com.schriftgestaltung.layerOrderInGlyph.second 2 com.schriftgestaltung.layerOrderInGlyph.section 2 com.schriftgestaltung.layerOrderInGlyph.semicolon 2 com.schriftgestaltung.layerOrderInGlyph.semicolon_semicolon.liga 2 com.schriftgestaltung.layerOrderInGlyph.seven 2 com.schriftgestaltung.layerOrderInGlyph.seven.dnom 2 com.schriftgestaltung.layerOrderInGlyph.seven.numr 2 com.schriftgestaltung.layerOrderInGlyph.seveneighths 2 com.schriftgestaltung.layerOrderInGlyph.seveninferior 2 com.schriftgestaltung.layerOrderInGlyph.sevensuperior 2 com.schriftgestaltung.layerOrderInGlyph.sha-cy 0 com.schriftgestaltung.layerOrderInGlyph.shadedark 0 com.schriftgestaltung.layerOrderInGlyph.shadedark.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shadelight 0 com.schriftgestaltung.layerOrderInGlyph.shadelight.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shademedium 0 com.schriftgestaltung.layerOrderInGlyph.shademedium.stypo 0 com.schriftgestaltung.layerOrderInGlyph.shcha-cy 0 com.schriftgestaltung.layerOrderInGlyph.sheqel 2 com.schriftgestaltung.layerOrderInGlyph.shha-cy 0 com.schriftgestaltung.layerOrderInGlyph.shha-cy.alt 0 com.schriftgestaltung.layerOrderInGlyph.shiftInControl 2 com.schriftgestaltung.layerOrderInGlyph.shiftInControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl 2 com.schriftgestaltung.layerOrderInGlyph.shiftOutControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.sigma 2 com.schriftgestaltung.layerOrderInGlyph.sigmafinal 2 com.schriftgestaltung.layerOrderInGlyph.six 2 com.schriftgestaltung.layerOrderInGlyph.six.dnom 2 com.schriftgestaltung.layerOrderInGlyph.six.numr 2 com.schriftgestaltung.layerOrderInGlyph.sixinferior 2 com.schriftgestaltung.layerOrderInGlyph.sixsuperior 2 com.schriftgestaltung.layerOrderInGlyph.slash 2 com.schriftgestaltung.layerOrderInGlyph.slash_asterisk.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_backslash.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_greater.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_equal_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.slash_slash_slash.liga 2 com.schriftgestaltung.layerOrderInGlyph.softhyphen 2 com.schriftgestaltung.layerOrderInGlyph.softsign-cy 0 com.schriftgestaltung.layerOrderInGlyph.space 2 com.schriftgestaltung.layerOrderInGlyph.spaceControl 2 com.schriftgestaltung.layerOrderInGlyph.spadeBlackSuit 2 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl 2 com.schriftgestaltung.layerOrderInGlyph.startOfHeadingControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl 2 com.schriftgestaltung.layerOrderInGlyph.startOfTextControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.sterling 2 com.schriftgestaltung.layerOrderInGlyph.strictlyequivalentto 2 com.schriftgestaltung.layerOrderInGlyph.substituteControl 2 com.schriftgestaltung.layerOrderInGlyph.substituteControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.substituteFormTwoControl 2 com.schriftgestaltung.layerOrderInGlyph.summation 2 com.schriftgestaltung.layerOrderInGlyph.sunWithRays 2 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl 2 com.schriftgestaltung.layerOrderInGlyph.synchronousIdleControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.t 2 com.schriftgestaltung.layerOrderInGlyph.tau 2 com.schriftgestaltung.layerOrderInGlyph.tbar 2 com.schriftgestaltung.layerOrderInGlyph.tcaron 2 com.schriftgestaltung.layerOrderInGlyph.tcedilla 2 com.schriftgestaltung.layerOrderInGlyph.tcommaaccent 2 com.schriftgestaltung.layerOrderInGlyph.te-cy 0 com.schriftgestaltung.layerOrderInGlyph.te-cy.loclSRB 0 com.schriftgestaltung.layerOrderInGlyph.tenge 2 com.schriftgestaltung.layerOrderInGlyph.tesh 2 com.schriftgestaltung.layerOrderInGlyph.theta 2 com.schriftgestaltung.layerOrderInGlyph.thetamod 2 com.schriftgestaltung.layerOrderInGlyph.thorn 2 com.schriftgestaltung.layerOrderInGlyph.three 2 com.schriftgestaltung.layerOrderInGlyph.three.dnom 2 com.schriftgestaltung.layerOrderInGlyph.three.half 2 com.schriftgestaltung.layerOrderInGlyph.three.numr 2 com.schriftgestaltung.layerOrderInGlyph.threeeighths 2 com.schriftgestaltung.layerOrderInGlyph.threeinferior 2 com.schriftgestaltung.layerOrderInGlyph.threequarters 2 com.schriftgestaltung.layerOrderInGlyph.threesuperior 2 com.schriftgestaltung.layerOrderInGlyph.tilde 2 com.schriftgestaltung.layerOrderInGlyph.tildecomb 2 com.schriftgestaltung.layerOrderInGlyph.tildecomb.case 2 com.schriftgestaltung.layerOrderInGlyph.tonos 2 com.schriftgestaltung.layerOrderInGlyph.tonos.case 2 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.topHalfBlackDiamond 2 com.schriftgestaltung.layerOrderInGlyph.topHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.topRightHalfWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.trademark 2 com.schriftgestaltung.layerOrderInGlyph.tse-cy 0 com.schriftgestaltung.layerOrderInGlyph.tshe-cy 0 com.schriftgestaltung.layerOrderInGlyph.tugrik 2 com.schriftgestaltung.layerOrderInGlyph.two 2 com.schriftgestaltung.layerOrderInGlyph.two.dnom 2 com.schriftgestaltung.layerOrderInGlyph.two.half 2 com.schriftgestaltung.layerOrderInGlyph.two.numr 2 com.schriftgestaltung.layerOrderInGlyph.twoinferior 2 com.schriftgestaltung.layerOrderInGlyph.twosuperior 2 com.schriftgestaltung.layerOrderInGlyph.u 2 com.schriftgestaltung.layerOrderInGlyph.u-cy 0 com.schriftgestaltung.layerOrderInGlyph.uacute 2 com.schriftgestaltung.layerOrderInGlyph.ubreve 2 com.schriftgestaltung.layerOrderInGlyph.ucircumflex 2 com.schriftgestaltung.layerOrderInGlyph.udieresis 2 com.schriftgestaltung.layerOrderInGlyph.udotbelow 2 com.schriftgestaltung.layerOrderInGlyph.ugrave 2 com.schriftgestaltung.layerOrderInGlyph.uhookabove 2 com.schriftgestaltung.layerOrderInGlyph.uhorn 2 com.schriftgestaltung.layerOrderInGlyph.uhornacute 2 com.schriftgestaltung.layerOrderInGlyph.uhorndotbelow 2 com.schriftgestaltung.layerOrderInGlyph.uhorngrave 2 com.schriftgestaltung.layerOrderInGlyph.uhornhookabove 2 com.schriftgestaltung.layerOrderInGlyph.uhorntilde 2 com.schriftgestaltung.layerOrderInGlyph.uhungarumlaut 2 com.schriftgestaltung.layerOrderInGlyph.umacron 2 com.schriftgestaltung.layerOrderInGlyph.umacron-cy 0 com.schriftgestaltung.layerOrderInGlyph.underscore 2 com.schriftgestaltung.layerOrderInGlyph.underscore_end.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_middle.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_start.seq 2 com.schriftgestaltung.layerOrderInGlyph.underscore_underscore.liga 2 com.schriftgestaltung.layerOrderInGlyph.underscoredbl 2 com.schriftgestaltung.layerOrderInGlyph.unitSeparatorControl 2 com.schriftgestaltung.layerOrderInGlyph.uogonek 2 com.schriftgestaltung.layerOrderInGlyph.upArrow 2 com.schriftgestaltung.layerOrderInGlyph.upBlackSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upDashArrow 2 com.schriftgestaltung.layerOrderInGlyph.upDownArrow 2 com.schriftgestaltung.layerOrderInGlyph.upDownbaseArrow 2 com.schriftgestaltung.layerOrderInGlyph.upLeftHalfBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upRightHalfBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteSmallTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upWhiteTriangleWithDot 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfArc 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlackWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperHalfInverseWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftAndUpperRightAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftArc 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperLeftDiagonalHalfBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperLeftWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperOneEighthBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftAndLowerRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightAndLowerLeftBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightArc 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlackTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock 0 com.schriftgestaltung.layerOrderInGlyph.upperRightBlock.stypo 0 com.schriftgestaltung.layerOrderInGlyph.upperRightQuadrantWhiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.upperRightTriangle 2 com.schriftgestaltung.layerOrderInGlyph.upperlefttolowerrightFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.upperrighttolowerleftFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.upsilon 2 com.schriftgestaltung.layerOrderInGlyph.upsilon-latin 2 com.schriftgestaltung.layerOrderInGlyph.upsilondieresis 2 com.schriftgestaltung.layerOrderInGlyph.upsilondieresistonos 2 com.schriftgestaltung.layerOrderInGlyph.upsilontonos 2 com.schriftgestaltung.layerOrderInGlyph.uring 2 com.schriftgestaltung.layerOrderInGlyph.ushort-cy 0 com.schriftgestaltung.layerOrderInGlyph.ustraight-cy 0 com.schriftgestaltung.layerOrderInGlyph.ustraightstroke-cy 0 com.schriftgestaltung.layerOrderInGlyph.utilde 2 com.schriftgestaltung.layerOrderInGlyph.v 2 com.schriftgestaltung.layerOrderInGlyph.ve-cy 0 com.schriftgestaltung.layerOrderInGlyph.ve-cy.salt 0 com.schriftgestaltung.layerOrderInGlyph.vectorOrCrossProduct 2 com.schriftgestaltung.layerOrderInGlyph.venus 2 com.schriftgestaltung.layerOrderInGlyph.verticalBisectingLineWhiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.verticalFillCircle 2 com.schriftgestaltung.layerOrderInGlyph.verticalFillSquare 2 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl 2 com.schriftgestaltung.layerOrderInGlyph.verticalTabulationControl.ss20 2 com.schriftgestaltung.layerOrderInGlyph.vhook 2 com.schriftgestaltung.layerOrderInGlyph.vturned 2 com.schriftgestaltung.layerOrderInGlyph.w 2 com.schriftgestaltung.layerOrderInGlyph.w_w_w.liga 2 com.schriftgestaltung.layerOrderInGlyph.wacute 2 com.schriftgestaltung.layerOrderInGlyph.wcircumflex 2 com.schriftgestaltung.layerOrderInGlyph.wdieresis 2 com.schriftgestaltung.layerOrderInGlyph.wgrave 2 com.schriftgestaltung.layerOrderInGlyph.whiteBullet 2 com.schriftgestaltung.layerOrderInGlyph.whiteCircle 2 com.schriftgestaltung.layerOrderInGlyph.whiteDiamond 2 com.schriftgestaltung.layerOrderInGlyph.whiteHexagon 2 com.schriftgestaltung.layerOrderInGlyph.whiteHorizontalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.whiteInBlackSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLargeSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLowerLeftQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteLowerRightQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteMediumDiamond 2 com.schriftgestaltung.layerOrderInGlyph.whiteMediumLozenge 2 com.schriftgestaltung.layerOrderInGlyph.whiteParallelogram 2 com.schriftgestaltung.layerOrderInGlyph.whitePentagon 2 com.schriftgestaltung.layerOrderInGlyph.whiteRect 2 com.schriftgestaltung.layerOrderInGlyph.whiteRoundedCornersSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmallLozenge 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteSmilingFace 2 com.schriftgestaltung.layerOrderInGlyph.whiteSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteUpperLeftQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteUpperRightQuadrantSquare 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalEllipse 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerticalRect 2 com.schriftgestaltung.layerOrderInGlyph.whiteVerysmallSquare 2 com.schriftgestaltung.layerOrderInGlyph.wmod 2 com.schriftgestaltung.layerOrderInGlyph.won 2 com.schriftgestaltung.layerOrderInGlyph.x 2 com.schriftgestaltung.layerOrderInGlyph.x.multiply 2 com.schriftgestaltung.layerOrderInGlyph.xi 2 com.schriftgestaltung.layerOrderInGlyph.y 2 com.schriftgestaltung.layerOrderInGlyph.yacute 2 com.schriftgestaltung.layerOrderInGlyph.ycircumflex 2 com.schriftgestaltung.layerOrderInGlyph.ydieresis 2 com.schriftgestaltung.layerOrderInGlyph.ydotbelow 2 com.schriftgestaltung.layerOrderInGlyph.yen 2 com.schriftgestaltung.layerOrderInGlyph.yeru-cy 0 com.schriftgestaltung.layerOrderInGlyph.ygrave 2 com.schriftgestaltung.layerOrderInGlyph.yhookabove 2 com.schriftgestaltung.layerOrderInGlyph.yi-cy 0 com.schriftgestaltung.layerOrderInGlyph.ymacron 2 com.schriftgestaltung.layerOrderInGlyph.ymod 2 com.schriftgestaltung.layerOrderInGlyph.ytilde 2 com.schriftgestaltung.layerOrderInGlyph.z 2 com.schriftgestaltung.layerOrderInGlyph.zacute 2 com.schriftgestaltung.layerOrderInGlyph.zacute.loclPLK 2 com.schriftgestaltung.layerOrderInGlyph.zcaron 2 com.schriftgestaltung.layerOrderInGlyph.zdotaccent 2 com.schriftgestaltung.layerOrderInGlyph.ze-cy 0 com.schriftgestaltung.layerOrderInGlyph.ze-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.ze-cy.salt 0 com.schriftgestaltung.layerOrderInGlyph.zero 2 com.schriftgestaltung.layerOrderInGlyph.zero.dnom 2 com.schriftgestaltung.layerOrderInGlyph.zero.numr 2 com.schriftgestaltung.layerOrderInGlyph.zero.zero 2 com.schriftgestaltung.layerOrderInGlyph.zeroinferior 2 com.schriftgestaltung.layerOrderInGlyph.zerosuperior 2 com.schriftgestaltung.layerOrderInGlyph.zeta 2 com.schriftgestaltung.layerOrderInGlyph.zhe-cy 0 com.schriftgestaltung.layerOrderInGlyph.zhe-cy.loclBGR 0 com.schriftgestaltung.layerOrderInGlyph.zhedescender-cy 0 com.schriftgestaltung.layerOrderInGlyph.zmod 2 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbar.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbar.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbelt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lbelt.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcaron.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lcommaaccent.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldot.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ldotbelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackP_ointer.glif ================================================ triaglf ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ uni25C2 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lackT_riangle.glif ================================================ uni25C0 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ uni25D6 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ uni2B16 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ uni25E7 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D0 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftR_ightA_rrow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ uni25C5 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ uni25C3 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ uni25C1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.alt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.center.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_bar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [600] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_dollar_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_equal_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_less_less.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_plus.liga.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name less alignment -1 index 1 name plus ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_plus_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_slash.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/less_slash_greater.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lessequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name L.half alignment -1 index 1 name F.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lineseparator.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lira.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/liraT_urkish.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/literS_ign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/llinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/llinebelow.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lmiddletilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lmiddletilde.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/logicalnot.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/logicalnotR_eversed.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/longs.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfA_rc.glif ================================================ uni25E1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ uni25D2 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ uni25DB ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ uni2B12 public.markColor 0.5,0.09,0.79,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftA_rc.glif ================================================ uni25DF ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ uni25E3 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ uni2B14 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ uni25F5 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ uni25FA ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightA_rc.glif ================================================ uni25DE ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ uni25E2 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ uni25EA ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ uni25F6 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ uni25FF ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowernumeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lowlinecomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lozenge.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/lslash.salt.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/m.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macronbelowcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macroncomb.case.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/macroncomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/manat.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mars.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ uni25FE ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumB_lackS_quare.glif ================================================ uni25FC ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ uni25FD ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ uni25FB ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/micro.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/minus.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/minute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/mu.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/multiply.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/n.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/naira.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/napostrophe.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nbspace.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ncaron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ncommaaccent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name K.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/newlineC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name L.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nhookleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nine.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nineinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ninesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nje-cy.glif ================================================ public.markColor 0.98,0.36,0.67,1 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nlinebelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nmod.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nonbreakinghyphen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/note-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notedbl-musical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notequal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/notidentical.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nu.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/nullC_ontrol.glif ================================================ com.schriftgestaltung.Glyphs.ComponentInfo alignment -1 index 0 name N.half alignment -1 index 1 name U.half com.schriftgestaltung.Glyphs.glyph.widthMetricsKey space ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_colon.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_end.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_exclam.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_middle.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_start.seq.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_underscore.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numeral-greek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/numero.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/o-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/o.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/obarred-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/obreve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflex.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexdotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexgrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflexhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ocircumflextilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/odieresis.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/odotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oe.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ogonekcomb.glif ================================================ com.schriftgestaltung.Glyphs.originalWidth 1200 ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ograve.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorn.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohornacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorndotbelow.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorngrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohornhookabove.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohorntilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ohungarumlaut.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacronacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omacrongrave.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omega.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omegatonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omicron.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/omicrontonos.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.dnom.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.half.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/one.numr.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onedotenleader.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneeighth.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onehalf.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oneinferior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ com.schriftgestaltung.Glyphs._originalLayerName [500] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onequarter.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/onesuperior.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oogonek.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oopen.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ordfeminine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ordmasculine.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/orthogonal.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oslash.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/oslashacute.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/otilde.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/overline.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/p.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/palochka-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/paragraph.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenleft.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/parenright.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/partialdiff.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/pe-cy.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/percent.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/percent_percent.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_hyphen.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period_equal.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period_less.liga.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_period_period.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/period_question.liga.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/periodcentered.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/perispomenicomb.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/perthousand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/peseta.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/peso.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/phi.glif ================================================ ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/pi.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/plus.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/plus_greater.liga.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/plus_plus.liga.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/plus_plus_plus.liga.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/plusminus.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/prescription.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/product.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/psi.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/published.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/punctuationspace.glif ================================================ [File too large to display: 304 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/q.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question_colon.liga.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question_equal.liga.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question_period.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question_question.liga.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/question_question_equal.liga.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/questiondown.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/questiongreek.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotedbl.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotedblbase.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotedblleft.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotedblright.glif ================================================ [File too large to display: 262 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quoteleft.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotereversed.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quoteright.glif ================================================ [File too large to display: 961 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotesinglbase.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/quotesingle.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/r.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/r.salt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/racute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/racute.salt.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/radical.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ratio.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rcaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rcaron.salt.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rcommaaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rcommaaccent.salt.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rdotbelow.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rdotbelow.salt.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/registered.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/replacementC_haracter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/returnsymbol.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rho.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightA_rrow.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightB_lackP_ointer.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightB_lackT_riangle.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightB_lock.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightB_lock.stypo.glif ================================================ [File too large to display: 349 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ [File too large to display: 498 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ring.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ringbelowcomb.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ringcomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ringcomb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ruble.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rupee.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/rupeeI_ndian.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/s.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/s.salt.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sacute.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sacute.salt.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scaron.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scaron.salt.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scedilla.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scedilla.salt.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/schwa-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/schwa.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scircumflex.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scircumflex.salt.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scommaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/scommaaccent.salt.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sdotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sdotbelow.salt.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/second.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/section.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit0.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit1.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit4.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit6.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit7.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit8.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/segmentedD_igit9.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/semicolon.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seven.dnom.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seven.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seven.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seveneighths.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/seveninferior.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sevensuperior.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sha-cy.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shadedark.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shadedark.stypo.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shadelight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shadelight.stypo.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shademedium.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shademedium.stypo.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shcha-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sheqel.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shha-cy.alt.glif ================================================ [File too large to display: 275 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shha-cy.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ [File too large to display: 823 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sigma.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sigmafinal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/six.dnom.glif ================================================ [File too large to display: 200 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/six.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/six.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sixinferior.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sixsuperior.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_asterisk.liga.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_backslash.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_equal_end.seq.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_equal_middle.seq.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_equal_start.seq.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_greater.liga.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_slash.liga.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/slash_slash_slash.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/softhyphen.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/softsign-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/space.glif ================================================ [File too large to display: 155 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/spaceC_ontrol.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/spadeB_lackS_uit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sterling.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/strictlyequivalentto.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/substituteC_ontrol.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/summation.glif ================================================ [File too large to display: 859 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/sunW_ithR_ays.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/t.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tau.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tbar.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tcaron.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tcedilla.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tcommaaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/te-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/te-cy.loclS_R_B_.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tenge.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tesh.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/theta.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/thetamod.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/thorn.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/three.dnom.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/three.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/three.half.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/three.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threeeighths.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threeinferior.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threequarters.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/threesuperior.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tilde.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tildecomb.case.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tildecomb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tonos.case.glif ================================================ [File too large to display: 166 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tonos.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/trademark.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tse-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tshe-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/tugrik.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/two.dnom.glif ================================================ [File too large to display: 200 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/two.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/two.half.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/two.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/twoinferior.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/twosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/u-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/u.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uacute.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ubreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ucircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/udieresis.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/udotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ugrave.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhookabove.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhorn.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhornacute.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhorndotbelow.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhorngrave.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhornhookabove.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhorntilde.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uhungarumlaut.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/umacron-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/umacron.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscore.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscore_end.seq.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscore_middle.seq.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscore_start.seq.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscore_underscore.liga.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/underscoredbl.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upA_rrow.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upB_lackT_riangle.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upD_ashA_rrow.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upD_ownA_rrow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upW_hiteT_riangle.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperH_alfA_rc.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 511 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperH_alfB_lock.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftA_rc.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftB_lock.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftT_riangle.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightA_rc.glif ================================================ [File too large to display: 524 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperR_ightT_riangle.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ [File too large to display: 853 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ [File too large to display: 853 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upsilon-latin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upsilon.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upsilondieresis.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upsilondieresistonos.glif ================================================ [File too large to display: 252 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/upsilontonos.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/uring.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ushort-cy.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ustraight-cy.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ustraightstroke-cy.glif ================================================ [File too large to display: 402 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/utilde.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/v.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ve-cy.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ve-cy.salt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ [File too large to display: 203 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/venus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalF_illC_ircle.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalF_illS_quare.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/vhook.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/vturned.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/w.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/w_w_w.liga.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/wacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/wcircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/wdieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/wgrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteB_ullet.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteC_ircle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteD_iamond.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteH_exagon.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteL_argeS_quare.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ [File too large to display: 770 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ [File too large to display: 770 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteP_arallelogram.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteP_entagon.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteR_ect.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteS_mallS_quare.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteS_milingF_ace.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteS_quare.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/wmod.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/won.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/x.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/x.multiply.glif ================================================ [File too large to display: 169 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/xi.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/y.glif ================================================ [File too large to display: 892 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/yacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ycircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ydieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ydotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/yen.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/yeru-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ygrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/yhookabove.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/yi-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ymacron.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ymod.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ytilde.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/z.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zcaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zdotaccent.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ze-cy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/ze-cy.salt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zero.dnom.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zero.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zero.zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zeroinferior.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zerosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zeta.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zhe-cy.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zhedescender-cy.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/zmod.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/bar_braceright.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/braceright.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 603 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/lib.plist ================================================ [File too large to display: 291.6 KB] ================================================ FILE: sources/CascadiaCode-ExtraLightItalic.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/features.fea ================================================ [File too large to display: 16.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/fontinfo.plist ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_.half.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_E_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_E_acute.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_breveacute.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_brevedotbelow.glif ================================================ [File too large to display: 279 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_brevegrave.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_brevehookabove.glif ================================================ [File too large to display: 300 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_brevetilde.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflexacute.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflexdotbelow.glif ================================================ [File too large to display: 289 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflexgrave.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflexhookabove.glif ================================================ [File too large to display: 311 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_circumflextilde.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_grave.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_lpha-latin.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_lpha.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_lphatonos.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_macron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_ring.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_ringacute.glif ================================================ [File too large to display: 256 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_small.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_stroke.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/A_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/B_.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/B_.half.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/B_e-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/B_eta.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_R_.glif ================================================ [File too large to display: 152 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_cedilla.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_circumflex.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_dotaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_he-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_hedescender-cy.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_hi.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/C_stroke.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_african.glif ================================================ [File too large to display: 186 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_croat.glif ================================================ [File too large to display: 184 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_e-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_elta.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_je-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_ze-cy.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/D_zhe-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_.half.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_breve.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_caron.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflex.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflexacute.glif ================================================ [File too large to display: 316 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflexdotbelow.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflexgrave.glif ================================================ [File too large to display: 316 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflexhookabove.glif ================================================ [File too large to display: 324 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_circumflextilde.glif ================================================ [File too large to display: 316 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_dieresis.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_dotaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_f-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_grave.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_hookabove.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_l-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_m-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_macron.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_n-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_ndescender-cy.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_ng.glif ================================================ [File too large to display: 822 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_open.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_psilon.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_psilontonos.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_r-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_reversed-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_reversed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_s-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_sh.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_ta.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_tatonos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_th.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/E_zh.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/F_.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/F_.half.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/F_hook.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_.half.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_amma.glif ================================================ [File too large to display: 185 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_ammaafrican.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_breve.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_circumflex.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_dotaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_e-cy.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_ermandbls.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_hestroke-cy.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_heupturn-cy.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_je-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_small.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/G_stroke.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_.half.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_a-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_adescender-cy.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_ardsign-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_bar.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/H_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_.half.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_J_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_J__acute.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_a-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_dotaccent.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_egrave-cy.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_grave.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_i-cy.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_igrave-cy.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_ishort-cy.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_macron-cy.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_macron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_o-cy.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_ota.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_otaafrican.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_otadieresis.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_otatonos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_small.glif ================================================ [File too large to display: 836 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/I_u-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/J_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/J_acute.glif ================================================ [File too large to display: 211 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/J_circumflex.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/J_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_.half.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_a-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_adescender-cy.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_aiS_ymbol.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_appa.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_je-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/K_linebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_.half.glif ================================================ [File too large to display: 525 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_I_G_.glif ================================================ [File too large to display: 129 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_acute.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_ambda.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_bar.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_caron.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_dot.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_je-cy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_linebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_middletilde.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_slash.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/L_small.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/M_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/M_.half.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/M_u.glif ================================================ [File too large to display: 178 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_.half.glif ================================================ [File too large to display: 894 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_hookleft.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_je-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_linebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/N_u.glif ================================================ [File too large to display: 178 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_E_.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_barred-cy.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflexacute.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflexdotbelow.glif ================================================ [File too large to display: 289 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflexgrave.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflexhookabove.glif ================================================ [File too large to display: 311 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_circumflextilde.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_grave.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_hm.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_horn.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_hornacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_horndotbelow.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_horngrave.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_hornhookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_horntilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_hungarumlaut.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_macron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_macronacute.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_macrongrave.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_mega.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_megatonos.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_micron.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_microntonos.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_open.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_slash.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_slashacute.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/O_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_alochka-cy.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_e-cy.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_hi.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_i.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/P_si.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Q_.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Q_.half.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_.half.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/R_ho.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_.half.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_cedilla.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_chwa-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_chwa.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_ha-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_hcha-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_hha-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_igma.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/S_oftsign-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_.half.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_au.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_bar.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_cedilla.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_diagonalstroke.glif ================================================ [File too large to display: 480 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_heta.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_horn.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_linebelow.glif ================================================ [File too large to display: 323 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_se-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/T_she-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_.half.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_grave.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_horn.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_hornacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_horndotbelow.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_horngrave.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_hornhookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_horntilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_hungarumlaut.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_macron-cy.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_macron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_psilon.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_psilonafrican.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_psilondieresis.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_psilontonos.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_ring.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_short-cy.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_straight-cy.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_straightstroke-cy.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/U_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/V_.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/V_.half.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/V_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/V_hook.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/V_turned.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/W_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/W_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/W_circumflex.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/W_dieresis.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/W_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/X_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/X_.half.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/X_i.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_.glif ================================================ [File too large to display: 980 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_.half.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_acute.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_eru-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_grave.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_i-cy.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_macron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Y_tilde.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_dotaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_e-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_eta.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_he-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/Z_hedescender-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/_notdef.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/a-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/a.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/aacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abreve.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abreveacute.glif ================================================ [File too large to display: 296 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abrevedotbelow.glif ================================================ [File too large to display: 287 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abrevegrave.glif ================================================ [File too large to display: 296 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abrevehookabove.glif ================================================ [File too large to display: 304 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/abrevetilde.glif ================================================ [File too large to display: 296 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acaron.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflex.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflexacute.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflexdotbelow.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflexgrave.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflexhookabove.glif ================================================ [File too large to display: 314 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acircumflextilde.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acute.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acutecomb.case.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acutecomb.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/acutetonecomb.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/adieresis.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/adotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ae.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/aeacute.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/agrave.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ahookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/alpha-latin.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/alpha.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/alphatonos.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/amacron.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ampersand.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ampersand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ampersand_ampersand.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/anoteleia.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/aogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/apostrophemod.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/approxequal.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/aring.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/aringacute.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciicircum.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciicircum_equal.liga.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_at.liga.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_equal.liga.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_greater.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ [File too large to display: 313 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk_greater.liga.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk_parenright.liga.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/asterisk_slash.liga.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/at.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/atilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/b.alt.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/b.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/backslash.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/backslash_backslash.liga.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/backslash_slash.liga.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/backspaceC_ontrol.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/baht.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar.liga.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_bar.liga.glif ================================================ [File too large to display: 268 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ [File too large to display: 291 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ [File too large to display: 634 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_greater.liga.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ [File too large to display: 432 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_braceright.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_bracketright.liga.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_equal_end.seq.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_equal_middle.seq.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_equal_start.seq.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_greater.liga.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ [File too large to display: 217 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ [File too large to display: 402 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/be-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bellC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/beta.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bitcoin.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackC_ircle.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackD_iamond.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackH_exagon.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ [File too large to display: 486 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackL_argeC_ircle.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackL_argeS_quare.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackP_arallelogram.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackP_entagon.glif ================================================ [File too large to display: 432 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackS_mallD_iamond.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackS_mallS_quare.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackS_milingF_ace.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackS_quare.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackV_erticalR_ect.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blank-braille.glif ================================================ [File too large to display: 163 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blank.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blankS_ymbol.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-1.glif ================================================ [File too large to display: 424 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-2.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-3.glif ================================================ [File too large to display: 423 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-4.glif ================================================ [File too large to display: 429 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ [File too large to display: 409 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-LC.glif ================================================ [File too large to display: 504 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ [File too large to display: 484 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-ML.glif ================================================ [File too large to display: 505 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-MR.glif ================================================ [File too large to display: 511 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-UC.glif ================================================ [File too large to display: 506 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ [File too large to display: 486 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ [File too large to display: 338 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ [File too large to display: 324 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ [File too large to display: 322 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ [File too large to display: 323 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ [File too large to display: 338 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ [File too large to display: 323 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ [File too large to display: 324 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ [File too large to display: 322 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12345.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123456.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234567.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234568.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234578.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ [File too large to display: 544 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123458.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12346.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123467.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234678.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12347.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123478.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12348.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1235.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12356.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123567.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1235678.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123568.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12357.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123578.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12358.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1236.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12367.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123678.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12368.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1237.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12378.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1238.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1245.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12456.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124567.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1245678.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124568.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12457.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124578.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12458.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1246.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12467.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124678.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12468.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1247.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1248.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-125.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1256.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12567.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-125678.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12568.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1257.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12578.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1258.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-126.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1267.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12678.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1268.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-127.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1278.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-128.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1345.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134567.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1345678.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ [File too large to display: 456 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134568.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13457.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134578.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13458.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1346.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13467.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134678.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13468.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1347.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1348.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-135.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1356.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ [File too large to display: 449 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13567.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13568.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13578.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1358.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-136.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1367.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13678.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-137.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1378.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-138.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-145.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1456.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14567.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-145678.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14568.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1457.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14578.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1458.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-146.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1467.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14678.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1468.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-147.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1478.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-148.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-15.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-156.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1567.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-15678.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1568.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-157.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1578.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-158.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-16.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-167.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1678.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-168.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-17.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-178.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-18.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2345.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234567.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2345678.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ [File too large to display: 456 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234568.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23457.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234578.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23458.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2346.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23467.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234678.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23468.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2347.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2348.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-235.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2356.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23567.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-235678.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23568.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2357.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23578.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2358.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-236.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2367.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23678.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2368.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-237.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2378.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-238.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-245.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2456.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ [File too large to display: 449 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24567.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24568.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24578.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2458.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-246.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2467.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-247.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2478.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-248.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-25.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-256.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2567.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-25678.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2568.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-257.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2578.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-258.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-26.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-267.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2678.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-268.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-27.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-278.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-28.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-345.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3456.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34567.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34568.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3457.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34578.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3458.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-346.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3467.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34678.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3468.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-347.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3478.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-348.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-356.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3567.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-35678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3568.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-357.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3578.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-358.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-36.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-367.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3678.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-368.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-37.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-378.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-38.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-45.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-456.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4567.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-45678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4568.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-457.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4578.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-458.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-467.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4678.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-468.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-47.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-478.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-48.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-5.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-56.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-567.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-568.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-578.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-58.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-6.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-67.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-678.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-7.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-8.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-1.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-123.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-15.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-159.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-2.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-234.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-3.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-4.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-48.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-48C.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-5.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-59D.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-6.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-7.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-8.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-9.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-9D.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-A.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-B.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-CG.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-D.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-E.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-F.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-G.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ [File too large to display: 578 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ [File too large to display: 578 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-123.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1234.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12345.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ [File too large to display: 453 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12346.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ [File too large to display: 453 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1235.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12356.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1236.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-124.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1245.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12456.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1246.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-125.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1256.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-126.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-13.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-134.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1345.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-13456.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ [File too large to display: 455 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1346.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1356.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-136.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-14.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-145.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1456.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-146.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-15.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-156.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-16.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-23.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-234.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2345.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-23456.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ [File too large to display: 455 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2346.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-235.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2356.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-236.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-24.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-245.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-25.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-256.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-26.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-3.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-34.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-345.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-3456.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-346.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-35.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-356.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-36.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-4.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-45.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-456.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-46.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-5.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-56.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-6.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-1.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ [File too large to display: 317 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-123.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-124.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-134.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-14.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-2.glif ================================================ [File too large to display: 334 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ [File too large to display: 314 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-23.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-234.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-3.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-4.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ [File too large to display: 317 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ [File too large to display: 755 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 946 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 541 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 447 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 466 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 541 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 447 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 466 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 625 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_own.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 443 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyL_eft.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyR_ight.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_p.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ [File too large to display: 459 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 441 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 535 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ [File too large to display: 898 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_own.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 443 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightL_eft.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightR_ight.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_p.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ [File too large to display: 459 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 441 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_ertical.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 535 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 621 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 622 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 445 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 464 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 445 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 464 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/braceleft.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/braceleft_bar.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/braceright.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/braceright_numbersign.liga.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bracketleft.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bracketleft_bar.liga.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bracketright.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/breve.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/brevecomb-cy.case.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/brevecomb-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/brevecomb.case.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/brevecomb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/brokenbar.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bullet.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bulletoperator.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 255 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/c.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cancelC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/careof.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/caron.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/caroncomb.case.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/caroncomb.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ [File too large to display: 869 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ccaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ccedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ccircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cdotaccent.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cedi.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cedilla.glif ================================================ [File too large to display: 193 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cedillacomb.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/cent.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/che-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/che-cy.salt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardF_ill.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/checkmark.glif ================================================ [File too large to display: 532 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/chedescender-cy.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/chedescender-cy.salt.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/chi.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/circumflex.glif ================================================ [File too large to display: 199 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/circumflexcomb.case.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/circumflexcomb.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/clubB_lackS_uit.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon.center.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_colon.liga.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_colon_colon.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_colon_equal.liga.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_equal.liga.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_equal_middle.seq.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colon_slash_slash.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colonsign.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/colontriangularmod.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/comma.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/commaabovecomb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/commaaboverightcomb.glif ================================================ [File too large to display: 312 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/commaaccentcomb.glif ================================================ [File too large to display: 423 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/commaturnedabovecomb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/commaturnedmod.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/contents.plist ================================================ [File too large to display: 237.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/copyright.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/currency.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/d.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dagger.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/daggerdbl.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dashdownA_rrow.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ [File too large to display: 555 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dcaron.alt.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dcaron.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dcroat.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/de-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ [File too large to display: 165 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/degree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deleteC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/delta.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ [File too large to display: 934 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ [File too large to display: 937 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/diamondB_lackS_uit.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dieresis.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dieresiscomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dieresiscomb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dieresistonos.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/divide.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/divisionslash.glif ================================================ [File too large to display: 207 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dje-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dollar.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dollar_greater.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dong.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dotaccent.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dotaccentcomb.case.glif ================================================ [File too large to display: 846 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dotaccentcomb.glif ================================================ [File too large to display: 865 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dotbelowcomb.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1-braille.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1234-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12345-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123456-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1234567-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12345678-braille.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1234568-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123457-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1234578-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123458-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12346-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123467-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1234678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123468-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12347-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123478-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12348-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1235-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12356-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123567-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1235678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123568-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12357-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12358-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1236-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12367-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots123678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12368-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1237-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12378-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1238-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots124-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1245-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots124567-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1245678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots124568-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots124578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1246-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots124678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1247-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1248-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots125-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1256-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots125678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1257-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1258-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots126-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1267-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots12678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1268-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots127-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1278-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots128-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots134-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1345-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots134567-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1345678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots134568-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots134578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1346-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots134678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1347-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1348-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots135-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1356-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots135678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1357-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1358-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots136-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1367-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots13678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1368-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots137-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1378-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots138-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots14-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots145-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots14567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots145678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots14568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots14578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1458-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots146-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots14678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots147-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots148-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots15-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots156-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1567-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots15678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1568-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots157-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots158-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots16-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots167-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots1678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots168-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots17-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots178-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots18-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2-braille.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots234-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2345-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots234567-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2345678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots234568-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots234578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2346-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots234678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2347-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2348-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots235-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2356-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots235678-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2357-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2358-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots236-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2367-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots23678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2368-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots237-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2378-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots238-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots24-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots245-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots24567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots245678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots24568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots24578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2458-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots246-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots24678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots247-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots248-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots25-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots256-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2567-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots25678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots257-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots258-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots26-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots267-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots2678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots268-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots27-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots278-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots28-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3-braille.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots34-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots345-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots34567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots345678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots34568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots34578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3458-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots346-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots34678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots347-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots348-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots35-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots356-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3567-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots35678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots357-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots358-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots36-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots367-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots3678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots368-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots37-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots378-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots38-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots4-braille.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots45-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots456-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots4567-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots45678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots4568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots457-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots4578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots458-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots46-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots467-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots4678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots468-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots47-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots478-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots48-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots5-braille.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots56-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots567-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots5678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots568-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots57-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots578-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots58-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots6-braille.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots67-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots678-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots68-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots7-braille.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots78-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dots8-braille.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dottedC_ircle.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dottedS_quare.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downA_rrow.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downB_lackT_riangle.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ [File too large to display: 435 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/downW_hiteT_riangle.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dtail.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dze-cy.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/dzhe-cy.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/e-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/e.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ebreve.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecaron.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflex.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflexacute.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflexdotbelow.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflexgrave.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflexhookabove.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ecircumflextilde.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/edieresis.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/edotaccent.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/edotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ef-cy.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/egrave.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ehookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eight.dnom.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eight.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eight.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eightinferior.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eightsuperior.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/el-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 280 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/em-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/emacron.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/emdash.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/en-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ [File too large to display: 928 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endash.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/endescender-cy.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eng.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/enquiryC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eopen.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/epsilon.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/epsilontonos.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_end.seq.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_equal.liga.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_equal_equal.liga.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_greater_greater.liga.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_less_less.liga.glif ================================================ [File too large to display: 277 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_middle.seq.glif ================================================ [File too large to display: 547 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equal_start.seq.glif ================================================ [File too large to display: 548 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/equivalence.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/er-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ereversed-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/es-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/escapeC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ [File too large to display: 520 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/esh.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/estimated.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eta.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/etatonos.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eth.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/etilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eturned.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/euro.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/eurocurrency.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_colon.liga.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_equal.liga.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_exclam.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ [File too large to display: 288 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclam_period.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclamdouble.glif ================================================ [File too large to display: 253 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/exclamdown.glif ================================================ [File too large to display: 422 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ezh.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/f.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/f.locl.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/f.salt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fi.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/filledR_ect.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/firsttonechinese.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fisheye.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/five.dnom.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/five.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/five.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fiveeighths.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fiveinferior.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fivesuperior.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fl.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/florin.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/formF_eedC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/four.dnom.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/four.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/four.half.glif ================================================ [File too large to display: 932 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/four.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fourinferior.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/foursuperior.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fraction.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/franc.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fullB_lock.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/fullB_lock.stypo.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/g.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gamma-latin.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gamma.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gbreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gcaron.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gcircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gcommaaccent.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gdotaccent.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ge-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ge-cy.loclS_R_B_.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/germandbls.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ghestroke-cy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gheupturn-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gje-cy.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/glottalstop.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/glottalstopmod.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/glottalstopreversed.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/grave.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gravecomb.case.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gravecomb.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gravetonecomb.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater.alt.glif ================================================ [File too large to display: 511 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater.center.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater.glif ================================================ [File too large to display: 532 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_equal.liga.glif ================================================ [File too large to display: 727 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_equal_end.seq.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_equal_middle.seq.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_equal_start.seq.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater.liga.glif ================================================ [File too large to display: 908 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_equal.liga.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_greater.liga.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/greaterequal.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/gstroke.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/guarani.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/guillemetleft.glif ================================================ [File too large to display: 268 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/guillemetright.glif ================================================ [File too large to display: 312 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/guilsinglleft.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/guilsinglright.glif ================================================ [File too large to display: 537 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/h.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/h.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ha-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hadescender-cy.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hardsign-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hbar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hcaron.glif ================================================ [File too large to display: 249 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hcircumflex.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hdotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heartB_lackS_uit.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hookabovecomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hookabovecomb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalF_illS_quare.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontalbar.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horizontallineextension.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horncomb.case.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/horncomb.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/house.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hryvnia.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hungarumlaut.glif ================================================ [File too large to display: 203 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hungarumlautcomb.case.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hungarumlautcomb.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen.glif ================================================ [File too large to display: 186 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_end.seq.glif ================================================ [File too large to display: 341 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_middle.seq.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphen_start.seq.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/hyphentwo.glif ================================================ [File too large to display: 190 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/i-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/i.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ia-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iacute.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ibreve.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/icircumflex.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/idieresis.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/idotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/idotless.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ie-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iegrave-cy.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/igrave.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ihookabove.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ii-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iigrave-cy.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iishort-cy.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ij.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ij_acute.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/imacron-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/imacron.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/increment.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/integral.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/integralbt.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/integraltp.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/intersection.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/inverseB_ullet.glif ================================================ [File too large to display: 898 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/io-cy.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iota-latin.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iota.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iotadieresis.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iotadieresistonos.glif ================================================ [File too large to display: 246 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iotatonos.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/itilde.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iu-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iu-cy.loclB_G_R_.alt.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/j.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/jacute.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/jcaron.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/jcircumflex.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/jdotless.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/je-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/k.alt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/k.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ka-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ka-cy.loclB_G_R_.alt.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kadescender-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kaiS_ymbol.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kappa.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kdotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kgreenlandic.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kip.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/kje-cy.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/klinebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/l.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/l.salt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lacute.glif ================================================ [File too large to display: 249 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lacute.salt.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lambda.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lambdastroke.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeC_ircle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ [File too large to display: 518 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ [File too large to display: 496 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE20.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE21.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE22.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE23.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE24.glif ================================================ [File too large to display: 561 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE25.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE26.glif ================================================ [File too large to display: 512 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ [File too large to display: 490 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE27.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE28.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE29.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ [File too large to display: 911 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE30.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE31.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE32.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE33.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ [File too large to display: 628 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE34.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE35.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ [File too large to display: 550 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE36.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE37.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE38.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE39.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ [File too large to display: 519 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE40.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE41.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE42.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE43.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE44.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE45.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE46.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE47.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE48.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE49.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE50.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lari.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/layerinfo.plist ================================================ [File too large to display: 192.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lbar.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lbar.salt.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lbelt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lbelt.salt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lcaron.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lcaron.salt.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lcommaaccent.salt.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ldot.glif ================================================ [File too large to display: 246 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ldot.salt.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ldotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ldotbelow.salt.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftA_rrow.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftB_lackP_ointer.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftB_lackT_riangle.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftB_lock.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftB_lock.stypo.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ [File too large to display: 433 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 481 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ [File too large to display: 350 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftR_ightA_rrow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 645 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less.alt.glif ================================================ [File too large to display: 508 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less.center.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_asciitilde.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_asterisk.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_bar.liga.glif ================================================ [File too large to display: 547 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_bar_bar.liga.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ [File too large to display: 285 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_bar_greater.liga.glif ================================================ [File too large to display: 280 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_dollar.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_dollar_greater.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_equal.liga.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_equal_end.seq.glif ================================================ [File too large to display: 950 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_equal_middle.seq.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_equal_start.seq.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_greater.liga.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_hyphen_end.seq.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_hyphen_start.seq.glif ================================================ [File too large to display: 398 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less.liga.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_equal.liga.glif ================================================ [File too large to display: 277 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_equal_end.seq.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_equal_start.seq.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ [File too large to display: 444 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ [File too large to display: 652 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_less_less.liga.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_plus.liga.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_plus_greater.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_slash.liga.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/less_slash_greater.liga.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lessequal.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lineseparator.glif ================================================ [File too large to display: 163 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lira.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/liraT_urkish.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/literS_ign.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lje-cy.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/llinebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/llinebelow.salt.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lmiddletilde.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lmiddletilde.salt.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/logicalnot.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/logicalnotR_eversed.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/longs.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfA_rc.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfB_lock.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftA_rc.glif ================================================ [File too large to display: 512 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftB_lock.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightA_rc.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ [File too large to display: 405 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowernumeral-greek.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lowlinecomb.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lozenge.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lslash.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/lslash.salt.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/m.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/macron.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/macronbelowcomb.glif ================================================ [File too large to display: 555 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/macroncomb.case.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/macroncomb.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/manat.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mars.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumB_lackS_quare.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ [File too large to display: 601 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ [File too large to display: 561 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/micro.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/minus.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/minute.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/mu.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/multiply.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/n.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nacute.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ [File too large to display: 208 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/naira.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/napostrophe.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nbspace.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ncaron.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ncommaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/newlineC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nhookleft.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nine.dnom.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nine.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nine.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nineinferior.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ninesuperior.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nje-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nlinebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nmod.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nonbreakinghyphen.glif ================================================ [File too large to display: 201 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/note-musical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/notedbl-musical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/notequal.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/notidentical.glif ================================================ [File too large to display: 398 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ntilde.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nu.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/nullC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_colon.liga.glif ================================================ [File too large to display: 255 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_end.seq.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_equal.liga.glif ================================================ [File too large to display: 608 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_exclam.liga.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_middle.seq.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_question.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_start.seq.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_underscore.liga.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numeral-greek.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/numero.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/o-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/o.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oacute.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ [File too large to display: 208 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/obarred-cy.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/obreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflexacute.glif ================================================ [File too large to display: 293 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflexdotbelow.glif ================================================ [File too large to display: 284 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflexgrave.glif ================================================ [File too large to display: 293 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflexhookabove.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ocircumflextilde.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/odieresis.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/odotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oe.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ogonek.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ogonekcomb.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ograve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohookabove.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohorn.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohornacute.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohorndotbelow.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohorngrave.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohornhookabove.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohorntilde.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ohungarumlaut.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omacron.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omacronacute.glif ================================================ [File too large to display: 284 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omacrongrave.glif ================================================ [File too large to display: 284 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omega.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omegatonos.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omicron.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/omicrontonos.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/one.dnom.glif ================================================ [File too large to display: 200 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/one.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/one.half.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/one.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onedotenleader.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oneeighth.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onehalf.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oneinferior.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onequarter.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/onesuperior.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oopen.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ordfeminine.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ordmasculine.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/orthogonal.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oslash.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/oslashacute.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/otilde.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/overline.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/p.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/palochka-cy.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/paragraph.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/parenleft.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/parenright.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/partialdiff.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/pe-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/pe-cy.loclS_R_B_.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/percent.glif ================================================ [File too large to display: 464 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/percent_percent.liga.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_equal.liga.glif ================================================ [File too large to display: 613 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_hyphen.liga.glif ================================================ [File too large to display: 407 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_period.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_period_equal.liga.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_period_less.liga.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_period_period.liga.glif ================================================ [File too large to display: 288 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/period_question.liga.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/periodcentered.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/perispomenicomb.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/perthousand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/peseta.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/peso.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/phi.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/pi.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/plus.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/plus_greater.liga.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/plus_plus.liga.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/plus_plus_plus.liga.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/plusminus.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/prescription.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/product.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/psi.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/published.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/punctuationspace.glif ================================================ [File too large to display: 304 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/q.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question_colon.liga.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question_equal.liga.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question_period.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question_question.liga.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/question_question_equal.liga.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/questiondown.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/questiongreek.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotedbl.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotedblbase.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotedblleft.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotedblright.glif ================================================ [File too large to display: 262 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quoteleft.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotereversed.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quoteright.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotesinglbase.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/quotesingle.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/r.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/r.salt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/racute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/racute.salt.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/radical.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ratio.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rcaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rcaron.salt.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rcommaaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rcommaaccent.salt.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rdotbelow.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rdotbelow.salt.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/registered.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/replacementC_haracter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/returnsymbol.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rho.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightA_rrow.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightB_lackP_ointer.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightB_lackT_riangle.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightB_lock.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightB_lock.stypo.glif ================================================ [File too large to display: 349 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ [File too large to display: 498 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ring.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ringbelowcomb.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ringcomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ringcomb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ruble.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rupee.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/rupeeI_ndian.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/s.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/s.salt.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sacute.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sacute.salt.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scaron.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scaron.salt.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scedilla.glif ================================================ [File too large to display: 220 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scedilla.salt.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/schwa-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/schwa.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scircumflex.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scircumflex.salt.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scommaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/scommaaccent.salt.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sdotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sdotbelow.salt.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/second.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/section.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit0.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit1.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit4.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit6.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit7.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit8.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/segmentedD_igit9.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/semicolon.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seven.dnom.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seven.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seven.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seveneighths.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/seveninferior.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sevensuperior.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sha-cy.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shadedark.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shadedark.stypo.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shadelight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shadelight.stypo.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shademedium.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shademedium.stypo.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shcha-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sheqel.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shha-cy.alt.glif ================================================ [File too large to display: 275 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shha-cy.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ [File too large to display: 823 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sigma.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sigmafinal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/six.dnom.glif ================================================ [File too large to display: 200 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/six.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/six.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sixinferior.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sixsuperior.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_asterisk.liga.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_backslash.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_equal_end.seq.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_equal_middle.seq.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_equal_start.seq.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_greater.liga.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_slash.liga.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/slash_slash_slash.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/softhyphen.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/softsign-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/space.glif ================================================ [File too large to display: 155 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/spaceC_ontrol.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/spadeB_lackS_uit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sterling.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/strictlyequivalentto.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/substituteC_ontrol.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/summation.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/sunW_ithR_ays.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/t.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tau.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tbar.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tcaron.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tcedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/te-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/te-cy.loclS_R_B_.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tenge.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tesh.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/theta.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/thetamod.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/thorn.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/three.dnom.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/three.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/three.half.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/three.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threeeighths.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threeinferior.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threequarters.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/threesuperior.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tilde.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tildecomb.case.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tildecomb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tonos.case.glif ================================================ [File too large to display: 166 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tonos.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/trademark.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tse-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tshe-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/tugrik.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/two.dnom.glif ================================================ [File too large to display: 200 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/two.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/two.half.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/two.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/twoinferior.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/twosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/u-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/u.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uacute.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ubreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ucircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/udieresis.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/udotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ugrave.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhookabove.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhorn.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhornacute.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhorndotbelow.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhorngrave.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhornhookabove.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhorntilde.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uhungarumlaut.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/umacron-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/umacron.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscore.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscore_end.seq.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscore_middle.seq.glif ================================================ [File too large to display: 350 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscore_start.seq.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscore_underscore.liga.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/underscoredbl.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upA_rrow.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upB_lackT_riangle.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upD_ashA_rrow.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upD_ownA_rrow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upW_hiteT_riangle.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperH_alfA_rc.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperH_alfB_lock.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftA_rc.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftB_lock.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightA_rc.glif ================================================ [File too large to display: 522 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperR_ightT_riangle.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upsilon-latin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upsilon.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upsilondieresis.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upsilondieresistonos.glif ================================================ [File too large to display: 252 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/upsilontonos.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/uring.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ushort-cy.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ustraight-cy.glif ================================================ [File too large to display: 946 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ustraightstroke-cy.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/utilde.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/v.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ve-cy.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ve-cy.salt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ [File too large to display: 203 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/venus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalF_illC_ircle.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalF_illS_quare.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/vhook.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/vturned.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/w.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/w_w_w.liga.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/wacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/wcircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/wdieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/wgrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteB_ullet.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteC_ircle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteD_iamond.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteH_exagon.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteL_argeS_quare.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteP_arallelogram.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteP_entagon.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteR_ect.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteS_mallS_quare.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteS_milingF_ace.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteS_quare.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/wmod.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/won.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/x.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/x.multiply.glif ================================================ [File too large to display: 169 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/xi.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/y.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/yacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ycircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ydieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ydotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/yen.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/yeru-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ygrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/yhookabove.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/yi-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ymacron.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ymod.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ytilde.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/z.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zcaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zdotaccent.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ze-cy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/ze-cy.salt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zero.dnom.glif ================================================ [File too large to display: 202 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zero.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zero.zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zeroinferior.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zerosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zeta.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zhe-cy.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zhedescender-cy.glif ================================================ [File too large to display: 609 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs/zmod.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/bar_braceright.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/braceleft.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/braceright.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 727 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/glyphs.public.background/w_w_w.liga.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/CascadiaCode-Italic.ufo/lib.plist ================================================ [File too large to display: 291.6 KB] ================================================ FILE: sources/CascadiaCode-Italic.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/features.fea ================================================ [File too large to display: 145.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/fontinfo.plist ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_.glif ================================================ [File too large to display: 843 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_.half.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_E_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_E_acute.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_breveacute.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_brevedotbelow.glif ================================================ [File too large to display: 266 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_brevegrave.glif ================================================ [File too large to display: 293 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_brevehookabove.glif ================================================ [File too large to display: 287 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_brevetilde.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflexacute.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflexdotbelow.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflexgrave.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflexhookabove.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_circumflextilde.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_lpha-latin.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_lpha.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_lphatonos.glif ================================================ [File too large to display: 1014 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_macron.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_ring.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_ringacute.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_small.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_stroke.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/A_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/B_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/B_.half.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/B_e-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/B_eta.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_R_.glif ================================================ [File too large to display: 152 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_acute.loclP_L_K_.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_caron.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_cedilla.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_circumflex.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_dotaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_he-cy.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_hedescender-cy.glif ================================================ [File too large to display: 444 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_hi.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/C_stroke.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_african.glif ================================================ [File too large to display: 186 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_croat.glif ================================================ [File too large to display: 184 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_e-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_e-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_elta.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_je-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_ze-cy.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/D_zhe-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_.half.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_acute.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_breve.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_caron.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflex.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflexacute.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflexdotbelow.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflexgrave.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflexhookabove.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_circumflextilde.glif ================================================ [File too large to display: 315 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_dieresis.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_dotaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_f-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_f-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_hookabove.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_l-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_l-cy.loclB_G_R_.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_m-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_macron.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_n-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_ndescender-cy.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_ng.glif ================================================ [File too large to display: 826 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_open.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_psilon.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_psilontonos.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_r-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_reversed-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_reversed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_s-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_sh.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_ta.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_tatonos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_th.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/E_zh.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/F_.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/F_.half.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/F_hook.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_.half.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_amma.glif ================================================ [File too large to display: 185 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_ammaafrican.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_breve.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_caron.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_circumflex.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_dotaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_e-cy.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_ermandbls.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_hestroke-cy.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_heupturn-cy.glif ================================================ [File too large to display: 855 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_je-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_small.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/G_stroke.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_.half.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_a-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_adescender-cy.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_ardsign-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_bar.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/H_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_.half.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_J_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_J__acute.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_a-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_dotaccent.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_egrave-cy.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_i-cy.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_igrave-cy.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_ishort-cy.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_macron-cy.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_macron.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_o-cy.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_ota.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_otaafrican.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_otadieresis.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_otatonos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_small.glif ================================================ [File too large to display: 839 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/I_u-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/J_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/J_acute.glif ================================================ [File too large to display: 211 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/J_circumflex.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/J_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_.half.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_a-cy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_adescender-cy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_aiS_ymbol.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_appa.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_je-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/K_linebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_.half.glif ================================================ [File too large to display: 525 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_I_G_.glif ================================================ [File too large to display: 129 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_acute.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_ambda.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_bar.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_caron.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_dot.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_je-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_linebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_middletilde.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_slash.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/L_small.glif ================================================ [File too large to display: 722 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/M_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/M_.half.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/M_u.glif ================================================ [File too large to display: 178 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_.half.glif ================================================ [File too large to display: 894 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_commaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_hookleft.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_je-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_linebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/N_u.glif ================================================ [File too large to display: 178 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_E_.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_barred-cy.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflexacute.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflexdotbelow.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflexgrave.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflexhookabove.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_circumflextilde.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_hm.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_horn.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_hornacute.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_horndotbelow.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_horngrave.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_hornhookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_horntilde.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_hungarumlaut.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_macron.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_macronacute.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_macrongrave.glif ================================================ [File too large to display: 295 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_mega.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_megatonos.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_micron.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_microntonos.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_open.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_slash.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_slashacute.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/O_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_.half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_alochka-cy.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_e-cy.glif ================================================ [File too large to display: 842 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_hi.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_i.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/P_si.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Q_.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Q_.half.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_.half.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_caron.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/R_ho.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_.half.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_acute.loclP_L_K_.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_caron.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_cedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_chwa-cy.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_chwa.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_circumflex.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_dotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_ha-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_hcha-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_hha-cy.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_igma.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/S_oftsign-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_.half.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_au.glif ================================================ [File too large to display: 179 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_bar.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_cedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_commaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_diagonalstroke.glif ================================================ [File too large to display: 480 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_heta.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_horn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_linebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_se-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/T_she-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_-cy.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_.half.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_breve.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_horn.glif ================================================ [File too large to display: 636 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_hornacute.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_horndotbelow.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_horngrave.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_hornhookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_horntilde.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_hungarumlaut.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_macron-cy.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_macron.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_ogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_psilon.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_psilonafrican.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_psilondieresis.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_psilontonos.glif ================================================ [File too large to display: 1020 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_ring.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_short-cy.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_straight-cy.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_straightstroke-cy.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/U_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/V_.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/V_.half.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/V_e-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/V_hook.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/V_turned.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/W_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/W_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/W_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/W_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/W_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/X_.glif ================================================ [File too large to display: 801 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/X_.half.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/X_i.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_.half.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_circumflex.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_dieresis.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_dotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_eru-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_grave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_hookabove.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_i-cy.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_macron.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Y_tilde.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_acute.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_acute.loclP_L_K_.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_caron.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_dotaccent.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_e-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_eta.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_he-cy.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/Z_hedescender-cy.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alef-ar.fina.rlig.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alef-ar.fina.short.rlig.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefF_athatan-ar.fina.rlig.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefH_amzaabove-ar.fina.rlig.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefH_amzabelow-ar.fina.rlig.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefM_adda-ar.fina.rlig.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefT_hreeabove-ar.fina.rlig.glif ================================================ [File too large to display: 805 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefT_woabove-ar.fina.rlig.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ [File too large to display: 807 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ [File too large to display: 1022 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_alefabove.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_bar.glif ================================================ [File too large to display: 488 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_cuberoot_fourthroot-ar.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_damma-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_dot-ar.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_dotV_I_nvertedabove.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_dotV_above.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_dots.horz.below.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_doublebar.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_fatha-ar.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_four-persian.small01.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_fourdotscenter-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_fourthroot-ar.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_hamzasmall-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_hamzawavy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_hehgoalcomma.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_highhamzaA_lef-ar.fina.rlig.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_invertedstroke.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_notdef.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_onedotstah.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_ringA_rabic.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_stroke.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_tahabove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_tahabovesmall.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_threedots-ar.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_twodotshorizontal-ar.glif ================================================ [File too large to display: 951 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_twodotstah.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_twodotsverticalabove-ar.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_vabove.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_vbelow-ar.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_vinvertedbelow-ar.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_yehR_ohingya-ar.fina.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/_yehR_ohingya-ar.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/a-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/a.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/aacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abreve.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abreveacute.glif ================================================ [File too large to display: 296 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abrevedotbelow.glif ================================================ [File too large to display: 275 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abrevegrave.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abrevehookabove.glif ================================================ [File too large to display: 291 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/abrevetilde.glif ================================================ [File too large to display: 297 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflexacute.glif ================================================ [File too large to display: 652 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflexdotbelow.glif ================================================ [File too large to display: 285 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflexgrave.glif ================================================ [File too large to display: 652 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflexhookabove.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acircumflextilde.glif ================================================ [File too large to display: 307 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acknowledgeC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acknowledgeC_ontrol.ss20.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acute.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acutecomb.case.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acutecomb.case.loclP_L_K_.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acutecomb.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acutecomb.loclP_L_K_.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/acutetonecomb.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/adieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/adotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ae-ar.fina.glif ================================================ [File too large to display: 286 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ae-ar.glif ================================================ [File too large to display: 300 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ae.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/aeacute.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/afghani-ar.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/agrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ahookabove.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ain-ar.fina.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ain-ar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ain-ar.init.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ain-ar.medi.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedots-ar.fina.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedots-ar.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedots-ar.init.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedots-ar.medi.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedotsdownabove-ar.fina.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedotsdownabove-ar.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedotsdownabove-ar.init.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_hreedotsdownabove-ar.medi.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotsverticalabove-ar.fina.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotsverticalabove-ar.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotsverticalabove-ar.init.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ainT_wodotsverticalabove-ar.medi.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.rlig.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.short.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.short.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.fina.short.rlig.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-ar.short.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alef-hb.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefF_athatan-ar.fina.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefF_athatan-ar.fina.rlig.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefF_athatan-ar.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzaabove-ar.fina.alt.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzaabove-ar.fina.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzaabove-ar.fina.rlig.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzaabove-ar.glif ================================================ [File too large to display: 425 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzabelow-ar.fina.alt.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzabelow-ar.fina.glif ================================================ [File too large to display: 720 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzabelow-ar.fina.rlig.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefH_amzabelow-ar.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_adda-ar.fina.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_adda-ar.fina.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_adda-ar.fina.rlig.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_adda-ar.glif ================================================ [File too large to display: 414 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.fina.alt.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.fina.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.init.alt.glif ================================================ [File too large to display: 349 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.init.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksura-ar.medi.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefM_aksuraA_lefabove-ar.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_hreeabove-ar.fina.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_hreeabove-ar.fina.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_hreeabove-ar.fina.rlig.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_hreeabove-ar.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_woabove-ar.fina.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_woabove-ar.fina.glif ================================================ [File too large to display: 835 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_woabove-ar.fina.rlig.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefT_woabove-ar.glif ================================================ [File too large to display: 887 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_asla-ar.fina.alt.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_asla-ar.fina.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_asla-ar.fina.rlig.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_asla-ar.glif ================================================ [File too large to display: 414 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzaabove-ar.fina.alt.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzaabove-ar.fina.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzaabove-ar.fina.rlig.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzaabove-ar.glif ================================================ [File too large to display: 433 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzabelow-ar.fina.alt.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzabelow-ar.fina.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzabelow-ar.fina.rlig.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefW_avyhamzabelow-ar.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefabove-ar.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefbelow-ar.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefdagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefpatah-hb.glif ================================================ [File too large to display: 349 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alefqamats-hb.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/allah-ar.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alpha-latin.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alpha.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/alphatonos.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/amacron.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ampersand.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ampersand_ampersand.liga.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/anoteleia.glif ================================================ [File too large to display: 204 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/aogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/apostrophemod.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/approxequal.glif ================================================ [File too large to display: 260 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/aring.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/aringacute.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciicircum.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciicircum_equal.liga.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_asciitilde.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_asciitilde_greater.liga.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_at.liga.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_equal.liga.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_greater.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asciitilde_hyphen.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asteriskA_rt-ar.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk_asterisk.liga.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk_asterisk_asterisk.liga.glif ================================================ [File too large to display: 313 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk_greater.liga.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk_parenright.liga.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/asterisk_slash.liga.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/at.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/atilde.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ayin-hb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/b.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/backslash.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/backslash_backslash.liga.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/backslash_slash.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/backspaceC_ontrol.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/backspaceC_ontrol.ss20.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/baht.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/baht.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar.liga.glif ================================================ [File too large to display: 223 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_bar.liga.glif ================================================ [File too large to display: 256 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_bar_greater.liga.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_equal_end.seq.glif ================================================ [File too large to display: 636 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_equal_middle.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_equal_start.seq.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_greater.liga.glif ================================================ [File too large to display: 702 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_hyphen_end.seq.glif ================================================ [File too large to display: 434 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_hyphen_middle.seq.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bar_hyphen_start.seq.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_braceright.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_bracketright.liga.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_equal_end.seq.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_equal_middle.seq.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_equal_start.seq.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_greater.liga.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_hyphen_end.seq.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_hyphen_middle.seq.glif ================================================ [File too large to display: 217 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_hyphen_start.seq.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bar_underscore_middle.seq.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/be-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/be-cy.loclS_R_B_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.alt.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.fina.alt.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.fina.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.init.alt.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.init.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beeh-ar.medi.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.alt.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.fina.alt.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.fina.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.init.alt.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.init.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beh-ar.medi.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.alt.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.fina.alt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.fina.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.init.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behD_otless-ar.medi.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.alt.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.fina.alt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.fina.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.init.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behM_eemabove-ar.medi.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.alt.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.fina.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.alt.glif ================================================ [File too large to display: 854 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.init.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotshorizontalbelow-ar.medi.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.alt.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.fina.alt.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.fina.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.init.glif ================================================ [File too large to display: 980 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupabove-ar.medi.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.alt.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.fina.alt.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.init.alt.glif ================================================ [File too large to display: 429 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.init.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_hreedotsupbelow-ar.medi.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.alt.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.alt.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.fina.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.glif ================================================ [File too large to display: 1009 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.init.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behT_wodotsbelowD_otabove-ar.medi.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.alt.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.fina.alt.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.fina.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.init.alt.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.init.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_above-ar.medi.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.alt.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.fina.alt.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.init.alt.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.init.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_below-ar.medi.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.alt.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.fina.alt.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.fina.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.init.alt.glif ================================================ [File too large to display: 426 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.init.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behV_invertedbelow-ar.medi.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.alt.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.fina.alt.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.fina.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.init.alt.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.init.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beheh-ar.medi.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.alt.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.fina.alt.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.init.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/behhamzaabove-ar.medi.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bellC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bellC_ontrol.ss20.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bet-hb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/beta.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/betdagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bitcoin.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackC_ircle.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackD_iamond.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackH_exagon.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackH_orizontalE_llipse.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackI_nW_hiteD_iamond.glif ================================================ [File too large to display: 486 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackL_argeC_ircle.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackL_argeS_quare.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumD_iamond.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumD_ownT_riangleC_entred.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumL_eftT_riangleC_entred.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumL_ozenge.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumR_ightT_riangleC_entred.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackM_ediumU_pT_riangleC_entred.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackP_arallelogram.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackP_entagon.glif ================================================ [File too large to display: 432 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackS_mallD_iamond.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackS_mallL_ozenge.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackS_mallS_quare.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackS_milingF_ace.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackS_quare.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackV_erticalE_llipse.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackV_erticalR_ect.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blackV_erysmallS_quare.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blank-braille.glif ================================================ [File too large to display: 163 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blank.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blankS_ymbol.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-1.glif ================================================ [File too large to display: 424 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-1.stypo.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-2.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-2.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-3.glif ================================================ [File too large to display: 423 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-3.stypo.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-4.glif ================================================ [File too large to display: 429 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-4.stypo.glif ================================================ [File too large to display: 409 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-LC.glif ================================================ [File too large to display: 504 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-LC.stypo.glif ================================================ [File too large to display: 484 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-ML.glif ================================================ [File too large to display: 505 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-ML.stypo.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-MR.glif ================================================ [File too large to display: 511 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-MR.stypo.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-UC.glif ================================================ [File too large to display: 506 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockC_ircle-UC.stypo.glif ================================================ [File too large to display: 486 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3C.glif ================================================ [File too large to display: 338 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3C.stypo.glif ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3D.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3D.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3E.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3E.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3F.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB3F.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB40.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB40.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB41.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB41.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB42.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB42.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB43.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB43.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB44.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB44.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB45.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB45.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB46.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB46.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB47.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB47.stypo.glif ================================================ [File too large to display: 324 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB48.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB48.stypo.glif ================================================ [File too large to display: 322 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB49.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB49.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4A.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4A.stypo.glif ================================================ [File too large to display: 323 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4B.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4B.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4C.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4C.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4D.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4D.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4E.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4E.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4F.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB4F.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB50.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB50.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB51.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB51.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB52.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB52.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB53.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB53.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB54.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB54.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB55.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB55.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB56.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB56.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB57.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB57.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB58.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB58.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB59.glif ================================================ [File too large to display: 338 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB59.stypo.glif ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5A.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5A.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5B.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5B.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5C.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5C.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5D.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5D.stypo.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5E.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5E.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5F.glif ================================================ [File too large to display: 431 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB5F.stypo.glif ================================================ [File too large to display: 411 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB60.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB60.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB61.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB61.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB62.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB62.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB63.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB63.stypo.glif ================================================ [File too large to display: 323 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB64.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB64.stypo.glif ================================================ [File too large to display: 324 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB65.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB65.stypo.glif ================================================ [File too large to display: 322 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB66.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB66.stypo.glif ================================================ [File too large to display: 325 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB67.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockD_iagonal-1FB67.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12345.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12345.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123456.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123456.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234567.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234567.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234568.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234568.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234578.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234578.stypo.glif ================================================ [File too large to display: 544 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123458.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123458.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12346.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12346.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123467.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123467.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234678.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1234678.stypo.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12347.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12347.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123478.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123478.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12348.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12348.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1235.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1235.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12356.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12356.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123567.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123567.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1235678.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1235678.stypo.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123568.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123568.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12357.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12357.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123578.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123578.stypo.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12358.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12358.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1236.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1236.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12367.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12367.stypo.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123678.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-123678.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12368.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12368.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1237.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1237.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12378.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12378.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1238.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1238.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1245.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1245.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12456.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12456.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124567.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124567.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1245678.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1245678.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124568.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124568.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12457.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12457.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124578.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124578.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12458.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12458.stypo.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1246.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1246.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12467.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12467.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124678.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-124678.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12468.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12468.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1247.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1247.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1248.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1248.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-125.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-125.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1256.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1256.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12567.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12567.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-125678.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-125678.stypo.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12568.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12568.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1257.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1257.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12578.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12578.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1258.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1258.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-126.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-126.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1267.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1267.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12678.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-12678.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1268.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1268.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-127.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-127.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1278.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1278.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-128.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-128.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1345.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1345.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134567.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134567.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1345678.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1345678.stypo.glif ================================================ [File too large to display: 456 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134568.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134568.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13457.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13457.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134578.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134578.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13458.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13458.stypo.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1346.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1346.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13467.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13467.stypo.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134678.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-134678.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13468.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13468.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1347.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1347.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1348.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1348.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-135.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-135.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1356.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1356.stypo.glif ================================================ [File too large to display: 449 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13567.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13567.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13568.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13568.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13578.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13578.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1358.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1358.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-136.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-136.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1367.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1367.stypo.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13678.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-13678.stypo.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-137.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-137.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1378.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1378.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-138.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-138.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-145.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-145.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1456.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1456.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14567.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14567.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-145678.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-145678.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14568.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14568.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1457.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1457.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14578.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14578.stypo.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1458.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1458.stypo.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-146.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-146.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1467.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1467.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14678.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-14678.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1468.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1468.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-147.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-147.stypo.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1478.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1478.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-148.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-148.stypo.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-15.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-15.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-156.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-156.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1567.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1567.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-15678.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-15678.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1568.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1568.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-157.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-157.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1578.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1578.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-158.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-158.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-16.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-16.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-167.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-167.stypo.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1678.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-1678.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-168.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-168.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-17.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-17.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-178.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-178.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-18.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-18.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2345.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2345.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234567.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234567.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2345678.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2345678.stypo.glif ================================================ [File too large to display: 456 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234568.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234568.stypo.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23457.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23457.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234578.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234578.stypo.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23458.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23458.stypo.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2346.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2346.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23467.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23467.stypo.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234678.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-234678.stypo.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23468.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23468.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2347.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2347.stypo.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23478.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23478.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2348.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2348.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-235.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-235.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2356.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2356.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23567.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23567.stypo.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-235678.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-235678.stypo.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23568.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23568.stypo.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2357.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2357.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23578.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23578.stypo.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2358.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2358.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-236.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-236.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2367.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2367.stypo.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23678.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-23678.stypo.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2368.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2368.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-237.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-237.stypo.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2378.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2378.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-238.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-238.stypo.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-245.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-245.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2456.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2456.stypo.glif ================================================ [File too large to display: 449 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24567.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24567.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24568.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24568.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24578.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24578.stypo.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2458.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2458.stypo.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-246.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-246.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2467.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2467.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-24678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-247.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-247.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2478.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2478.stypo.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-248.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-248.stypo.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-25.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-25.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-256.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-256.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2567.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2567.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-25678.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-25678.stypo.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2568.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2568.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-257.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-257.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2578.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2578.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-258.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-258.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-26.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-26.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-267.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-267.stypo.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2678.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-2678.stypo.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-268.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-268.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-27.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-27.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-278.glif ================================================ [File too large to display: 593 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-278.stypo.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-28.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-28.stypo.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-345.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-345.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3456.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3456.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34567.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34567.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34568.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34568.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3457.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3457.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34578.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34578.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3458.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3458.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-346.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-346.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3467.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3467.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34678.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-34678.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3468.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3468.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-347.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-347.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3478.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3478.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-348.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-348.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-356.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-356.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3567.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3567.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-35678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-35678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3568.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3568.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-357.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-357.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3578.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3578.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-358.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-358.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-36.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-36.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-367.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-367.stypo.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3678.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-3678.stypo.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-368.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-368.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-37.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-37.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-378.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-378.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-38.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-38.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-45.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-45.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-456.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-456.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4567.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4567.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-45678.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-45678.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4568.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4568.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-457.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-457.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4578.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4578.stypo.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-458.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-458.stypo.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-467.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-467.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4678.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-4678.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-468.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-468.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-47.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-47.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-478.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-478.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-48.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-48.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-5.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-5.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-56.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-56.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-567.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-567.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-568.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-568.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-578.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-578.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-58.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-58.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-6.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-6.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-67.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-67.stypo.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-678.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-678.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-7.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-7.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-8.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockO_ctant-8.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-LC.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-LC.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-ML.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-ML.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-MR.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-MR.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-UC.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockQ_uadrant-UC.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-1.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-1.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-123.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-123.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-15.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-15.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-159.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-159.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-2.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-2.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-234.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-234.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-3.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-3.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-4.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-4.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-48.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-48.stypo.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-48C.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-48C.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-5.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-5.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-59D.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-59D.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-6.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-6.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-7.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-7.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-8.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-8.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-8CG.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-8CG.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-9.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-9.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-9D.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-9D.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-A.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-A.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-B.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-B.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-C.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-CG.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-CG.stypo.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-D.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-D.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-DEF.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-DEF.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-E.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-E.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-EFG.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-EFG.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-F.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-F.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-G.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_edecimant-G.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-1.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-1.stypo.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-12.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-12.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-123.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-123.stypo.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-1234.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-1234.stypo.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-124.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-124.stypo.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-13.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-13.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-134.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-134.stypo.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-14.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-14.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-2.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-2.stypo.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-23.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-23.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-234.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-234.stypo.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-24.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-24.stypo.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-3.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-3.stypo.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-34.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-34.stypo.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-4.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedQ_uadrant-4.stypo.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1.stypo.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12.stypo.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-123.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-123.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1234.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1234.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12345.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12345.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-123456.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-123456.stypo.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12346.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12346.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1235.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1235.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12356.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12356.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1236.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1236.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-124.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-124.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1245.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1245.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-12456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1246.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1246.stypo.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-125.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-125.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1256.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1256.stypo.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-126.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-126.stypo.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-13.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-13.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-134.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-134.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1345.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1345.stypo.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-13456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-13456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1346.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1346.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-135.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-135.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1356.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1356.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-136.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-136.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-14.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-14.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-145.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-145.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-1456.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-146.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-146.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-15.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-15.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-156.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-156.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-16.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-16.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2.stypo.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-23.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-23.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-234.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-234.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2345.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2345.stypo.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-23456.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-23456.stypo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2346.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2346.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-235.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-235.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2356.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2356.stypo.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-236.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-236.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-24.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-24.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-245.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-245.stypo.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-2456.stypo.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-246.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-246.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-25.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-25.stypo.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-256.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-256.stypo.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-26.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-26.stypo.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-3.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-3.stypo.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-34.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-34.stypo.glif ================================================ [File too large to display: 578 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-345.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-345.stypo.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-3456.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-3456.stypo.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-346.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-346.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-35.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-35.stypo.glif ================================================ [File too large to display: 578 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-356.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-356.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-36.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-36.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-4.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-4.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-45.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-45.stypo.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-456.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-456.stypo.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-46.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-46.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-5.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-5.stypo.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-56.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-56.stypo.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-6.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_eparatedS_extant-6.stypo.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-123.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-123.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1234.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1234.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12345.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12345.stypo.glif ================================================ [File too large to display: 453 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12346.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12346.stypo.glif ================================================ [File too large to display: 453 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1235.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1235.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12356.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12356.stypo.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1236.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1236.stypo.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-124.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-124.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1245.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1245.stypo.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12456.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-12456.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1246.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1246.stypo.glif ================================================ [File too large to display: 454 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-125.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-125.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1256.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1256.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-126.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-126.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-13.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-13.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-134.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-134.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1345.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1345.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-13456.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-13456.stypo.glif ================================================ [File too large to display: 455 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1346.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1346.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1356.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1356.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-136.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-136.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-14.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-14.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-145.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-145.stypo.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1456.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-1456.stypo.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-146.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-146.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-15.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-15.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-156.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-156.stypo.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-16.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-16.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2.stypo.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-23.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-23.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-234.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-234.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2345.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2345.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-23456.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-23456.stypo.glif ================================================ [File too large to display: 455 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2346.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2346.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-235.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-235.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2356.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2356.stypo.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-236.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-236.stypo.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-24.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-24.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-245.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-245.stypo.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2456.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-2456.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-25.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-25.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-256.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-256.stypo.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-26.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-26.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-3.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-3.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-34.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-34.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-345.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-345.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-3456.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-3456.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-346.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-346.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-35.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-35.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-356.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-356.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-36.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-36.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-4.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-4.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-45.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-45.stypo.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-456.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-456.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-46.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-46.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-5.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-5.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-56.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-56.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-6.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockS_extant-6.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-1.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-1.stypo.glif ================================================ [File too large to display: 317 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-123.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-123.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-124.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-124.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-134.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-134.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-14.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-14.stypo.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-2.glif ================================================ [File too large to display: 334 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-2.stypo.glif ================================================ [File too large to display: 314 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-23.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-23.stypo.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-234.glif ================================================ [File too large to display: 428 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-234.stypo.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-3.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-3.stypo.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-4.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/blockT_riangle-4.stypo.glif ================================================ [File too large to display: 317 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bottomH_alfB_lackC_ircle.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bottomH_alfB_lackD_iamond.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.glif ================================================ [File too large to display: 755 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleH_orizontal.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleH_orizontal.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndL_eft.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndR_ight.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_ertical.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_ertical.stypo.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_oubleV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 946 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 541 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 447 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 466 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownH_eavyA_ndU_pH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 541 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 447 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 466 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownL_ightA_ndU_pH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 625 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxD_ownS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_oubleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_oubleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_own.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_own.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 443 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyH_orizontal.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyH_orizontal.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyL_eft.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyL_eft.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyL_eftA_ndL_ightR_ight.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyQ_uadrupleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyR_ight.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyR_ight.stypo.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyT_ripleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyT_ripleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_p.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_p.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndL_eft.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndL_ightD_own.stypo.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndR_ight.glif ================================================ [File too large to display: 459 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 441 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_ertical.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_ertical.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxH_eavyV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 535 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftD_ownH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftH_eavyA_ndR_ightV_erticalL_ight.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftL_ightA_ndR_ightV_erticalH_eavy.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_eftU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightA_rcU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalC_ross.glif ================================================ [File too large to display: 898 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalC_ross.stypo.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalU_pperL_eftT_oL_owerR_ight.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_iagonalU_pperR_ightT_oL_owerL_eft.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.glif ================================================ [File too large to display: 582 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_oubleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_oubleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_own.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_own.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndL_eft.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndL_eft.stypo.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndR_ight.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightD_ownA_ndR_ight.stypo.glif ================================================ [File too large to display: 443 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightH_orizontal.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightH_orizontal.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightL_eft.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightL_eft.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightL_eftA_ndH_eavyR_ight.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightQ_uadrupleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightQ_uadrupleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightR_ight.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightR_ight.stypo.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightT_ripleD_ashH_orizontal.stypo.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightT_ripleD_ashV_ertical.stypo.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_p.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_p.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndH_eavyD_own.stypo.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndL_eft.glif ================================================ [File too large to display: 458 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndL_eft.stypo.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndR_ight.glif ================================================ [File too large to display: 459 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightU_pA_ndR_ight.stypo.glif ================================================ [File too large to display: 441 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_ertical.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_ertical.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndH_orizontal.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndL_eft.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxL_ightV_erticalA_ndR_ight.stypo.glif ================================================ [File too large to display: 535 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightD_ownH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftU_pL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightH_eavyA_ndL_eftV_erticalL_ight.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftU_pH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightL_ightA_ndL_eftV_erticalH_eavy.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxR_ightU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 621 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 622 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndD_ownH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndL_eftD_ownL_ight.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 445 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndR_ightD_ownL_ight.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 464 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndD_ownH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndL_eftD_ownH_eavy.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 445 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndR_ightD_ownH_eavy.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 464 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 641 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxU_pS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndH_orizontalS_ingle.stypo.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndL_eftS_ingle.stypo.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalD_oubleA_ndR_ightS_ingle.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndH_orizontalL_ight.stypo.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndL_eftL_ight.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalH_eavyA_ndR_ightL_ight.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndH_orizontalH_eavy.stypo.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndL_eftH_eavy.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalL_ightA_ndR_ightH_eavy.stypo.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndH_orizontalD_ouble.stypo.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndL_eftD_ouble.stypo.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/boxV_erticalS_ingleA_ndR_ightD_ouble.stypo.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/braceleft.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/braceleft_bar.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/braceright.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/braceright_numbersign.liga.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bracketleft.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bracketleft_bar.liga.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bracketright.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bracketright_numbersign.liga.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/breve.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/brevecomb-cy.case.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/brevecomb-cy.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/brevecomb.case.glif ================================================ [File too large to display: 904 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/brevecomb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/brokenbar.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bullet.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bulletoperator.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 255 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/c.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cacute.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cacute.loclP_L_K_.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cancelC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cancelC_ontrol.ss20.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/careof.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/caron.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/caroncomb.case.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/caroncomb.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/carriageR_eturnC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/carriageR_eturnC_ontrol.ss20.glif ================================================ [File too large to display: 869 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ccaron.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ccedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ccircumflex.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cdotaccent.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cedi.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cedilla.glif ================================================ [File too large to display: 193 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cedillacomb.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cent.glif ================================================ [File too large to display: 385 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/che-cy.glif ================================================ [File too large to display: 990 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardD_eleteA_mstradC_pc.stypo.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardD_eleteA_pple2.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardD_eleteT_rs80.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardF_ill.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardF_ill.stypo.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardF_illI_nverse.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkerB_oardF_illI_nverse.stypo.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/checkmark.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/chedescender-cy.glif ================================================ [File too large to display: 444 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/chi.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/circumflex.glif ================================================ [File too large to display: 199 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/circumflexcomb.case.glif ================================================ [File too large to display: 756 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/circumflexcomb.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/clubB_lackS_uit.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon.center.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_colon.liga.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_colon_colon.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_colon_equal.liga.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_equal.liga.glif ================================================ [File too large to display: 612 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_equal_middle.seq.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colon_slash_slash.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colonsign.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/colontriangularmod.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/comma-ar.glif ================================================ [File too large to display: 908 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/comma.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/commaabovecomb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/commaaboverightcomb.glif ================================================ [File too large to display: 312 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/commaaccentcomb.glif ================================================ [File too large to display: 422 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/commaturnedabovecomb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/commaturnedmod.glif ================================================ [File too large to display: 211 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/contents.plist ================================================ [File too large to display: 335.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/copyright.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/crosshatchF_illS_quare.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/cuberoot-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/currency.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/d.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.alt.glif ================================================ [File too large to display: 654 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.fina.alt.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.fina.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.init.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dad-ar.medi.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.alt.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.fina.alt.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.fina.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.init.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dadD_otbelow-ar.medi.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dagesh-hb.glif ================================================ [File too large to display: 879 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dagger.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/daggerdbl.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dahal-ar.fina.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dahal-ar.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dal-ar.fina.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dal-ar.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalD_otbelow-ar.fina.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalD_otbelow-ar.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalD_otbelowT_ah-ar.fina.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalD_otbelowT_ah-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalF_ourdots-ar.fina.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalF_ourdots-ar.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalR_ing-ar.fina.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalR_ing-ar.glif ================================================ [File too large to display: 885 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_hreedotsbelow-ar.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_hreedotsdown-ar.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.fina.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalT_wodotsverticalbelowT_ahabove-ar.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalV_invertedabove-ar.fina.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalV_invertedabove-ar.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalV_invertedbelow-ar.fina.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalV_invertedbelow-ar.glif ================================================ [File too large to display: 702 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dalet-hb.glif ================================================ [File too large to display: 756 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/daletdagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/damma-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dammatan-ar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dashdownA_rrow.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dataL_inkE_scapeC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dataL_inkE_scapeC_ontrol.ss20.glif ================================================ [File too large to display: 555 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dateseparator-ar.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dcaron.alt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dcaron.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dcroat.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ddahal-ar.fina.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ddahal-ar.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ddal-ar.fina.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ddal-ar.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/de-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/de-cy.loclB_G_R_.glif ================================================ [File too large to display: 165 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/decimalseparator-ar.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/degree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deleteC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deleteF_ormT_woC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/delta.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deviceC_ontrolF_ourC_ontrol.glif ================================================ [File too large to display: 934 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deviceC_ontrolO_neC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif ================================================ [File too large to display: 937 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/deviceC_ontrolT_woC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/diagonalcrosshatchF_illS_quare.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/diamondB_lackS_uit.glif ================================================ [File too large to display: 368 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dieresis.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dieresiscomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dieresiscomb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dieresistonos.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/divide.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/divisionslash.glif ================================================ [File too large to display: 205 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dje-cy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dollar.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dollar.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dollar_greater.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dong.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotabove-ar.glif ================================================ [File too large to display: 425 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotaccent.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotaccentcomb.case.glif ================================================ [File too large to display: 846 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotaccentcomb.glif ================================================ [File too large to display: 865 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotbelow-ar.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotbelowcomb.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dotcenter-ar.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1-braille.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1234-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12345-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123456-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1234567-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12345678-braille.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1234568-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123457-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1234578-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123458-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12346-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123467-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1234678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123468-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12347-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123478-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12348-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1235-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12356-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123567-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1235678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123568-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12357-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12358-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1236-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12367-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots123678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12368-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1237-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12378-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1238-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots124-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1245-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots124567-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1245678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots124568-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots124578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1246-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots124678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1247-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1248-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots125-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1256-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots125678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1257-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1258-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots126-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1267-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots12678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1268-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots127-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1278-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots128-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots134-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1345-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots134567-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1345678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots134568-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots134578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1346-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots134678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1347-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1348-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots135-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1356-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots135678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1357-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1358-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots136-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1367-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots13678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1368-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots137-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1378-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots138-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots14-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots145-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots14567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots145678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots14568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots14578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1458-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots146-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots14678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots147-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots148-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots15-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots156-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1567-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots15678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1568-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots157-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots158-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots16-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots167-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots1678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots168-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots17-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots178-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots18-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2-braille.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots234-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2345-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23456-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots234567-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2345678-braille.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots234568-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23457-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots234578-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23458-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2346-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23467-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots234678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23468-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2347-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23478-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2348-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots235-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2356-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots235678-braille.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2357-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2358-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots236-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2367-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots23678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2368-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots237-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2378-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots238-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots24-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots245-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots24567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots245678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots24568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots24578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2458-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots246-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots24678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots247-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots248-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots25-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots256-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2567-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots25678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots257-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots258-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots26-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots267-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots2678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots268-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots27-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots278-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots28-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3-braille.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots34-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots345-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3456-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots34567-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots345678-braille.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots34568-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3457-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots34578-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3458-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots346-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3467-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots34678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3468-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots347-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3478-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots348-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots35-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots356-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3567-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots35678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots357-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots358-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots36-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots367-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots3678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots368-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots37-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots378-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots38-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots4-braille.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots45-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots456-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots4567-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots45678-braille.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots4568-braille.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots457-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots4578-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots458-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots46-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots467-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots4678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots468-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots47-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots478-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots48-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots5-braille.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots56-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots567-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots5678-braille.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots568-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots57-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots578-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots58-braille.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots6-braille.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots67-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots678-braille.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots68-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots7-braille.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots78-braille.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dots8-braille.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dottedC_ircle.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dottedS_quare.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.comb.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/doubleverticalbarbelowS_ymbol-ar.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downA_rrow.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downB_lackS_mallT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downB_lackT_riangle.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downT_ipL_eftA_rrow.glif ================================================ [File too large to display: 420 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/downW_hiteT_riangle.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dtail.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dul-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dul-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dyeh-ar.fina.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dyeh-ar.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dyeh-ar.init.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dyeh-ar.medi.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dze-cy.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/dzhe-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.fina.alt.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.fina.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.init.alt.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.init.glif ================================================ [File too large to display: 286 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-ar.medi.glif ================================================ [File too large to display: 286 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/e.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ebreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecaron.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflexacute.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflexdotbelow.glif ================================================ [File too large to display: 284 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflexgrave.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflexhookabove.glif ================================================ [File too large to display: 650 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ecircumflextilde.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/edieresis.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/edotaccent.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/edotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ef-cy.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ef-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/egrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ehookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-ar.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-arinferior.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-arsuperior.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-persian.glif ================================================ [File too large to display: 509 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-persianinferior.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight-persiansuperior.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight.dnom.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eight.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eightinferior.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eightsuperior.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/el-cy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/el-cy.loclB_G_R_.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 280 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/em-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/emacron.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/emdash.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/en-cy.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fM_ediumC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fM_ediumC_ontrol.ss20.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_extC_ontrol.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_extC_ontrol.ss20.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_ransmissionB_lockC_ontrol.ss20.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_ransmissionC_ontrol.glif ================================================ [File too large to display: 928 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endO_fT_ransmissionC_ontrol.ss20.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endash.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endescender-cy.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/endofayah-ar.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eng.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/enquiryC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/enquiryC_ontrol.ss20.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eopen.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/epsilon.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/epsilontonos.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_end.seq.glif ================================================ [File too large to display: 547 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_equal.liga.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_equal_equal.liga.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_greater_greater.liga.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_less_less.liga.glif ================================================ [File too large to display: 277 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_middle.seq.glif ================================================ [File too large to display: 550 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equal_start.seq.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/equivalence.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/er-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ereversed-cy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/es-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/escapeC_ontrol.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/escapeC_ontrol.ss20.glif ================================================ [File too large to display: 520 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/esh.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/estimated.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eta.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/etatonos.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eth.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/etilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eturned.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/euro.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/eurocurrency.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_colon.liga.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_equal.liga.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_equal_equal.liga.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_equal_middle.seq.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_exclam.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_exclam_period.liga.glif ================================================ [File too large to display: 288 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclam_period.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclamdouble.glif ================================================ [File too large to display: 253 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/exclamdown.glif ================================================ [File too large to display: 421 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ezh.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/f.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fatha-ar.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fathatan-ar.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.alt.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.fina.alt.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.fina.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.init.alt.glif ================================================ [File too large to display: 405 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.init.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/feh-ar.medi.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.alt.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.alt.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.fina.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.init.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otM_ovedbelow-ar.medi.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.alt.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.fina.alt.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.fina.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.glif ================================================ [File too large to display: 970 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.init.glif ================================================ [File too large to display: 955 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelow-ar.medi.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.alt.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.alt.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.alt.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.fina.alt.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.fina.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.init.alt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.init.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehD_otless-ar.medi.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.alt.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 709 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.alt.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.fina.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.init.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_hreedotsupbelow-ar.medi.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.alt.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.fina.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.init.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fehT_wodotsbelow-ar.medi.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fi.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fileS_eparatorC_ontrol.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/filledR_ect.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalkaf-hb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalkafdagesh-hb.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalmem-hb.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalnun-hb.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalpe-hb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finalpedagesh-hb.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/finaltsadi-hb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/firsttonechinese.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fisheye.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-arinferior.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-arsuperior.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-persian.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-persianinferior.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five-persiansuperior.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five.dnom.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/five.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fiveeighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fiveeighths.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fiveinferior.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fivesuperior.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fl.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/florin.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/footnotemarker-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/formF_eedC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/formF_eedC_ontrol.ss20.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-ar.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-arinferior.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-arsuperior.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persian.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persian.small01.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persian.urdu.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persian.urduinferior.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persian.urdusuperior.glif ================================================ [File too large to display: 904 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persianbelow-ar.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persiancenter-ar.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persianinferior.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four-persiansuperior.glif ================================================ [File too large to display: 889 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four.dnom.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four.half.glif ================================================ [File too large to display: 932 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/four.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fourdotsabove-ar.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fourdotsbelow-ar.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fourdotscenter-ar.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fourinferior.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/foursuperior.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fourthroot-ar.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fraction.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/franc.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fullB_lock.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fullB_lock.stypo.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/fullstop-ar.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/g.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gaf-ar.fina.glif ================================================ [File too large to display: 416 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gaf-ar.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gaf-ar.init.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gaf-ar.medi.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafI_nvertedstroke-ar.fina.glif ================================================ [File too large to display: 946 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafI_nvertedstroke-ar.glif ================================================ [File too large to display: 850 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafI_nvertedstroke-ar.init.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafI_nvertedstroke-ar.medi.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafR_ing-ar.fina.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafR_ing-ar.glif ================================================ [File too large to display: 757 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafR_ing-ar.init.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafR_ing-ar.medi.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_hreedots-ar.fina.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_hreedots-ar.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_hreedots-ar.init.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_hreedots-ar.medi.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_wodotsbelow-ar.fina.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_wodotsbelow-ar.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_wodotsbelow-ar.init.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafT_wodotsbelow-ar.medi.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gafsarkashabove-ar.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gamma-latin.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gamma.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gbreve.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gcaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gcircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gcommaaccent.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gdotaccent.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ge-cy.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ge-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/geresh-hb.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/germandbls.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gershayim-hb.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghain-ar.fina.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghain-ar.glif ================================================ [File too large to display: 673 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghain-ar.init.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghain-ar.medi.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghainD_otbelow-ar.fina.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghainD_otbelow-ar.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghainD_otbelow-ar.init.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghainD_otbelow-ar.medi.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ghestroke-cy.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gheupturn-cy.glif ================================================ [File too large to display: 851 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gimel-hb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gimeldagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gje-cy.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/glottalstop.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/glottalstopmod.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/glottalstopreversed.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/grave.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gravecomb.case.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gravecomb.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gravetonecomb.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater.alt.glif ================================================ [File too large to display: 510 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater.center.glif ================================================ [File too large to display: 512 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_equal.liga.glif ================================================ [File too large to display: 727 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_equal_end.seq.glif ================================================ [File too large to display: 601 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_equal_middle.seq.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_equal_start.seq.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater.liga.glif ================================================ [File too large to display: 906 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_equal.liga.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_equal_end.seq.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_equal_middle.seq.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_equal_start.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_greater.liga.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_hyphen_end.seq.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_hyphen_middle.seq.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_greater_hyphen_start.seq.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_hyphen_end.seq.glif ================================================ [File too large to display: 401 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_hyphen_middle.seq.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greater_hyphen_start.seq.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/greaterequal.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/groupS_eparatorC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gstroke.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/guarani.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gueh-ar.fina.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gueh-ar.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gueh-ar.init.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/gueh-ar.medi.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/guillemetleft.glif ================================================ [File too large to display: 268 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/guillemetright.glif ================================================ [File too large to display: 312 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/guilsinglleft.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/guilsinglright.glif ================================================ [File too large to display: 537 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/h.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ha-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hadescender-cy.glif ================================================ [File too large to display: 442 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hah-ar.fina.glif ================================================ [File too large to display: 862 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hah-ar.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hah-ar.init.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hah-ar.medi.glif ================================================ [File too large to display: 826 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahF_ourbelow-ar.fina.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahF_ourbelow-ar.glif ================================================ [File too large to display: 579 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahF_ourbelow-ar.init.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahF_ourbelow-ar.medi.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahH_amzaabove-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahH_amzaabove-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahH_amzaabove-ar.init.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahH_amzaabove-ar.medi.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 609 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahabove-ar.fina.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahabove-ar.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahabove-ar.init.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahabove-ar.medi.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahbelow-ar.fina.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahbelow-ar.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahbelow-ar.init.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_ahbelow-ar.medi.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsabove-ar.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsupbelow-ar.fina.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsupbelow-ar.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsupbelow-ar.init.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_hreedotsupbelow-ar.medi.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotsverticalabove-ar.fina.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotsverticalabove-ar.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotsverticalabove-ar.init.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hahT_wodotsverticalabove-ar.medi.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hamza-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hamzaabove-ar.glif ================================================ [File too large to display: 842 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hamzabelow-ar.glif ================================================ [File too large to display: 850 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hardsign-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hardsign-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hbar.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hcaron.glif ================================================ [File too large to display: 249 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hcircumflex.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hdotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/he-hb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heartB_lackS_uit.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyH_orizontalF_ill.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyH_orizontalF_ill.stypo.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyleftpointinganglebracketornament.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyleftpointinganglequotationmarkornament.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyrightpointinganglebracketornament.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heavyrightpointinganglequotationmarkornament.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hedagesh-hb.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heh-ar.fina.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heh-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heh-ar.init.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/heh-ar.medi.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehA_lefabove-ar.init.fina.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehA_lefabove-ar.init.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehD_oachashmee-ar.fina.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehD_oachashmee-ar.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehD_oachashmee-ar.init.glif ================================================ [File too large to display: 298 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehD_oachashmee-ar.medi.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehH_amzaabove-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehH_amzaabove-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehV_invertedabove-ar.fina.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehV_invertedabove-ar.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehV_invertedabove-ar.init.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehV_invertedabove-ar.medi.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoal-ar.fina.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoal-ar.glif ================================================ [File too large to display: 305 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoal-ar.init.alt.glif ================================================ [File too large to display: 722 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoal-ar.init.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoal-ar.medi.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoalH_amzaabove-ar.fina.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoalH_amzaabove-ar.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoalH_amzaabove-ar.init.alt.glif ================================================ [File too large to display: 727 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoalH_amzaabove-ar.init.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hehgoalH_amzaabove-ar.medi.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/het-hb.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamza-ar.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaA_lef-ar.fina.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaA_lef-ar.fina.rlig.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaA_lef-ar.glif ================================================ [File too large to display: 937 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaW_aw-ar.fina.glif ================================================ [File too large to display: 402 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaW_aw-ar.glif ================================================ [File too large to display: 416 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.fina.alt.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.fina.glif ================================================ [File too large to display: 900 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.init.alt.glif ================================================ [File too large to display: 826 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.init.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/highhamzaY_eh-ar.medi.glif ================================================ [File too large to display: 822 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/holam-hb.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/holamhaser-hb.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hookabovecomb.case.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hookabovecomb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalB_lackH_exagon.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalF_illS_quare.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-2.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-2.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-3.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-3.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-4.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-4.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-5.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-5.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-6.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-6.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-7.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalO_neE_ightB_lock-7.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalT_abulationC_ontrol.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalT_abulationC_ontrol.ss20.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontalbar.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horizontallineextension.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horncomb.case.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/horncomb.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/house.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hryvnia.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hungarumlaut.glif ================================================ [File too large to display: 203 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hungarumlautcomb.case.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hungarumlautcomb.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen.glif ================================================ [File too large to display: 186 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_asciitilde.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_end.seq.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_hyphen.liga.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_hyphen_hyphen.liga.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_middle.seq.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphen_start.seq.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/hyphentwo.glif ================================================ [File too large to display: 190 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/i-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/i.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ia-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iacute.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ibreve.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/icircumflex.glif ================================================ [File too large to display: 246 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/idieresis.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/idotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/idotless.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ie-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iegrave-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/igrave.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ihookabove.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ii-cy.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ii-cy.loclB_G_R_.glif ================================================ [File too large to display: 165 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iigrave-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iigrave-cy.loclB_G_R_.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iishort-cy.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iishort-cy.loclB_G_R_.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ij.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ij_acute.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/imacron-cy.glif ================================================ [File too large to display: 225 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/imacron.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/increment.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/integral.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/integralbt.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/integraltp.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/intersection.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/inverseB_ullet.glif ================================================ [File too large to display: 898 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/inverseW_hiteC_ircle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/io-cy.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iota-latin.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iota.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iotadieresis.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iotadieresistonos.glif ================================================ [File too large to display: 248 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iotatonos.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/itilde.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iu-cy.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/iu-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/j.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jacute.glif ================================================ [File too large to display: 213 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jcaron.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jcircumflex.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jdotless.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/je-cy.glif ================================================ [File too large to display: 181 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeem-ar.fina.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeem-ar.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeem-ar.init.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeem-ar.medi.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeemT_wodotsabove-ar.fina.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeemT_wodotsabove-ar.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeemT_wodotsabove-ar.init.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeemT_wodotsabove-ar.medi.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeh-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/jeh-ar.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/k.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ka-cy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ka-cy.loclB_G_R_.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kadescender-cy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaf-ar.fina.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaf-ar.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaf-ar.init.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaf-ar.medi.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaf-hb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafD_otabove-ar.fina.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafD_otabove-ar.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafD_otabove-ar.init.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafD_otabove-ar.medi.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafR_ing-ar.fina.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafR_ing-ar.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafR_ing-ar.init.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafR_ing-ar.medi.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_hreedotsbelow-ar.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafdagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.alt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.fina.alt.glif ================================================ [File too large to display: 961 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.fina.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.init.alt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.init.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.medi.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kafswash-ar.medi.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kaiS_ymbol.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kappa.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kashida-ar.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kasra-ar.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kasratan-ar.glif ================================================ [File too large to display: 859 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kdotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/keheh-ar.fina.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/keheh-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/keheh-ar.init.glif ================================================ [File too large to display: 289 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/keheh-ar.medi.glif ================================================ [File too large to display: 289 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehD_otabove-ar.fina.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehD_otabove-ar.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehD_otabove-ar.init.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehD_otabove-ar.medi.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsabove-ar.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsbelow-ar.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsupbelow-ar.fina.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsupbelow-ar.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsupbelow-ar.init.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_hreedotsupbelow-ar.medi.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 801 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kehehT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kgreenlandic.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/khah-ar.fina.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/khah-ar.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/khah-ar.init.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/khah-ar.medi.glif ================================================ [File too large to display: 658 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kip.glif ================================================ [File too large to display: 579 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kirghizoe-ar.fina.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kirghizoe-ar.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kirghizyu-ar.fina.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kirghizyu-ar.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/kje-cy.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/klinebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/l.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lacute.glif ================================================ [File too large to display: 248 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.fina.glif ================================================ [File too large to display: 839 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.init.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.init.rlig.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.medi.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam-ar.medi.rlig.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.fina.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.init.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.init.rlig.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.medi.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamB_ar-ar.medi.rlig.glif ================================================ [File too large to display: 409 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.fina.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.init.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.init.rlig.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.medi.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_otabove-ar.medi.rlig.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.fina.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.init.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.init.rlig.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.medi.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamD_oublebar-ar.medi.rlig.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.init.rlig.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsabove-ar.medi.rlig.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.init.rlig.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamT_hreedotsbelow-ar.medi.rlig.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.fina.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.glif ================================================ [File too large to display: 673 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.init.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.init.rlig.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.medi.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamV_above-ar.medi.rlig.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alef-ar.fina.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alef-ar.fina.short.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alef-ar.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alef-ar.short.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefH_amzaabove-ar.fina.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefH_amzaabove-ar.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefH_amzabelow-ar.fina.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefH_amzabelow-ar.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefM_adda-ar.fina.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefM_adda-ar.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefW_asla-ar.fina.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_alefW_asla-ar.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lam_lam_heh-ar.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lambda.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lambdastroke.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lamed-hb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lameddagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeC_ircle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1A.glif ================================================ [File too large to display: 568 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1A.stypo.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1B.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1B.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1C.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1D.glif ================================================ [File too large to display: 518 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1D.stypo.glif ================================================ [File too large to display: 496 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1E.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1E.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1F.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE1F.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE20.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE20.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE21.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE21.stypo.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE22.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE22.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE23.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE23.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE24.glif ================================================ [File too large to display: 561 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE24.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE25.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE25.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE26.glif ================================================ [File too large to display: 512 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE26.stypo.glif ================================================ [File too large to display: 490 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE27.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE27.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE28.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE28.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE29.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE29.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2A.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2A.stypo.glif ================================================ [File too large to display: 577 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2B.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2B.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2C.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2C.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2D.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2D.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2E.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2E.stypo.glif ================================================ [File too large to display: 911 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2F.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE2F.stypo.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE30.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE30.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE31.glif ================================================ [File too large to display: 339 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE31.stypo.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE32.glif ================================================ [File too large to display: 587 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE32.stypo.glif ================================================ [File too large to display: 567 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE33.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE33.stypo.glif ================================================ [File too large to display: 628 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE34.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE34.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE35.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE35.stypo.glif ================================================ [File too large to display: 550 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE36.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE36.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE37.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE37.stypo.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE38.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE38.stypo.glif ================================================ [File too large to display: 565 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE39.glif ================================================ [File too large to display: 559 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE39.stypo.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3A.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3A.stypo.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3B.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3B.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3C.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3C.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3D.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3D.stypo.glif ================================================ [File too large to display: 452 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3E.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3E.stypo.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3F.glif ================================================ [File too large to display: 519 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE3F.stypo.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE40.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE40.stypo.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE41.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE41.stypo.glif ================================================ [File too large to display: 450 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE42.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE42.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE43.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE43.stypo.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE44.glif ================================================ [File too large to display: 468 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE44.stypo.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE45.glif ================================================ [File too large to display: 774 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE45.stypo.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE46.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE46.stypo.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE47.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE47.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE48.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE48.stypo.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE49.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE49.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4A.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4A.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4B.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4B.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4C.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4C.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4D.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4D.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4E.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4E.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4F.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE4F.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE50.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/largeT_ype-1CE50.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lari.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/layerinfo.plist ================================================ [File too large to display: 317.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lbar.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lbelt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lcaron.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ldot.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ldotbelow.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 448 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftA_rrow.glif ================================================ [File too large to display: 735 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftB_lackP_ointer.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftB_lackS_mallT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftB_lackT_riangle.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftB_lock.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftB_lock.stypo.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftH_alfB_lackC_ircle.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftH_alfB_lackD_iamond.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftH_alfB_lackS_quare.glif ================================================ [File too large to display: 433 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 481 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neE_ighthB_lock.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neQ_uarterB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neT_hirdB_lock.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftO_neT_hirdB_lock.stypo.glif ================================================ [File too large to display: 350 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftR_ightA_rrow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_woT_hirdsB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftT_woT_hirdsB_lock.stypo.glif ================================================ [File too large to display: 351 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftW_hiteP_ointer.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 645 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/leftW_hiteT_riangle.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less.alt.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less.center.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less.glif ================================================ [File too large to display: 530 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_asciitilde.liga.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_asciitilde_asciitilde.liga.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_asciitilde_greater.liga.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_asterisk.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_asterisk_greater.liga.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_bar.liga.glif ================================================ [File too large to display: 636 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_bar_bar.liga.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_bar_bar_bar.liga.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_bar_greater.liga.glif ================================================ [File too large to display: 280 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_dollar.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_dollar.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_dollar_greater.liga.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_dollar_greater.liga.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_equal.liga.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_equal_end.seq.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_equal_middle.seq.glif ================================================ [File too large to display: 248 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_equal_start.seq.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_exclam_hyphen_hyphen.liga.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_greater.liga.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_hyphen_end.seq.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_hyphen_middle.seq.glif ================================================ [File too large to display: 250 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_hyphen_start.seq.glif ================================================ [File too large to display: 398 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less.liga.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_equal.liga.glif ================================================ [File too large to display: 277 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_equal_end.seq.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_equal_middle.seq.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_equal_start.seq.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_hyphen_end.seq.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_hyphen_middle.seq.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_hyphen_start.seq.glif ================================================ [File too large to display: 447 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_less_less.liga.glif ================================================ [File too large to display: 276 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_plus.liga.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_plus_greater.liga.glif ================================================ [File too large to display: 282 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_slash.liga.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/less_slash_greater.liga.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lessequal.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lineF_eedC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lineF_eedC_ontrol.ss20.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lineseparator.glif ================================================ [File too large to display: 163 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lira.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/liraT_urkish.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/literS_ign.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lje-cy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/llinebelow.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lmiddletilde.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/logicalnot.glif ================================================ [File too large to display: 566 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/logicalnotR_eversed.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/longs.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfA_rc.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 828 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfB_lock.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfB_lock.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfI_nverseW_hiteC_ircle.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerH_alfW_hiteS_quare.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftA_rc.glif ================================================ [File too large to display: 512 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftB_lackT_riangle.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftB_lock.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftB_lock.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftH_alfW_hiteS_quare.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerL_eftT_riangle.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerO_neE_ighthB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerO_neQ_uarterB_lock.glif ================================================ [File too large to display: 371 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightA_rc.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightB_lackT_riangle.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightD_iagonalH_alfB_lackS_quare.glif ================================================ [File too large to display: 405 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerR_ightT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 373 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowerT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 358 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowernumeral-greek.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lowlinecomb.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lozenge.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/lslash.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/m.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/macron.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/macronbelowcomb.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/macroncomb.case.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/macroncomb.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/madda-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/manat.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/maqaf-hb.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mars.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumB_lackS_mallS_quare.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumB_lackS_quare.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumW_hiteS_mallS_quare.glif ================================================ [File too large to display: 601 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumW_hiteS_quare.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumleftpointinganglebracketornament.glif ================================================ [File too large to display: 561 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mediumrightpointinganglebracketornament.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meem-ar.fina.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meem-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meem-ar.init.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meem-ar.medi.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otabove-ar.fina.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otabove-ar.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otabove-ar.init.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otabove-ar.medi.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otbelow-ar.fina.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otbelow-ar.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otbelow-ar.init.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemD_otbelow-ar.medi.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemS_topabove-ar.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemT_hreedotsabove-ar.glif ================================================ [File too large to display: 702 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/meemT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mem-hb.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/memdagesh-hb.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/micro.glif ================================================ [File too large to display: 182 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/minus.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/minute.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/misraC_omma-ar.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/mu.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/multiply.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/n.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nacute.loclP_L_K_.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/naira.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/napostrophe.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nbspace.glif ================================================ [File too large to display: 294 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ncaron.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ncommaaccent.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/negativeA_cknowledgeC_ontrol.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/negativeA_cknowledgeC_ontrol.ss20.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/newlineC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ng-ar.fina.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ng-ar.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ng-ar.init.glif ================================================ [File too large to display: 744 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ng-ar.medi.glif ================================================ [File too large to display: 744 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ngoeh-ar.fina.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ngoeh-ar.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ngoeh-ar.init.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ngoeh-ar.medi.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nhookleft.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-arinferior.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-arsuperior.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-persian.glif ================================================ [File too large to display: 505 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-persianinferior.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine-persiansuperior.glif ================================================ [File too large to display: 889 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine.dnom.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nine.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nineinferior.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ninesuperior.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nje-cy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nlinebelow.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nmod.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nonbreakinghyphen.glif ================================================ [File too large to display: 201 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noon-ar.fina.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noon-ar.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noon-ar.init.alt.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noon-ar.init.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noon-ar.medi.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonA_frican-ar.fina.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonA_frican-ar.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonA_frican-ar.init.alt.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonA_frican-ar.init.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonA_frican-ar.medi.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonD_otbelow-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonD_otbelow-ar.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonD_otbelow-ar.init.alt.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonD_otbelow-ar.init.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonD_otbelow-ar.medi.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonR_ing-ar.fina.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonR_ing-ar.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonR_ing-ar.init.alt.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonR_ing-ar.init.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonR_ing-ar.medi.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_ahabove-ar.fina.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_ahabove-ar.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_ahabove-ar.init.alt.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_ahabove-ar.init.glif ================================================ [File too large to display: 892 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_ahabove-ar.medi.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_hreedotsabove-ar.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_hreedotsabove-ar.init.alt.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 702 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 302 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_wodotsbelow-ar.fina.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_wodotsbelow-ar.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_wodotsbelow-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_wodotsbelow-ar.init.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonT_wodotsbelow-ar.medi.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonV_above-ar.fina.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonV_above-ar.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonV_above-ar.init.alt.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonV_above-ar.init.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonV_above-ar.medi.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonabove-ar.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunna-ar.fina.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunna-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunna-ar.init.alt.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunna-ar.init.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunna-ar.medi.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/noonghunnaabove-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/note-musical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/notedbl-musical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/notequal.glif ================================================ [File too large to display: 388 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/notidentical.glif ================================================ [File too large to display: 398 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ntilde.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nu.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nullC_ontrol.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/number-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbermark-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_braceleft.liga.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_bracketleft.liga.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_colon.liga.glif ================================================ [File too large to display: 255 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_end.seq.glif ================================================ [File too large to display: 950 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_equal.liga.glif ================================================ [File too large to display: 608 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_exclam.liga.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_middle.seq.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_parenleft.liga.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_question.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_start.seq.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_underscore.liga.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numbersign_underscore_parenleft.liga.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numeral-greek.glif ================================================ [File too large to display: 198 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/numero.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nun-hb.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nundagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nyeh-ar.fina.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nyeh-ar.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nyeh-ar.init.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/nyeh-ar.medi.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/o-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/o.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oacute.loclP_L_K_.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/obarred-cy.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/obreve.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflex.glif ================================================ [File too large to display: 226 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflexacute.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflexdotbelow.glif ================================================ [File too large to display: 271 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflexgrave.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflexhookabove.glif ================================================ [File too large to display: 650 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ocircumflextilde.glif ================================================ [File too large to display: 292 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/odieresis.glif ================================================ [File too large to display: 234 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/odotbelow.glif ================================================ [File too large to display: 222 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oe-ar.fina.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oe-ar.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oe.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ogonek.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ogonekcomb.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ograve.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohorn.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohornacute.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohorndotbelow.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohorngrave.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohornhookabove.glif ================================================ [File too large to display: 245 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohorntilde.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ohungarumlaut.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omacron.glif ================================================ [File too large to display: 218 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omacronacute.glif ================================================ [File too large to display: 284 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omacrongrave.glif ================================================ [File too large to display: 285 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omega.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omegatonos.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omicron.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/omicrontonos.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-ar.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-arinferior.glif ================================================ [File too large to display: 833 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-arsuperior.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-persian.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-persianinferior.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one-persiansuperior.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one.dnom.glif ================================================ [File too large to display: 185 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one.half.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/one.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onedotenleader.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oneeighth.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oneeighth.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onehalf.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onehalf.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oneinferior.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onequarter.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onequarter.glif ================================================ [File too large to display: 480 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/onesuperior.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oopen.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ordfeminine.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ordmasculine.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/orthogonal.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oslash.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/oslashacute.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/otilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/overline.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/p.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pagenumber-ar.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/palochka-cy.glif ================================================ [File too large to display: 194 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/paragraph.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/parenleft-ar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/parenleft.glif ================================================ [File too large to display: 1001 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/parenleft_asterisk.liga.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/parenright-ar.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/parenright.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/partialdiff.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/paseq-hb.glif ================================================ [File too large to display: 465 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/patah-hb.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pe-cy.glif ================================================ [File too large to display: 840 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pe-cy.loclB_G_R_.glif ================================================ [File too large to display: 165 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pe-hb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pedagesh-hb.B_R_A_C_K_E_T_.600.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pedagesh-hb.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.alt.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.fina.alt.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.fina.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.init.alt.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.init.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peh-ar.medi.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.alt.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.fina.alt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.fina.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.init.alt.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.init.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pehM_eemabove-ar.medi.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.alt.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.fina.alt.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.fina.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.init.alt.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.init.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peheh-ar.medi.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/percent-ar.glif ================================================ [File too large to display: 884 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/percent.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/percent_percent.liga.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_equal.liga.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_hyphen.liga.glif ================================================ [File too large to display: 408 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_period.liga.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_period_equal.liga.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_period_less.liga.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_period_period.liga.glif ================================================ [File too large to display: 288 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/period_question.liga.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/periodcentered.glif ================================================ [File too large to display: 209 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/perispomenicomb.glif ================================================ [File too large to display: 303 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/perthousand-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/perthousand.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peseta.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/peso.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/phi.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/pi.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/plus.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/plus_greater.liga.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/plus_plus.liga.glif ================================================ [File too large to display: 227 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/plus_plus_plus.liga.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/plusminus.glif ================================================ [File too large to display: 610 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/prescription.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/product.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/psi.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/published.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/punctuationspace.glif ================================================ [File too large to display: 304 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/q.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qaf-ar.fina.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qaf-ar.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qaf-ar.init.alt.glif ================================================ [File too large to display: 419 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qaf-ar.init.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qaf-ar.medi.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafA_frican-ar.fina.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafA_frican-ar.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafA_frican-ar.init.alt.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafA_frican-ar.init.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafA_frican-ar.medi.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otabove-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otabove-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otabove-ar.init.alt.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otabove-ar.init.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otabove-ar.medi.glif ================================================ [File too large to display: 295 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otbelow-ar.fina.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otbelow-ar.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otbelow-ar.init.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otbelow-ar.medi.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otless-ar.fina.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otless-ar.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otless-ar.init.alt.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otless-ar.init.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafD_otless-ar.medi.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafT_hreedotsabove-ar.fina.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafT_hreedotsabove-ar.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafT_hreedotsabove-ar.init.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qafT_hreedotsabove-ar.medi.glif ================================================ [File too large to display: 301 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qamats-hb.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qamatsqatan-hb.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qof-hb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/qofdagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question_colon.liga.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question_equal.liga.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question_period.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question_question.liga.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/question_question_equal.liga.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/questiondown.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/questiongreek.glif ================================================ [File too large to display: 197 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotedbl.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotedblbase.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotedblleft.glif ================================================ [File too large to display: 259 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotedblright.glif ================================================ [File too large to display: 262 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quoteleft.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotereversed.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quoteright.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotesinglbase.glif ================================================ [File too large to display: 215 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/quotesingle.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/r.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/racute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/radical.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ratio.glif ================================================ [File too large to display: 199 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ray-ar.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rcaron.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rcommaaccent.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rdotbelow.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/recordS_eparatorC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/registered.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/reh-ar.fina.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/reh-ar.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehA_lefabove-ar.fina.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehA_lefabove-ar.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehD_otbelow-ar.fina.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehD_otbelow-ar.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehD_otbelowdotabove-ar.fina.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehD_otbelowdotabove-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehF_ourdots-ar.fina.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehF_ourdots-ar.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehH_amzaabove-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehH_amzaabove-ar.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehL_oop-ar.fina.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehL_oop-ar.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehR_ing-ar.fina.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehR_ing-ar.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehS_troke-ar.fina.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehS_troke-ar.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodots-ar.fina.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodots-ar.glif ================================================ [File too large to display: 706 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.fina.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodotshorizontalaboveT_ahabove-ar.glif ================================================ [File too large to display: 896 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodotsverticalabove-ar.fina.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehT_wodotsverticalabove-ar.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehV_below-ar.fina.glif ================================================ [File too large to display: 840 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehV_below-ar.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehV_invertedabove-ar.fina.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehV_invertedabove-ar.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehv-ar.fina.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rehv-ar.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/replacementC_haracter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/resh-hb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/reshdagesh-hb.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/returnsymbol.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/reversedR_otatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rho.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightA_ndU_pperO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 451 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightA_rrow.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightB_lackP_ointer.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightB_lackS_mallT_riangle.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightB_lackT_riangle.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightB_lock.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightB_lock.stypo.glif ================================================ [File too large to display: 349 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightH_alfB_lackC_ircle.glif ================================================ [File too large to display: 498 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightH_alfB_lackD_iamond.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightH_alfB_lackS_quare.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightO_neE_ighthB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightO_neQ_uarterB_lock.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightO_neQ_uarterB_lock.stypo.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightT_hreeQ_uartersB_lock.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightT_hreeQ_uartersB_lock.stypo.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightW_hiteP_ointer.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rightW_hiteT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ring.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ringA_rabic.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ringbelowcomb.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ringcomb.case.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ringcomb.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rnoon-ar.fina.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rnoon-ar.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rnoon-ar.init.alt.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rnoon-ar.init.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rnoon-ar.medi.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rotatedF_loralH_eartB_ullet.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rreh-ar.fina.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rreh-ar.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ruble.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rupee.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/rupeeI_ndian.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/s.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sacute.loclP_L_K_.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.alt.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.fina.alt.glif ================================================ [File too large to display: 883 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.fina.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.init.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sad-ar.medi.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.alt.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.fina.alt.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.fina.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.init.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedots-ar.medi.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.alt.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.glif ================================================ [File too large to display: 708 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.alt.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 709 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.fina.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.init.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sadT_wodotsbelow-ar.medi.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/samekh-hb.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/samekhdagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/samvat-ar.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/scaron.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/scedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/schwa-cy.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/schwa.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/scircumflex.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/scommaaccent.glif ================================================ [File too large to display: 242 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sdotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/second.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/section.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.alt.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.fina.alt.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.fina.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.init.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seen-ar.medi.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.alt.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.alt.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.fina.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.init.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenD_otbelowD_otabove-ar.medi.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.alt.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.fina.alt.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.fina.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.init.glif ================================================ [File too large to display: 955 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourabove-ar.medi.glif ================================================ [File too large to display: 955 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.alt.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.fina.alt.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.fina.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.init.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenF_ourdotsabove-ar.medi.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.alt.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.alt.glif ================================================ [File too large to display: 900 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 895 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_ahT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.alt.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.alt.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.alt.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.fina.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.init.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_hreedotsbelowthreedots-ar.medi.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotshorizontalabove-ar.fina.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotshorizontalabove-ar.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotshorizontalabove-ar.init.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotshorizontalabove-ar.medi.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotsverticalabove-ar.alt.glif ================================================ [File too large to display: 702 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenT_wodotsverticalabove-ar.fina.alt.glif ================================================ [File too large to display: 712 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.alt.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.fina.alt.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.fina.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.init.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seenV_invertedabove-ar.medi.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit0.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit1.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit4.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit6.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit7.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit8.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/segmentedD_igit9.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/semicolon-ar.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/semicolon.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/semicolon_semicolon.liga.glif ================================================ [File too large to display: 247 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-ar.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-arinferior.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-arsuperior.glif ================================================ [File too large to display: 877 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persian.glif ================================================ [File too large to display: 509 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persian.urdu.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persian.urduinferior.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persian.urdusuperior.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persianinferior.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven-persiansuperior.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven.dnom.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seven.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seveneighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seveneighths.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/seveninferior.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sevensuperior.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sha-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sha-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shadda-ar.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shadedark.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shadedark.stypo.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shadelight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shadelight.stypo.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shademedium.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shademedium.stypo.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shcha-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shcha-cy.loclB_G_R_.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.alt.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.fina.alt.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.fina.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.init.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheen-ar.medi.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.alt.glif ================================================ [File too large to display: 968 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.fina.alt.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.fina.glif ================================================ [File too large to display: 968 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.init.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheenD_otbelow-ar.medi.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sheqel.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shha-cy.glif ================================================ [File too large to display: 183 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shiftI_nC_ontrol.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shiftI_nC_ontrol.ss20.glif ================================================ [File too large to display: 823 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shiftO_utC_ontrol.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shiftO_utC_ontrol.ss20.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shin-hb.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shindagesh-hb.glif ================================================ [File too large to display: 851 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shindageshshindot-hb.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shindageshsindot-hb.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shindot-hb.glif ================================================ [File too large to display: 895 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shinshindot-hb.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/shinsindot-hb.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sigma.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sigmafinal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sindhiampersand-ar.glif ================================================ [File too large to display: 601 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sindhipostpositionmen-ar.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sindot-hb.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-ar.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-arinferior.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-arsuperior.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-persian.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-persianinferior.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six-persiansuperior.glif ================================================ [File too large to display: 886 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six.dnom.glif ================================================ [File too large to display: 185 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/six.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sixinferior.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sixsuperior.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_asterisk.liga.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_backslash.liga.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_equal_end.seq.glif ================================================ [File too large to display: 579 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_equal_middle.seq.glif ================================================ [File too large to display: 219 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_equal_start.seq.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_greater.liga.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_slash.liga.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_slash_equal_end.seq.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_slash_equal_middle.seq.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_slash_equal_start.seq.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/slash_slash_slash.liga.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/softhyphen.glif ================================================ [File too large to display: 191 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/softsign-cy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/softsign-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/space.glif ================================================ [File too large to display: 155 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/spaceC_ontrol.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/spadeB_lackS_uit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/startO_fH_eadingC_ontrol.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/startO_fH_eadingC_ontrol.ss20.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/startO_fT_extC_ontrol.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/startO_fT_extC_ontrol.ss20.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sterling.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/strictlyequivalentto.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/substituteC_ontrol.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/substituteC_ontrol.ss20.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/substituteF_ormT_woC_ontrol.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sukun-ar.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/summation.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/sunW_ithR_ays.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/synchronousI_dleC_ontrol.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/synchronousI_dleC_ontrol.ss20.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/t.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tah-ar.fina.glif ================================================ [File too large to display: 865 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tah-ar.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tah-ar.init.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tah-ar.medi.glif ================================================ [File too large to display: 870 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_hreedots-ar.fina.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_hreedots-ar.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_hreedots-ar.init.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_hreedots-ar.medi.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_wodotsabove-ar.fina.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_wodotsabove-ar.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_wodotsabove-ar.init.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahT_wodotsabove-ar.medi.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahbelow-ar.glif ================================================ [File too large to display: 449 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tahcenter-ar.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tau.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tav-hb.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tavdagesh-hb.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tbar.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcaron.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcedilla.glif ================================================ [File too large to display: 233 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheh-ar.fina.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheh-ar.glif ================================================ [File too large to display: 407 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheh-ar.init.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheh-ar.medi.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tchehD_otabove-ar.fina.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tchehD_otabove-ar.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tchehD_otabove-ar.init.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tchehD_otabove-ar.medi.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheheh-ar.fina.glif ================================================ [File too large to display: 376 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheheh-ar.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheheh-ar.init.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcheheh-ar.medi.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tcommaaccent.glif ================================================ [File too large to display: 241 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/te-cy.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/te-cy.loclB_G_R_.glif ================================================ [File too large to display: 165 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.alt.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.fina.alt.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.fina.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.init.alt.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.init.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teh-ar.medi.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehM_arbuta-ar.fina.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehM_arbuta-ar.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehM_arbutagoal-ar.fina.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehM_arbutagoal-ar.glif ================================================ [File too large to display: 319 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.alt.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.fina.alt.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.fina.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.init.alt.glif ================================================ [File too large to display: 1022 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.init.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehR_ing-ar.medi.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.alt.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.fina.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.fina.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.init.alt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.init.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_ehabove-ar.medi.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.alt.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.fina.alt.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.fina.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.init.alt.glif ================================================ [File too large to display: 744 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.init.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsdown-ar.medi.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.alt.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.alt.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.fina.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.init.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehT_hreedotsupbelow-ar.medi.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tehabove-ar.small.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.alt.glif ================================================ [File too large to display: 674 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.fina.alt.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.fina.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.init.alt.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.init.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/teheh-ar.medi.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tenge.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tesh.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tet-hb.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tetdagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thal-ar.fina.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thal-ar.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thalA_lefabove-ar.fina.glif ================================================ [File too large to display: 769 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thalA_lefabove-ar.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.alt.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.fina.alt.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.fina.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.init.alt.glif ================================================ [File too large to display: 728 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.init.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theh-ar.medi.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/theta.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thetamod.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thorn.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/thousandseparator-ar.glif ================================================ [File too large to display: 612 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-ar.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-arinferior.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-arsuperior.glif ================================================ [File too large to display: 877 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-persian.glif ================================================ [File too large to display: 310 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-persian.small01.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-persianinferior.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three-persiansuperior.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three.dnom.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three.half.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/three.numr.glif ================================================ [File too large to display: 174 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedots-ar.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsdownabove-ar.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsdownbelow-ar.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsdowncenter-ar.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsupabove-ar.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsupabove-ar.v2.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsupbelow-ar.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threedotsupcenter-ar.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threeeighths.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threeeighths.glif ================================================ [File too large to display: 470 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threeinferior.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threequarters.B_R_A_C_K_E_T_.500.glif ================================================ [File too large to display: 808 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threequarters.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/threesuperior.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tilde.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tildecomb.case.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tildecomb.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tonos.case.glif ================================================ [File too large to display: 166 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tonos.glif ================================================ [File too large to display: 189 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/topH_alfB_lackC_ircle.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/topH_alfB_lackD_iamond.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/topH_alfW_hiteS_quare.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/topR_ightH_alfW_hiteS_quare.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/trademark.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tsadi-hb.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tsadidagesh-hb.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tse-cy.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tse-cy.loclB_G_R_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tshe-cy.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.alt.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.fina.alt.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.fina.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.init.alt.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.init.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteh-ar.medi.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.alt.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.fina.alt.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.fina.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.init.alt.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.init.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tteheh-ar.medi.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/tugrik.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-arinferior.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-arsuperior.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-persian.glif ================================================ [File too large to display: 306 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-persian.small01.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-persianinferior.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two-persiansuperior.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two.dnom.glif ================================================ [File too large to display: 185 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two.half.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/two.numr.glif ================================================ [File too large to display: 170 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotshorizontalabove-ar.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotshorizontalabove-ar.v2.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotshorizontalbelow-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotshorizontalcenter-ar.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotstahbelow-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotstahcenter-ar.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotsverticalabove-ar.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotsverticalbelow-ar.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twodotsverticalcenter-ar.glif ================================================ [File too large to display: 489 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twoinferior.glif ================================================ [File too large to display: 212 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/twosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/u-ar.fina.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/u-ar.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/u-cy.glif ================================================ [File too large to display: 180 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/u.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uH_amzaabove-ar.fina.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uH_amzaabove-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ubreve.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ucircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/udieresis.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/udotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ugrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhookabove.glif ================================================ [File too large to display: 224 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhorn.glif ================================================ [File too large to display: 632 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhornacute.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhorndotbelow.glif ================================================ [File too large to display: 244 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhorngrave.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhornhookabove.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhorntilde.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uhungarumlaut.glif ================================================ [File too large to display: 243 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/umacron-cy.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/umacron.glif ================================================ [File too large to display: 232 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscore.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscore_end.seq.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscore_middle.seq.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscore_start.seq.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscore_underscore.liga.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/underscoredbl.glif ================================================ [File too large to display: 248 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_3.fina.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_3.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_3.init.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_3.medi.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_4.fina.glif ================================================ [File too large to display: 1022 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_4.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_4.init.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_4.medi.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uni08B_9.fina.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uniF_B_C_0.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/unitS_eparatorC_ontrol.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uogonek.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upA_rrow.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upB_lackS_mallT_riangle.glif ================================================ [File too large to display: 355 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upB_lackT_riangle.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upD_ashA_rrow.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upD_ownA_rrow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upD_ownbaseA_rrow.glif ================================================ [File too large to display: 402 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upL_eftH_alfB_lackT_riangle.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upR_ightH_alfB_lackT_riangle.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upW_hiteS_mallT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upW_hiteT_riangle.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upW_hiteT_riangleW_ithD_ot.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperA_ndL_owerO_neE_ightB_lock.stypo.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperF_iveE_ighthsB_lock.glif ================================================ [File too large to display: 386 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperF_iveE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 366 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperH_alfA_rc.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperH_alfB_lock.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperH_alfB_lock.stypo.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperH_alfI_nverseW_hiteC_ircle.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 460 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_ndU_pperR_ightA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftA_rc.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftB_lackT_riangle.glif ================================================ [File too large to display: 356 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftB_lock.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftB_lock.stypo.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftD_iagonalH_alfB_lackS_quare.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftT_riangle.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperL_eftW_hiteC_ircle.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperO_neE_ighthB_lock.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperO_neE_ighthB_lock.stypo.glif ================================================ [File too large to display: 354 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightA_ndL_owerL_eftA_ndL_owerR_ightB_lock.stypo.glif ================================================ [File too large to display: 461 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightA_ndL_owerL_eftB_lock.stypo.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightA_rc.glif ================================================ [File too large to display: 522 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightB_lackC_ircle.glif ================================================ [File too large to display: 436 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightB_lackT_riangle.glif ================================================ [File too large to display: 359 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightB_lock.glif ================================================ [File too large to display: 370 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightB_lock.stypo.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightQ_uadrantW_hiteC_ircle.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperR_ightT_riangle.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperS_evenE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperS_evenE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperT_hreeE_ighthsB_lock.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperT_hreeE_ighthsB_lock.stypo.glif ================================================ [File too large to display: 369 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperlefttolowerrightF_illS_quare.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upperrighttolowerleftF_illS_quare.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upsilon-latin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upsilon.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upsilondieresis.glif ================================================ [File too large to display: 246 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upsilondieresistonos.glif ================================================ [File too large to display: 253 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/upsilontonos.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/uring.glif ================================================ [File too large to display: 228 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ushort-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ustraight-cy.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ustraightstroke-cy.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/utilde.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/v.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vabove-ar.glif ================================================ [File too large to display: 492 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vav-hb.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vavdagesh-hb.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vavholam-hb.glif ================================================ [File too large to display: 348 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ve-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ve-ar.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ve-cy.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ve-cy.loclB_G_R_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vectorO_rC_rossP_roduct.glif ================================================ [File too large to display: 203 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.alt.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.fina.alt.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.fina.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.init.alt.glif ================================================ [File too large to display: 413 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.init.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/veh-ar.medi.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/venus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verseC_omma-ar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalB_isectingL_ineW_hiteS_quare.glif ================================================ [File too large to display: 446 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalF_illC_ircle.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalF_illS_quare.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-2.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-2.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-3.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-3.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-4.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-4.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-5.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-5.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-6.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-6.stypo.glif ================================================ [File too large to display: 361 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-7.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalO_neE_ighthB_lock-7.stypo.glif ================================================ [File too large to display: 363 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalT_abulationC_ontrol.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/verticalT_abulationC_ontrol.ss20.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vhook.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vinvertedabove-ar.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/vturned.glif ================================================ [File too large to display: 195 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/w.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/w_w_w.liga.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wasla-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wavyhamzaabove-ar.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wavyhamzabelow-ar.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/waw-ar.fina.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/waw-ar.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawD_otabove-ar.fina.glif ================================================ [File too large to display: 664 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawD_otabove-ar.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawD_otcenter-ar.fina.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawD_otcenter-ar.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawH_amzaabove-ar.fina.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawH_amzaabove-ar.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawS_traight-ar.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_hreeA_bove-ar.fina.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_hreeA_bove-ar.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_woabove-ar.fina.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_woabove-ar.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_wodots-ar.fina.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawT_wodots-ar.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawring-ar.fina.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wawring-ar.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wcircumflex.glif ================================================ [File too large to display: 240 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wdieresis.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wgrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteB_ullet.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteC_ircle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteD_iamond.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteH_exagon.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteH_orizontalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteI_nB_lackS_quare.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteL_argeS_quare.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteL_owerL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteL_owerR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteM_ediumD_iamond.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteM_ediumL_ozenge.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteP_arallelogram.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteP_entagon.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteR_ect.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteR_oundedC_ornersS_quare.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteS_mallL_ozenge.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteS_mallS_quare.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteS_milingF_ace.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteS_quare.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteU_pperL_eftQ_uadrantS_quare.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteU_pperR_ightQ_uadrantS_quare.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteV_erticalE_llipse.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteV_erticalR_ect.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/whiteV_erysmallS_quare.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/wmod.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/won.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/x.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/x.multiply.glif ================================================ [File too large to display: 169 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/xi.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/y.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ycircumflex.glif ================================================ [File too large to display: 239 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ydieresis.glif ================================================ [File too large to display: 235 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ydotbelow.glif ================================================ [File too large to display: 236 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/year-ar.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.fina.alt.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.fina.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.init.alt.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.init.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-ar.medi.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.fina.alt.glif ================================================ [File too large to display: 320 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.fina.glif ================================================ [File too large to display: 298 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.glif ================================================ [File too large to display: 312 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.init.alt.glif ================================================ [File too large to display: 298 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.init.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeh-farsi.medi.glif ================================================ [File too large to display: 290 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.fina.alt.glif ================================================ [File too large to display: 403 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.fina.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.init.alt.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.init.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehF_ourbelow-farsi.medi.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.fina.alt.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.fina.glif ================================================ [File too large to display: 681 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.init.alt.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.init.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehH_amzaabove-ar.medi.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.fina.alt.glif ================================================ [File too large to display: 923 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.fina.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.glif ================================================ [File too large to display: 896 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.init.alt.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.init.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehK_ashmiri-ar.medi.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehR_ohingya-ar.fina.glif ================================================ [File too large to display: 404 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehR_ohingya-ar.glif ================================================ [File too large to display: 830 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehR_ohingya-ar.isol.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_ail-ar.fina.alt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_ail-ar.fina.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_ail-ar.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.fina.alt.glif ================================================ [File too large to display: 1013 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.fina.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.init.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.init.glif ================================================ [File too large to display: 1009 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreeabove-farsi.medi.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.fina.alt.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.fina.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.init.glif ================================================ [File too large to display: 1009 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsabove-farsi.medi.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.fina.alt.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.fina.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.init.alt.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.init.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_hreedotsbelow-ar.medi.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.fina.alt.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.fina.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.init.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.init.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_woabove-farsi.medi.glif ================================================ [File too large to display: 831 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.fina.alt.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.fina.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.init.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsabove-farsi.medi.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.fina.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.glif ================================================ [File too large to display: 693 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.alt.glif ================================================ [File too large to display: 809 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.init.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowD_otabove-ar.medi.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.fina.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.init.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowH_amzaabove-ar.medi.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.fina.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.alt.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.init.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehT_wodotsbelowN_oonabove-ar.medi.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.fina.alt.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.fina.glif ================================================ [File too large to display: 669 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.init.alt.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.init.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_above-ar.medi.glif ================================================ [File too large to display: 977 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.fina.alt.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.fina.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.init.alt.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.init.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehV_inverted-farsi.medi.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarree-ar.fina.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarree-ar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeH_amzaabove-ar.fina.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeH_amzaabove-ar.glif ================================================ [File too large to display: 698 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_hreeabove-ar.fina.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_hreeabove-ar.glif ================================================ [File too large to display: 715 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_hreeabove-ar.init.alt.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_hreeabove-ar.init.glif ================================================ [File too large to display: 1013 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_hreeabove-ar.medi.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_woabove-ar.fina.glif ================================================ [File too large to display: 757 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_woabove-ar.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_woabove-ar.init.alt.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_woabove-ar.init.glif ================================================ [File too large to display: 835 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yehbarreeT_woabove-ar.medi.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yen.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yeru-cy.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ygrave.glif ================================================ [File too large to display: 230 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yhookabove.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yi-cy.glif ================================================ [File too large to display: 238 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ymacron.glif ================================================ [File too large to display: 231 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ymod.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yod-hb.glif ================================================ [File too large to display: 950 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yoddagesh-hb.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ytilde.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yu-ar.fina.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/yu-ar.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/z.glif ================================================ [File too large to display: 878 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zacute.glif ================================================ [File too large to display: 229 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zacute.loclP_L_K_.glif ================================================ [File too large to display: 221 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zah-ar.fina.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zah-ar.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zah-ar.init.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zah-ar.medi.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zain-ar.fina.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zain-ar.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zainV_I_nvertedabove-ar.fina.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zainV_I_nvertedabove-ar.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zayin-hb.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zayindagesh-hb.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zcaron.glif ================================================ [File too large to display: 216 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zdotaccent.glif ================================================ [File too large to display: 237 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ze-cy.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/ze-cy.loclB_G_R_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-ar.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-arinferior.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-arsuperior.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-persian.glif ================================================ [File too large to display: 308 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-persianinferior.glif ================================================ [File too large to display: 555 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero-persiansuperior.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero.dnom.glif ================================================ [File too large to display: 187 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero.numr.glif ================================================ [File too large to display: 172 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zero.zero.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zeroinferior.glif ================================================ [File too large to display: 214 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zerosuperior.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zeta.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zhe-cy.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zhe-cy.loclB_G_R_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zhedescender-cy.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs/zmod.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/allah-ar.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/bar_braceright.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/braceleft.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/braceleft_bar.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/braceright.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/braceright_numbersign.liga.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 723 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/glyphs.public.background/numbersign_braceleft.liga.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/groups.plist ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/CascadiaCode-Regular.ufo/lib.plist ================================================ [File too large to display: 429.3 KB] ================================================ FILE: sources/CascadiaCode-Regular.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/CascadiaCode_variable.designspace ================================================ [File too large to display: 11.7 KB] ================================================ FILE: sources/CascadiaCode_variable_italic.designspace ================================================ [File too large to display: 12.7 KB] ================================================ FILE: sources/features/aalt.fea ================================================ [File too large to display: 301 B] ================================================ FILE: sources/features/aalt_italic.fea ================================================ [File too large to display: 287 B] ================================================ FILE: sources/features/calt.fea ================================================ [File too large to display: 44.9 KB] ================================================ FILE: sources/features/calt_italic.fea ================================================ [File too large to display: 38.5 KB] ================================================ FILE: sources/features/calt_italic_mono.fea ================================================ [File too large to display: 942 B] ================================================ FILE: sources/features/calt_mono.fea ================================================ [File too large to display: 139 B] ================================================ FILE: sources/features/case.fea ================================================ [File too large to display: 572 B] ================================================ FILE: sources/features/ccmp.fea ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/features/figures.fea ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/features/figures_italic.fea ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/features/fina.fea ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/features/frac.fea ================================================ [File too large to display: 823 B] ================================================ FILE: sources/features/header.fea ================================================ [File too large to display: 70.7 KB] ================================================ FILE: sources/features/header_italic.fea ================================================ [File too large to display: 36.1 KB] ================================================ FILE: sources/features/init.fea ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/features/locl.fea ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/features/locl_italic.fea ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/features/medi.fea ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/features/ordn.fea ================================================ [File too large to display: 220 B] ================================================ FILE: sources/features/rclt.fea ================================================ [File too large to display: 38.2 KB] ================================================ FILE: sources/features/rclt_PL.fea ================================================ [File too large to display: 39.2 KB] ================================================ FILE: sources/features/rlig.fea ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/features/salt.fea ================================================ [File too large to display: 848 B] ================================================ FILE: sources/features/ss01.fea ================================================ [File too large to display: 886 B] ================================================ FILE: sources/features/ss02.fea ================================================ [File too large to display: 109 B] ================================================ FILE: sources/features/ss03.fea ================================================ [File too large to display: 175 B] ================================================ FILE: sources/features/ss19.fea ================================================ [File too large to display: 75 B] ================================================ FILE: sources/features/ss20.fea ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/features/zero.fea ================================================ [File too large to display: 58 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/features.fea ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/fontinfo.plist ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/contents.plist ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/layerinfo.plist ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0A_0.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0A_0.stypo.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0A_1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0A_2.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0A_3.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_0.glif ================================================ [File too large to display: 756 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_0.stypo.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_1.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_1.stypo.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_2.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_2.stypo.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_3.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_3.stypo.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_4.glif ================================================ [File too large to display: 899 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_4.stypo.glif ================================================ [File too large to display: 881 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_5.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_5.stypo.glif ================================================ [File too large to display: 951 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_6.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_6.stypo.glif ================================================ [File too large to display: 884 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_7.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_7.stypo.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_8.glif ================================================ [File too large to display: 757 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_8.stypo.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_9.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_9.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_A_.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_A_.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_B_.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_B_.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_C_.glif ================================================ [File too large to display: 757 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_C_.stypo.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_D_.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_D_.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_E_.glif ================================================ [File too large to display: 766 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_E_.stypo.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_F_.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0B_F_.stypo.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_0.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_0.stypo.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_1.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_1.stypo.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_2.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_2.stypo.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_3.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_3.stypo.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_4.glif ================================================ [File too large to display: 20.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_4.stypo.glif ================================================ [File too large to display: 20.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_5.glif ================================================ [File too large to display: 21.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_5.stypo.glif ================================================ [File too large to display: 20.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_6.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_6.stypo.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_7.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_7.stypo.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_8.glif ================================================ [File too large to display: 20.3 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_8.stypo.glif ================================================ [File too large to display: 18.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_A_.glif ================================================ [File too large to display: 20.3 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_A_.stypo.glif ================================================ [File too large to display: 18.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_C_.stypo.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_D_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_D_.stypo.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_E_.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_E_.stypo.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_F_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0C_F_.stypo.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_0.glif ================================================ [File too large to display: 21.3 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_1.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_1.stypo.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_2.glif ================================================ [File too large to display: 808 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_2.stypo.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_4.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs/uniE_0D_4.stypo.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 571 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0B_4.glif ================================================ [File too large to display: 310 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0B_6.glif ================================================ [File too large to display: 316 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0C_0.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0C_0.stypo.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0C_8.stypo.glif ================================================ [File too large to display: 18.2 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/glyphs.public.background/uniE_0C_A_.glif ================================================ [File too large to display: 20.1 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/lib.plist ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/NerdfontsPL-Regular.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/Nerdfonts_PL.glyphs ================================================ [File too large to display: 235.9 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/fontinfo.plist ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/_notdef.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/contents.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uni2630.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_0.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_1.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_2.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_3.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_0.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_1.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_2.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_3.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_4.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_5.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_6.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_7.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_8.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_9.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_A_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_B_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_C_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_D_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_E_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_F_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_0.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_1.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_2.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_3.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_4.glif ================================================ [File too large to display: 28.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_5.glif ================================================ [File too large to display: 28.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_6.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_7.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_8.glif ================================================ [File too large to display: 33.9 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_A_.glif ================================================ [File too large to display: 34.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_C_.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_D_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_E_.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_F_.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_0.glif ================================================ [File too large to display: 18.1 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_1.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_2.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_4.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/lib.plist ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/PowerlineExtraSymbols.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/fontinfo.plist ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_279.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_283.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_303.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_312.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_317.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_329.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_334.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_335.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_366.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_372.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_374.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_376.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_378.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_380.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_382.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_383.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_384.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_385.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_386.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_387.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_388.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_389.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_392.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_393.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_395.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_396.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_397.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_398.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_399.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_400.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_402.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_403.glif ================================================ [File too large to display: 14.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_404.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_406.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_407.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_408.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_409.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_410.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_411.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_412.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_413.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_414.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_415.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_416.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_417.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_418.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_419.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_422.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_423.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_424.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_425.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_426.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_427.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_428.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_429.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_430.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_431.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_432.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_433.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_434.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_438.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_439.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_443.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_444.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_445.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_446.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_447.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_448.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_449.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_451.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_452.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_453.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_454.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_455.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_456.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_457.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_458.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_459.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_460.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_461.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_462.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_463.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_464.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_466.glif ================================================ [File too large to display: 19.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_467.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_469.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_470.glif ================================================ [File too large to display: 8.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_471.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_472.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_473.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_474.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_475.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_476.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_478.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_479.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_480.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_481.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_482.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_483.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_484.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_485.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_486.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_487.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_488.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_489.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_490.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_491.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_492.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_493.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_494.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_496.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_498.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_499.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_500.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_501.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_502.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_503.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_504.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_505.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_506.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_507.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_508.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_509.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_511.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_512.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_513.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_514.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_515.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_516.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_517.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_518.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_519.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_520.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_521.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_522.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_523.glif ================================================ [File too large to display: 176 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_524.glif ================================================ [File too large to display: 176 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_525.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_526.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_527.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_528.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_529.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_530.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_531.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_532.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_533.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_534.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_535.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_536.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_537.glif ================================================ [File too large to display: 24.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_538.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_539.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_540.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_541.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_542.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_543.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_544.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_545.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_546.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_547.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_548.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_549.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_550.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_551.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_552.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_553.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_554.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_555.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_556.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_557.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_558.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_559.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_560.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_561.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_562.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_563.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_564.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_565.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_566.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_567.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_568.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_569.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_572.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_574.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_575.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_576.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_577.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_578.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_579.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_580.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_581.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_582.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_583.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_584.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_585.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_586.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_587.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_588.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_589.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_590.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_591.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_592.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_593.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_594.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_595.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_596.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_597.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_598.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_602.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_603.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_604.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_607.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_608.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_609.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_610.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_611.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_612.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_613.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_614.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_615.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_616.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_617.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_618.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_619.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_620.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_621.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_622.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_623.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_624.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_625.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_626.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_627.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_628.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/_629.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/adjust.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/adn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/align_center.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/align_justify.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/align_left.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/align_right.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ambulance.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/anchor.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/android.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/angle_down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/angle_left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/angle_right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/angle_up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/apple.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/archive.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/arrow_circle_alt_left.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/arrow_down.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/arrow_left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/arrow_right.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/arrow_up.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/backward.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ban_circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bar_chart.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/barcode.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/beer.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bell.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bell_alt.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bitbucket_sign.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bold.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bolt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/book.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bookmark_empty.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/btc.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bug.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/building.glif ================================================ [File too large to display: 14.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bullhorn.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/calendar.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/calendar_empty.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/camera.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/camera_retro.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/caret_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/caret_left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/caret_right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/caret_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/certificate.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/check.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/check_empty.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/check_minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/check_sign.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_sign_down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_sign_left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_sign_right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_sign_up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/chevron_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle_arrow_down.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle_arrow_left.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle_arrow_right.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle_arrow_up.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/circle_blank.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cloud_download.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cloud_upload.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/code.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/code_fork.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/coffee.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cog.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cogs.glif ================================================ [File too large to display: 13.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/collapse.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/collapse_alt.glif ================================================ [File too large to display: 192 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/collapse_top.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/columns.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/comment_alt.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/comments.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/comments_alt.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/compass.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/contents.plist ================================================ [File too large to display: 37.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/copy.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/credit_card.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/crop.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/css3.glif ================================================ [File too large to display: 900 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/cut.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/dashboard.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/desktop.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/dot_circle_alt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/double_angle_down.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/double_angle_left.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/double_angle_right.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/double_angle_up.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/download.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/download_alt.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/dribble.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/dropbox.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/edit.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/edit_sign.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/eject.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ellipsis_horizontal.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ellipsis_vertical.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/envelope.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/envelope_alt.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/eur.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/exchange.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/exclamation.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/exclamation_sign.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/expand_alt.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/external_link.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/eye_close.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/eye_open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f0fe.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f171.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f1a1.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f1a4.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f1ab.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f1f3.glif ================================================ [File too large to display: 15.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f1fc.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f210.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f212.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f260.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f261.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f263.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/f27e.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/facebook.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/facebook_sign.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/facetime_video.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fast_backward.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fast_forward.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/female.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fighter_jet.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/file.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/file_alt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/file_text.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/file_text_alt.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/film.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fire.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fire_extinguisher.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/flag.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/flag_alt.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/flag_checkered.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/flickr.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/folder_close.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/folder_close_alt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/folder_open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/folder_open_alt.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/font.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/food.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/forward.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/foursquare.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/frown.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/fullscreen.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/gamepad.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/gbp.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/gift.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/github.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/github_alt.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/github_sign.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/gittip.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/glass.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/globe.glif ================================================ [File too large to display: 19.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/google_plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/google_plus_sign.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/group.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/h_sign.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hand_down.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hand_left.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hand_right.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hand_up.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hdd.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/headphones.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/heart.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/heart_empty.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/home.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/hospital.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/html5.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/indent_left.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/indent_right.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/info_sign.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/inr.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/instagram.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/italic.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/jpy.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/key.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/keyboard.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/krw.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/laptop.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/leaf.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/legal.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/lemon.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/level_down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/level_up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/light_bulb.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/link.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/linkedin.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/linkedin_sign.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/linux.glif ================================================ [File too large to display: 16.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/list.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/list_alt.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/location_arrow.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/lock.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/long_arrow_down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/long_arrow_left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/long_arrow_right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/long_arrow_up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/magic.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/magnet.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/male.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/map_marker.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/maxcdn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/medkit.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/meh.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/microphone.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/microphone_off.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/minus.glif ================================================ [File too large to display: 903 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/minus_sign.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/minus_sign_alt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/mobile_phone.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/money.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/move.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/music.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ok.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ok_circle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ok_sign.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ol.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/paper_clip.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/paste.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/pause.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/pencil.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/phone.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/phone_sign.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/picture.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/pinterest.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/pinterest_sign.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/plane.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/play.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/play_circle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/play_sign.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/plus_sign.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/plus_square_o.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/print.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/pushpin.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/puzzle_piece.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/qrcode.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/question.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/question_sign.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/quote_left.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/quote_right.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/random.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/refresh.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/remove_circle.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/remove_sign.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/renren.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/reorder.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/repeat.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/reply.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/reply_all.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/resize_full.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/resize_horizontal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/resize_small.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/resize_vertical.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/retweet.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/road.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/rss.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/rub.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/save.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/screenshot.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/search.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/share.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/share_alt.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/share_sign.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/shield.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/shopping_cart.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sign_blank.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/signal.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/signin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/signout.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sitemap.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/skype.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/smile.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_by_alphabet.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_by_attributes.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_by_attributes_alt.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_by_order.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_by_order_alt.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sort_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/spinner.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/stack_exchange.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/stackexchange.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/star_empty.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/star_half.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/star_half_empty.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/step_backward.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/step_forward.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/stethoscope.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/stop.glif ================================================ [File too large to display: 913 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/strikethrough.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/subscript.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/suitcase.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/sun.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/superscript.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/table.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tablet.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tag.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tags.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tasks.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/terminal.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/text_height.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/text_width.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/th.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/th_large.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/th_list.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/thumbs_down_alt.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/thumbs_up_alt.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ticket.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/time.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tint.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/trash.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/trello.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/trophy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/truck.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tumblr.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/tumblr_sign.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/twitter_sign.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/ul.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/underline.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/undo.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1A_0.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1B_1.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1C_0.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1C_1.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_0.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_1.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_2.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_5.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_6.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1D_7.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1E_0.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_1F_0.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_280.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_281.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_285.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_286.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_0.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_1.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_2.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_3.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_4.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_5.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_6.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_7.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_8.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_9.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_A_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_B_.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_C_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_D_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2A_E_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_0.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_1.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_2.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_3.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_4.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_5.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_6.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_7.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_8.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_9.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_A_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_B_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_C_.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_D_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2B_E_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_0.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_1.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_2.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_3.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_4.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_5.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_6.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_8.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_9.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_A_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_B_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_C_.glif ================================================ [File too large to display: 9.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_D_.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2C_E_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_0.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_1.glif ================================================ [File too large to display: 911 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_2.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_3.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_4.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_5.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_6.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_8.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_9.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_A_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_B_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_C_.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_D_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2D_E_.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/uniF_2E_0.glif ================================================ [File too large to display: 9.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/unlink.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/unlock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/unlock_alt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/upload.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/upload_alt.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/usd.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/user.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/user_md.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/venus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/vimeo_square.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/vk.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/volume_down.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/volume_off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/volume_up.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/warning_sign.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/weibo.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/windows.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/wrench.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/xing.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/xing_sign.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/youtube.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/youtube_play.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/youtube_sign.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/zoom_in.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/glyphs/zoom_out.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/lib.plist ================================================ [File too large to display: 78.1 KB] ================================================ FILE: sources/nerdfonts/full/original/FontAwesome.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/fontinfo.plist ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ab-testing.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/abacus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/abjad-arabic.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/abjad-hebrew.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/abugida-devanagari.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/abugida-thai.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-network-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-network.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/access-point.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-alert-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-down-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-left-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-right-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-up-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-up.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-box-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-box-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cancel-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cancel.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cash-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-check.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-child-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-child-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-child.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-circle-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-clock-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cog-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cog.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-convert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-convert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cowboy-hat-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-cowboy-hat.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-details-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-details.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-edit-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-edit.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-eye-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-eye.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-filter-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-filter.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-group-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-group.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-hard-hat-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-hard-hat.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-heart-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-injury-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-injury.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-key-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-key.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-open-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-open.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-lock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-check-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-check.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-minus-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-minus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-plus-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-plus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-remove-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-music-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-music.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-network.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-question-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-reactivate-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-reactivate.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-school-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-school.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-search-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-settings-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-star-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-star.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-circle-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-circle.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-switch-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-switch.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-sync-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-sync.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-hat-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-hat.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-off-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-woman.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-tie.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-voice-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-voice.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-wrench-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account-wrench.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/account.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/adjust.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/advertisements-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/advertisements.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-conditioner.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-filter.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-horn.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-humidifier-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-humidifier.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/air-purifier.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airbag.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airballoon-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airballoon.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-clock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-cog.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-landing.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-marker.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane-takeoff.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airplane.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/airport.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-bell.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-note-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-note.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-panel-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-panel.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm-snooze.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alarm.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/album.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-decagram-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-decagram.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-minus.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagon-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagon.glif ================================================ [File too large to display: 961 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagram-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagram.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-outline.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-remove-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-remove.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-rhombus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert-rhombus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alert.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alien-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alien.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-distribute.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-left.glif ================================================ [File too large to display: 807 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-right.glif ================================================ [File too large to display: 811 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-bottom.glif ================================================ [File too large to display: 805 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-distribute.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-top.glif ================================================ [File too large to display: 805 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive-box-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/allergy.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i.glif ================================================ [File too large to display: 750 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l.glif ================================================ [File too large to display: 492 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p.glif ================================================ [File too large to display: 934 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v.glif ================================================ [File too large to display: 535 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alpha.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-aurebesh.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-cyrillic.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-greek.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-latin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-piqad.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-tengwar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-variant-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/altimeter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ambulance.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ammunition.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ampersand.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/amplifier-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/amplifier.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/anchor.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/android-messages.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/android-studio.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/android.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/angle-acute.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/angle-obtuse.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/angle-right.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/angular.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/angularjs.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/animation-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/animation-play-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/animation-play.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/animation.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ansible.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/antenna.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/anvil.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apache-kafka.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/api-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/api.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-finder.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-icloud.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-ios.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-caps.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-command.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-control.glif ================================================ [File too large to display: 498 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-option.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-shift.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple-safari.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apple.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-array-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-array.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-braces-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-braces.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-brackets-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-brackets.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-cog-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-cog.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-export.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-import.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-parentheses-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-parentheses.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-variable-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application-variable.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/application.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/approximately-equal-box.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/approximately-equal.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apps-box.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/apps.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arch.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-down-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-down.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-up-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-up.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-cancel-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-cancel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-cog.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-eye-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-eye.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-open-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-music-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-music.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-refresh-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-refresh.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-search-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-search.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-settings-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-star-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-star.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-sync-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/archive.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arm-flex-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arm-flex.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrange-bring-forward.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrange-bring-to-front.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrange-send-backward.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrange-send-to-back.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-all.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-outline.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thick.glif ================================================ [File too large to display: 628 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thin.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-outline.glif ================================================ [File too large to display: 885 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thick.glif ================================================ [File too large to display: 630 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thin.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right.glif ================================================ [File too large to display: 616 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-down.glif ================================================ [File too large to display: 859 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-left.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-right.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-up.glif ================================================ [File too large to display: 859 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-auto-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-auto.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-outline.glif ================================================ [File too large to display: 870 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-drop-circle.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-left-bold.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-left.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-right-bold.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-right.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thick.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thin.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-down.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-horizontal.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-left.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-right.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-up.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-vertical.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-horizontal-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-outline.glif ================================================ [File too large to display: 872 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bottom-bold.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bottom.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-drop-circle.glif ================================================ [File too large to display: 944 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right-bold-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right-bold.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right.glif ================================================ [File too large to display: 828 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thick.glif ================================================ [File too large to display: 613 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thin.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-top-bold.glif ================================================ [File too large to display: 914 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-top.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 601 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-projectile-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-projectile.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-outline.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bottom-bold.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bottom.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-drop-circle.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thick.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thin.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-top-bold.glif ================================================ [File too large to display: 914 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-top.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-split-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-split-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-outline.glif ================================================ [File too large to display: 877 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bottom-right-bold.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bottom-right.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thick.glif ================================================ [File too large to display: 621 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thin.glif ================================================ [File too large to display: 534 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left.glif ================================================ [File too large to display: 610 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-outline.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bottom-left-bold.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bottom-left.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thick.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thin.glif ================================================ [File too large to display: 536 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right.glif ================================================ [File too large to display: 612 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-left-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-right-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-bottom-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-bottom.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-top-bold.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-top.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-bottom-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-bottom.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-top-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-top.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-left-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-right-bold.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-outline.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold.glif ================================================ [File too large to display: 521 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down-bold-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down-bold.glif ================================================ [File too large to display: 663 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down.glif ================================================ [File too large to display: 821 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-drop-circle.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-left-bold.glif ================================================ [File too large to display: 906 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-left.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-right-bold.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-right.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thick.glif ================================================ [File too large to display: 609 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thin-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thin.glif ================================================ [File too large to display: 522 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/arrow-vertical-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/artstation.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/aspect-ratio.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/assistant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/asterisk-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/at.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/atlassian.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/atm.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/atom-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/atom.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-check.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-lock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/attachment.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-rca.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-stereo-minijack.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-xlr.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/audio-video-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/audio-video.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/augmented-reality.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/auto-download.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/auto-fix.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/auto-upload.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/autorenew-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/autorenew.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/av-timer.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/aws.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axe-battle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axe.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow-info.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow-lock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-lock.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-arrow-lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-arrow.glif ================================================ [File too large to display: 728 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-rotate-clockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-rotate-counterclockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-y-arrow-lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-arrow-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-arrow.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-rotate-clockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-rotate-counterclockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-arrow-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-arrow.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-rotate-clockwise.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-rotate-counterclockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/axis.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/babel.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-bottle-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-bottle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-buggy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-carriage-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-carriage.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-face-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby-face.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baby.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backburger.glif ================================================ [File too large to display: 1001 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backspace-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backspace-reverse-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backspace-reverse.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backspace.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/backup-restore.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bacteria-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bacteria.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-alert-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-alert.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-horizontal-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-horizontal.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badge-account.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/badminton.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-checked.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-off-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baguette.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/balcony.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/balloon.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ballot-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ballot-recount-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ballot-recount.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ballot.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bandage.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer-in.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer-out.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bank.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barcode-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barcode-scan.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barcode.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barley-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barley.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barrel-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/barrel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baseball-bat.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baseball-diamond-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baseball-diamond.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/baseball.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-check.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket-unfill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basket.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basketball-hoop-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basketball-hoop.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/basketball.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bat.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bathtub-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bathtub.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-10-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-10.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-20-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-20.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-30-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-30.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-40-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-40.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-50-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-50.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-60-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-60.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-70-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-70.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-80-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-80.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-90-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-90.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-bluetooth.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-variant-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-down-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-up-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-bluetooth-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-bluetooth.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-10.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-100.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-20.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-30.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-40.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-50.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-60.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-70.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-80.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-90.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-high.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-low.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-medium.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-10.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-20.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-30.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-40.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-50.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-60.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-70.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-80.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-90.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-clock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-high.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-low.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-medium.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-negative.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-positive.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-sync-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-sync.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-unknown-bluetooth.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery-unknown.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/battery.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beach.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-question-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-question.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-double-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-double.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-empty.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-king-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-king.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-queen-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-queen.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-single-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed-single.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bee-flower.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bee.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beehive-off-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beehive-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beekeeper.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beer-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beer.glif ================================================ [File too large to display: 872 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-badge-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-badge.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-cancel-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-cancel.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-cog-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-cog.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-plus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-ring-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-ring.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-sleep-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell-sleep.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/beta.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/betamax.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/biathlon.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-basket.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-cargo.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-electric.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-penny-farthing.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bicycle.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bike-fast.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bike.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/billboard.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/billiards-rack.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/billiards.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/binoculars.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bio.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/biohazard.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bird.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bitbucket.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bitcoin.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/black-mesa.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blender-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blender-software.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blender.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds-horizontal-closed.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds-horizontal.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds-open.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds-vertical-closed.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds-vertical.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blinds.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/block-helper.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blood-bag.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-audio.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-connect.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-transfer.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blur-linear.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blur-off.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blur-radial.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/blur.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bolt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bomb-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bomb.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bone-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bone.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-account-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-alert-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-alphabet.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-down-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-left-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-right-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-up-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-cancel-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-cancel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-check.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-clock-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-cog-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-cog.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-cross.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-education-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-education.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-heart-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-information-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-open-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-marker-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-marker.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-multiple-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-music-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-music.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open-blank-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open-page-variant-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open-page-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open-variant.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-play-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-play.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-refresh-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-search-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-variant-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/book.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-box-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-check-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-check.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-minus-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-minus.glif ================================================ [File too large to display: 902 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-multiple-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-multiple.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-music-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-music.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-off-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-off.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-outline.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-plus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-remove-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-remove.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bookshelf.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-alert-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-alert.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-down-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-down.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-up-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-up.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-up-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-up.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boombox.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boomerang.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bootstrap.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-all-variant.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-all.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-bottom-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-bottom.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-color.glif ================================================ [File too large to display: 899 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-horizontal.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-inside.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-left-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-left.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-none-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-none.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-outside.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-right-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-right.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-style.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-top-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-top.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/border-vertical.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-classic-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-classic.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-skull-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-skull.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-wine-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bottle-wine.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bow-arrow.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bow-tie.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bowl-mix-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bowl-mix.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bowl-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bowl.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bowling.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/box-cutter-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/box-cutter.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/box-shadow.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/box.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/boxing-glove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/braille.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brain.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bread-slice-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bread-slice.glif ================================================ [File too large to display: 1009 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bridge.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-account-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-account.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-left-right-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-left-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-up-down-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-up-down.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-clock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-download-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-download.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-eye-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-eye.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-search-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-search.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-upload-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-upload.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-off-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-1.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-2.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-3.glif ================================================ [File too large to display: 857 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-4.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-5.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-6.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-7.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-auto.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brightness-percent.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/broadcast-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/broom.glif ================================================ [File too large to display: 970 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brush-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brush-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brush-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/brush.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bucket-outline.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bucket.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/buffet.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bug-check-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bug-check.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bug-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bug.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bugle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bulkhead-light.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bulldozer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullet.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bulletin-board.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-variant-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullseye-arrow.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bulma.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bunk-bed-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bunk-bed.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-alert.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-articulated-end.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-articulated-front.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-clock.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-double-decker.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-electric.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-marker.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-multiple.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-school.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-side.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop-covered.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop-uncovered.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/bus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/butterfly-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/butterfly.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cabin-a-frame.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cable-data.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cached.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cactus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cake-layered.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cake-variant-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cake-variant.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cake.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calculator-variant-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calculator-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calculator.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-account-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-account.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-arrow-left.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-arrow-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-clock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-clock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-collapse-horizontal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-cursor.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-end.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-expand-horizontal.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-export.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-heart.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-import.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-lock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-month-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-month.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiple-check.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiselect.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-range-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-range.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-refresh-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-refresh.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-star.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-start.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-text-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-text.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-today-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-today.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-begin-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-begin.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-end-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-end.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-weekend-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar-weekend.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/calendar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/call-made.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/call-merge.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/call-missed.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/call-received.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/call-split.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camcorder-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camcorder.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-account.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-burst.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-control.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-document-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-document.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-enhance-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-enhance.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-flip-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-flip.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-front-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-front.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-gopro.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-image.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-iris.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-lock-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-lock.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-marker-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-marker.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-center.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-matrix.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-partial.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-spot.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-off-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-party-mode.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-rear-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-rear.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-retake-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-retake.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-switch-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-timer.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-wireless-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera-wireless.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/camera.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/campfire.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cancel.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candelabra-fire.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candelabra.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candy-off-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candy-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candy-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/candycane.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cannabis-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cannabis.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/caps-lock.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-2-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-3-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-arrow-left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-arrow-right.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-back.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-battery.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-abs.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-fluid-level.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-hold.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-low-pressure.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-parking.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-retarder.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-temperature.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-worn-linings.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-child-seat.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-clock.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-clutch.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-cog.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-connected.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-convertible.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-coolant-level.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-cruise-control.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-defrost-front.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-defrost-rear.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-door-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-door.glif ================================================ [File too large to display: 957 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-electric-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-electric.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-emergency.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-esp.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-estate.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-hatchback.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-info.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-key.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-lifted-pickup.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-light-alert.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-light-dimmed.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-light-fog.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-light-high.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-limousine.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-multiple.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-parking-lights.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-pickup.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-seat-cooler.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-seat-heater.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-seat.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-select.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-settings.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-shift-pattern.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-side.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-speed-limiter.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-sports.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-tire-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-traction-control.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-turbocharger.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-wash.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-windshield-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-windshield.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-wireless.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car-wrench.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/car.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/carabiner.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/caravan.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-star-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-star.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-mail-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-mail.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-phone-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-account-phone.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-settings-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-settings.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-multiple-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-multiple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-plus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-remove-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card-text.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/card.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-club-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-club.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-diamond-outline.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-diamond.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-spade-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-spade.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cards.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/carrot.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-down.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-right.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-up.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-heart.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/case-sensitive-alt.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-100.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-clock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-fast.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-refund.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-register.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cash.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cassette.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-audio-variant.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-audio.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-connected.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-education.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cast.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/castle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cat.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cctv-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cctv.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-fan-light.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-fan.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-multiple-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-multiple.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-outline.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-arrow-down-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-arrow-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-basic.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-charging.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-dock.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-information.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-key.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-link-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-link.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-message-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-message.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-nfc-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-nfc.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-play.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-screenshot.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-sound.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-text.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-wireless.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cellphone.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/centos.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/certificate-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/certificate.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chair-rolling.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chair-school.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chandelier.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/charity.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-arc.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-areaspline-variant.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-areaspline.glif ================================================ [File too large to display: 906 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-bar-stacked.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-bar.glif ================================================ [File too large to display: 889 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-bell-curve-cumulative.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-bell-curve.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-box-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-bubble.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-donut-variant.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-donut.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-gantt.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-histogram.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-line-stacked.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-line-variant.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-line.glif ================================================ [File too large to display: 765 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-multiline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-multiple.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-pie.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-ppf.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-sankey-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-sankey.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-scatter-plot-hexbin.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-scatter-plot.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline-variant-shimmer.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-tree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chart-waterfall.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-processing-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-processing.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-question-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-sleep-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat-sleep.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chat.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-all.glif ================================================ [File too large to display: 869 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-bold.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-circle.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-decagram-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-decagram.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-network.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-outline.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-underline-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-underline-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check-underline.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/check.glif ================================================ [File too large to display: 463 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbook.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-badge-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-badge.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-circle-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-circle.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-off-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-off.glif ================================================ [File too large to display: 943 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank.glif ================================================ [File too large to display: 911 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-intermediate.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle-plus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cheese-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cheese.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chef-hat.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chemical-weapon.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-bishop.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-king.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-knight.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-pawn.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-queen.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chess-rook.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-down.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-left.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-right.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-up.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-down.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-left.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-right.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-up.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-hot-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-hot.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-medium-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-medium.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-mild-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-mild.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chili-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/chip.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/church.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cigar-off.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cigar.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-double.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-expand.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-half-full.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-half.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-medium.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-multiple.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-opacity.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-1.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-2.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-3.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-4.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-5.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-6.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-7.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-8.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circle-small.glif ================================================ [File too large to display: 527 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/circular-saw.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/city-variant-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/city-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/city.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-account-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-account.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-down-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-left-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-left.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-right-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-up-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-clock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-edit-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-file-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-file.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-flow-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-flow.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-list-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-list.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-minus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-off-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-pulse-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-pulse.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-search-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-search.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-clock-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-clock.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-play-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-play.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-search-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-search.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clipboard.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clippy.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-digital.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-edit-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-end.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-fast.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-in.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-out.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-start.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eight-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eight.glif ================================================ [File too large to display: 942 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eleven-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eleven.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-five-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-five.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-four-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-four.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-nine-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-nine.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-one-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-one.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-seven-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-seven.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-six-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-six.glif ================================================ [File too large to display: 850 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-ten-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-ten.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-three-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-three.glif ================================================ [File too large to display: 942 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-twelve-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-twelve.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-two-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-two.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clock.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-network.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-octagon-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-octagon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close-thick.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/close.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/closed-caption-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/closed-caption.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-braces.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-download-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-download.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-lock-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-percent-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-percent.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-print-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-print.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-question.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-refresh.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-search-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-sync-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-tags.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-upload-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud-upload.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/clover.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coach-lamp-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coach-lamp.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coat-rack.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-array.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-braces-box.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-braces.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-brackets.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-equal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-greater-than-or-equal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-greater-than.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-json.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-less-than-or-equal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-less-than.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-not-equal-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-not-equal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-parentheses-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-parentheses.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-string.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-tags-check.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/code-tags.glif ================================================ [File too large to display: 755 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/codepen.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-check-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-to-go-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee-to-go.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffee.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coffin.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-box.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-clockwise.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-counterclockwise.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-off-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-pause-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-pause.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-play-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-play.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-refresh-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-refresh.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-stop-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-stop.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-sync-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-sync.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-transfer-outline.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog-transfer.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cog.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cogs.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/collage.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/collapse-all-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/collapse-all.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/color-helper.glif ================================================ [File too large to display: 387 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comma-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comma-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comma-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comma-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comma.glif ================================================ [File too large to display: 504 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-account-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-account.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-left-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-right-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-bookmark-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-bookmark.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-eye-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-eye.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-flash-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-flash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-processing-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-processing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-question-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-question.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-quote-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-quote.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-search-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compare-horizontal.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compare-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compare-vertical.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compare.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compass-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compass-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compass-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compass-rose.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compass.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/compost.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cone-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cone.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/connection.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/console-line.glif ================================================ [File too large to display: 807 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/console-network-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/console-network.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/console.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/consolidate.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contacts-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contacts.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contain-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contain-start.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contain.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-copy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-cut.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-duplicate.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-paste.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-all-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-all.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-cog-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-move-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-move.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-settings-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/content-save.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contents.plist ================================================ [File too large to display: 490.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contrast-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contrast-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/contrast.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/controller-classic-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/controller-classic.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-alert-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-alert.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-check-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-check.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-clock-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-clock.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-cog-outline.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-cog.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-edit-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-edit.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-lock-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-lock.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-minus-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-minus.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-off-outline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-plus-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-plus.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-refresh-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-refresh.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-remove-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-remove.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-settings-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie-settings.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cookie.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/coolant-temperature.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/copyleft.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/copyright.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cordova.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/corn-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/corn.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cosine-wave.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/counter.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/countertop-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/countertop.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cow-off.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cow.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cpu-32-bit.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cpu-64-bit.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cradle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cradle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crane.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/creation.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/creative-commons.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-check-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-check.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-chip-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-chip.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-fast-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-fast.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-marker-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-minus-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-off-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refresh-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refund-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refund.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-scan-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-scan.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cricket.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop-free.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop-landscape.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop-portrait.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop-rotate.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop-square.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crop.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cross-bolnisi.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cross-celtic.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cross-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cross.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-gps.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-question.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crowd.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crown-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crown-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crown-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crown.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cryengine.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/crystal-ball.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-scan.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-send.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube-unfolded.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cube.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cup-off-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cup-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cup-outline.glif ================================================ [File too large to display: 849 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cup-water.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cup.glif ================================================ [File too large to display: 835 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cupboard-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cupboard.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cupcake.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/curling.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-bdt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-brl.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-btc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-cny.glif ================================================ [File too large to display: 862 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-eth.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-eur-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-eur.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-fra.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-gbp.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-ils.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-inr.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-jpy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-krw.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-kzt.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-mnt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-ngn.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-php.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-rial.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-rub.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-rupee.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-sign.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-try.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-twd.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-usd-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/currency-usd.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/current-ac.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/current-dc.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-click-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-click.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-gesture-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-gesture.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-move.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-pointer.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cursor-text.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/curtains-closed.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/curtains.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cylinder-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/cylinder.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dance-ballroom.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dance-pole.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-edit.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-minus.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-plus.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-remove.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-scan.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-alert-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-down-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-down.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-left-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-left.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-right-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-right.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-up-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-check-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-clock-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-cog-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-cog.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-edit-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-edit.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-export-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-export.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-off-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-off.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-import-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-import.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-lock-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-lock.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-marker-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-marker.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-minus-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-off-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-plus-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-refresh-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-refresh.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-remove-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-search-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-search.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-settings-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-settings.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-sync-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database-sync.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/database.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/death-star-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/death-star.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/deathly-hallows.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/debian.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-into.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-out.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-over.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decagram-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decagram.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma-decrease.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma-increase.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal-decrease.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal-increase.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/decimal.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-empty-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-empty.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-forever-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-forever.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-restore.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-sweep-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-sweep.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delete.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/delta.glif ================================================ [File too large to display: 489 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desk-lamp.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desk.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/deskphone.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desktop-classic.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desktop-mac-dashboard.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desktop-mac.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desktop-tower-monitor.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/desktop-tower.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/details.glif ================================================ [File too large to display: 496 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dev-to.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/developer-board.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/deviantart.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/devices.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dharmachakra.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diabetes.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dialpad.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diameter-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diameter-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diameter.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diamond-outline.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diamond-stone.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diamond.glif ================================================ [File too large to display: 425 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-1-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-2-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-2.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-3-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-3.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-4-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-4.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-5-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-5.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-6-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-6.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d10-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d10.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d12-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d12.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d20-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d20.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d4-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d4.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d6-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d6.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d8-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-d8.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-multiple-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dice-multiple.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/digital-ocean.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dip-switch.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/directions-fork.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/directions.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/disc-alert.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/disc-player.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/disc.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/discord.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/disqus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-center.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-left.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-right.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-bottom.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-center.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-top.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diversify.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-flippers.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-helmet.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-flag.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-tank-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-tank.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving-snorkel.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/diving.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/division-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/division.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dlna.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dna.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dns-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dns.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dock-bottom.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dock-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dock-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dock-top.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dock-window.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/docker.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/doctor.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dog-service.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dog-side-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dog-side.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dolby.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dolly.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dolphin.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/domain-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/domain-plus.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/domain-remove.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/domain.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dome-light.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/domino-mask.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/donkey.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-closed-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-closed.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-open.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/door.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/doorbell-video.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/doorbell.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dot-net.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-circle.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-grid.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-hexagon.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-square.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-triangle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-lock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-multiple.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-network.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-off-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-off.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/download.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag-horizontal-variant.glif ================================================ [File too large to display: 612 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag-horizontal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag-vertical-variant.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag-vertical.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drag.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drama-masks.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/draw-pen.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/draw.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drawing-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drawing.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dresser-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dresser.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drone.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dropbox.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/drupal.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/duck.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dumbbell.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/dump-truck.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing-loop.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earbuds.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-arrow-right.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/earth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg-easter.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg-fried.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/egg.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eiffel-tower.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eight-track.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eject-outline.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eject.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/electric-switch-closed.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/electric-switch.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/electron-framework.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elephant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevation-decline.glif ================================================ [File too large to display: 853 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevation-rise.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator-up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/elevator.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ellipse-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ellipse.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-alert-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-fast-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-fast.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-mark-as-unread.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-minus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-newsletter.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-open-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-open-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-open-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-open.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-receive-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-receive.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-seal-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-seal.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-send-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-send.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/email.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ember.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emby.glif ================================================ [File too large to display: 875 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-angry-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-angry.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-confused-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-confused.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cool-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cool.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cry-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cry.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-dead-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-dead.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-devil-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-devil.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-excited-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-excited.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-frown-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-frown.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-happy-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-happy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-kiss-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-kiss.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-lol-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-lol.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-neutral-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-neutral.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-poop-outline.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-poop.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sad-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sad.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sick-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sick.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-tongue-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-tongue.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-wink-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-wink.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/emoticon.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/engine-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/engine-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/engine-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/engine.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/epsilon.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/equal-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/equal.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/equalizer-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/equalizer.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eraser-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eraser.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/escalator-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/escalator-down.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/escalator-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/escalator.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eslint.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/et.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ethereum.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ethernet-cable-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ethernet-cable.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ethernet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-ccs1.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-ccs2.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-chademo.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-tesla.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-type1.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-type2.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ev-station.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/evernote.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/excavator.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exclamation-thick.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exclamation.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exit-run.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exit-to-app.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/expand-all-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/expand-all.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/expansion-card-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/expansion-card.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exponent-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/exponent.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/export-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/export.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-left-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-right-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-circle-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-circle.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-refresh-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-refresh.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-settings-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye-settings.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eye.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-agent.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-man-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-man-profile.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-man-shimmer-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-man-shimmer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-man.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-mask-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-mask.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-recognition.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-profile.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-shimmer-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-shimmer.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/face-woman.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/facebook-gaming.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/facebook-messenger.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/facebook-workplace.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/facebook.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/factory.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/family-tree.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-alert.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-auto.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-chevron-down.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-chevron-up.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-clock.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-minus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-remove.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-1.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-2.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-3.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fan.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-10.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-15.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-30.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-60.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-outline.glif ================================================ [File too large to display: 836 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward.glif ================================================ [File too large to display: 504 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fax.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/feather.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/feature-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/feature-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fedora.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fence-electric.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fence.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fencing.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ferris-wheel.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ferry.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-account-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-account.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-alert.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-left-right-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-left-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-up-down-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-up-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cabinet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cad-box.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cad.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cancel-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cancel.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-certificate-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-certificate.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-chart.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-check-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-clock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-clock.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cloud-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cloud.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-code-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-code.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cog-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-cog.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-compare.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-delimited-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-delimited.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-edit-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-multiple-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-plus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-document.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-download-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-download.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-edit-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-edit.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-excel.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-export-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-export.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-eye-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-eye.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-find-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-find.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-gif-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-hidden.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-marker-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-marker.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-import-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-import.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-jpg-box.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-key-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-key.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-link-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-link.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-open-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-move-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-move.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-multiple-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-music-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-music.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-pdf-box.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-percent-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-percent.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-phone-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-phone.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-png-box.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-presentation-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-question-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-refresh-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-refresh.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-remove-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-replace-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-replace.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-restore-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-restore.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-left-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-right-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-send-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-send.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-settings.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-sign.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-star-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-star.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-swap-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-swap.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-sync-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-multiple-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-table.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-tree-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-tree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-undo-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-undo.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-upload-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-upload.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-video-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-video.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-word-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-word-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-word-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file-word.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/file.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/film.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-box-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-menu-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-menu.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-minus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/finance.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/find-replace.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fingerprint-off.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fingerprint.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-alert.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-circle.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-extinguisher.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire-truck.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fire.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/firebase.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/firefox.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fireplace-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fireplace.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/firewire.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/firework-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/firework.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fish-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fish.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fishbowl-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fishbowl.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-page-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-page.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-screen-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-screen.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-checkered.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-minus-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-minus.glif ================================================ [File too large to display: 840 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-off.glif ================================================ [File too large to display: 1010 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-outline.glif ================================================ [File too large to display: 1020 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-triangle.glif ================================================ [File too large to display: 553 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-variant-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flag.glif ================================================ [File too large to display: 631 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flare.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-alert-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-alert.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-auto.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-off.glif ================================================ [File too large to display: 885 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-outline.glif ================================================ [File too large to display: 854 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash-red-eye.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flash.glif ================================================ [File too large to display: 508 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flashlight-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flashlight.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-plus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-minus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-plus-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-remove-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-empty-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-empty.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flask.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fleur-de-lis.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flip-horizontal.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flip-to-back.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flip-to-front.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flip-vertical.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-dual-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-dual.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-outline.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-outline.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-variant-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-variant.glif ================================================ [File too large to display: 884 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floor-plan.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floppy-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/floppy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-outline.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-pollen-outline.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-pollen.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-poppy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-tulip-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower-tulip.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/flower.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/focus-auto.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/focus-field-horizontal.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/focus-field-vertical.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/focus-field.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-account-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-account.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-down-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-right-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-right-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-down-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-cancel-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-cancel.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-clock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-cog-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-cog.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-download-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-download.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-eye-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-eye.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-file-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-file.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-google-drive.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-heart-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-heart.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-hidden.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-home-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-home.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-image.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-information-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-information.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-network-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-network.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-key.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-open-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-move-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-move.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-music-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-music.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-network-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-network.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-open-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-open.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-play-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-play.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-pound-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-pound.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-question-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-refresh-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-search-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-settings-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-star.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-swap-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-swap.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-sync-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-table-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-table.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-text-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-upload-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-upload.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-wrench-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-wrench.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-zip-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder-zip.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/folder.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/font-awesome.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-apple-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-apple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-croissant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-off-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-fork-drink.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-halal.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-hot-dog.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-kosher.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-steak-off.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-steak.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-takeout-box-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-takeout-box.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-turkey.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-variant-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/food.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/foot-print.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/football-australian.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/football-helmet.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/football.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forest.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forklift.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-dropdown.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-select.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-textarea.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox-lock.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox-password.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-bottom.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-center.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-justify.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-left.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-middle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-right.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-align-top.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-annotation-minus.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-annotation-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-bold.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-clear.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-color-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-color-highlight.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-color-marker-cancel.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-color-text.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-columns.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-float-center.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-float-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-float-none.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-float-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-font-size-decrease.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-font-size-increase.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-font.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-3.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-4.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-5.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-6.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-decrease.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-equal.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-increase.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-header-pound.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-left.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-right.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-indent-decrease.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-indent-increase.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-italic.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case-lower.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case-upper.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-ends-with.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-matches.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-spacing.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-starts-with.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-line-spacing.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-line-style.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-line-weight.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-square.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-triangle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-type.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-checkbox.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-checks.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-group.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-numbered-rtl.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-numbered.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-list-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-overline.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-page-break.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-page-split.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-paint.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-paragraph.glif ================================================ [File too large to display: 990 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-pilcrow.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-close-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-close.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-open-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-open.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-rotate-90.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-section.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-size.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-strikethrough-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-strikethrough.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-subscript.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-superscript.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-angle-down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-angle-up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-down-vertical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-down.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-none.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-up.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-vertical.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-variant-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-variant.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-clip.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-overflow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-wrap.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-textbox.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-textdirection-l-to-r.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-textdirection-r-to-l.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-title.glif ================================================ [File too large to display: 563 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-underline-wavy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-underline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-bottom.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-top.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-inline.glif ================================================ [File too large to display: 950 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-square.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-tight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-top-bottom.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forum.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forward.glif ================================================ [File too large to display: 509 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/forwardburger.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fountain-pen-tip.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fountain-pen.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fountain.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fraction-one-half.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/freebsd.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/french-fries.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/frequently-asked-questions.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-bottom.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-top.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-alert-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fridge.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-cherries-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-cherries.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-citrus-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-citrus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-grapes-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-grapes.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-pear.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-pineapple.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fruit-watermelon.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuel-cell.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fullscreen-exit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fullscreen.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/function-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/function.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/furigana-horizontal.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/furigana-vertical.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuse-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuse-blade.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuse-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/fuse.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-down.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-left.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-right.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-down.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-left.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-down.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-left.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-square-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-square.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-variant-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamepad.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gamma.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gantry-crane.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-alert-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-open-variant.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-open.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-variant-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/garage.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-burner.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-cylinder.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-off-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gas-station.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-alert.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-and.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-arrow-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-arrow-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-nand.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-nor.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-not.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-or.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-xnor.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate-xor.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gate.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gatsby.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gauge-empty.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gauge-full.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gauge-low.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gauge.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gavel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-female.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-male-female-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-male-female.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-male.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-non-binary.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gender-transgender.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gentoo.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-double-tap.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-pinch.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-spread.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-horizontal.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-vertical.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-box.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-button.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-hold.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-two-double-tap.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture-two-tap.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gesture.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ghost-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ghost-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ghost-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ghost.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift-off-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift-open-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift-open.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gift.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/git.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/github.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gitlab.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-cocktail-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-cocktail.glif ================================================ [File too large to display: 932 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-flute.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-fragile.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-variant-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-pint-outline.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-stange.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-tulip.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glass-wine.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/glasses.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/globe-light.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/globe-model.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gmail.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gnome.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/go-kart-track.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/go-kart.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gog.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/golf-cart.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/golf-tee.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/golf.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gondola.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/goodreads.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-ads.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-analytics.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-assistant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-cardboard.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-chrome.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-communities.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-extended.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-group.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-circles.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-classroom.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-cloud.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-controller-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-controller.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-downasaur.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-drive.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-earth.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-fit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-glass.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-hangouts.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-home.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-keep.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-lens.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-maps.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-my-business.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-nearby.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-play.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-podcast.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-spreadsheet.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-street-view.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google-translate.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/google.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gradient-horizontal.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gradient-vertical.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grain.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/graph-outline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/graphql.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grass.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grave-stone.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grease-pencil.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/greater-than-or-equal.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/greater-than.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/greenhouse.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grid-large.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grid-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grid.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grill-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/grill.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/group.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/guitar-acoustic.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/guitar-electric.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/guitar-pick-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/guitar-pick.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/guy-fawkes-mask.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/gymnastics.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hail.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hair-dryer-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hair-dryer.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/halloween.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hamburger.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hammer-screwdriver.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hammer-sickle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hammer-wrench.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hammer.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-off-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-off-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-clap-off.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-clap.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-coin-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-coin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-extended-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-extended.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-left-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-right-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-heart-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-heart.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-okay.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-peace-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-peace.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-saw.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-wash-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-wash.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-water.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-wave-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hand-wave.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/handball.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/handcuffs.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hands-pray.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/handshake-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/handshake.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hanger.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hard-hat.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/harddisk-plus.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/harddisk-remove.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/harddisk.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hat-fedora.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hazard-lights.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hdr-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hdr.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-alert-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-check-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-cog-outline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-dots-horizontal-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-dots-horizontal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-flash-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-flash.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-heart-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-lightbulb-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-lightbulb.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-question-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-snowflake-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-snowflake.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-sync-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/head.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headphones-bluetooth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headphones-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headphones-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headphones-settings.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headphones.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headset-dock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headset-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/headset.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-broken-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-broken.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-cog-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-cog.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-flash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-half-full.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-half-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-half.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-minus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-pulse.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-settings-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heart.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heat-pump-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heat-pump.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heat-wave.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/heating-coil.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/helicopter.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-box.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-circle-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-network-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-network.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-rhombus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help-rhombus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/help.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexadecimal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-multiple-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-multiple.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-1.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-2.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-3.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-4.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-5.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-6.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagram-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hexagram.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/high-definition-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/high-definition.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/highway.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hiking.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/history.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hockey-puck.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hockey-sticks.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hololens.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-account.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-alert-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-alert.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-analytics.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-assistant.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-automation.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-battery-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-battery.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-city-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-city.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-clock-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-clock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-edit-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-edit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-export-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-flood.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-0.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-1.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-2.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-a.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-b.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-g.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-l.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-negative-1.glif ================================================ [File too large to display: 1023 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-group-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-group-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-group-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-group.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-heart.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-import-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lightbulb-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lightbulb.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lightning-bolt-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lightning-bolt.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lock-open.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-lock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-map-marker.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-minus-outline.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-minus.glif ================================================ [File too large to display: 906 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-modern.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-plus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-remove-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-roof.glif ================================================ [File too large to display: 671 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-search-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-search.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-switch-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-thermometer-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-thermometer.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-variant-outline.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home-variant.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/home.glif ================================================ [File too large to display: 673 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hook-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hook.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hoop-house.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hops.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horizontal-rotate-clockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horizontal-rotate-counterclockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horse-human.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horse-variant-fast.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horse-variant.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/horseshoe.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hospital-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hospital-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hospital-building.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hospital-marker.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hospital.glif ================================================ [File too large to display: 727 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hot-tub.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hours-24.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hubspot.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hulu.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-baby-changing-table.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-cane.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-capacity-decrease.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-capacity-increase.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-child.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-dolly.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-female-boy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-female-dance.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-female-female.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-female-girl.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-female.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting-proximity.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-handsdown.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-handsup.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-board-poll.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-board.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-boy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-child.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-female-child.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-female.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-girl.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-height-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-height.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male-male.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-male.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-non-binary.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-pregnant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-queue.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-scooter.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-wheelchair.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human-white-cane.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/human.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/humble-bundle.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hvac-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hvac.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hydraulic-oil-level.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hydraulic-oil-temperature.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hydro-power.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/hydrogen-station.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ice-cream-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ice-cream.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ice-pop.glif ================================================ [File too large to display: 914 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/id-card.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/identifier.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ideogram-cjk-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ideogram-cjk.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-album.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-area-close.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-area.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-auto-adjust.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-broken-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-broken.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-black-white.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-strong-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-strong.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-weak.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-drama.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-frames.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-hdr.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-none.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-tilt-shift.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-vintage.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-frame.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-lock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-marker-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-marker.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-move.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-refresh-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-search-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-actual.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-large.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-small.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-sync-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/image.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/import.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-down-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-up-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-full-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-full.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-multiple-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/incognito-circle-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/incognito-circle.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/incognito-off.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/incognito.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/induction.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/information-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/information-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/information-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/information-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/information.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/instagram.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/instrument-triangle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/integrated-circuit-chip.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/invert-colors-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/invert-colors.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/iobroker.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ip-network-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ip-network.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ip-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ip.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ipod.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/iron-board.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/iron-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/iron.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/island.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/iv-bag.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jabber.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jeepney.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jellyfish-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jellyfish.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jira.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jquery.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jsfiddle.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/jump-rope.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kabaddi.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kangaroo.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/karate.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kayaking.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keg.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-alert-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-off-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-pour-over.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-steam-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle-steam.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kettlebell.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-alert-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-arrow-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-chain-variant.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-chain.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-change.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-link.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-star.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key-wireless.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/key.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-backspace.glif ================================================ [File too large to display: 617 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-caps.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-close.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-esc.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f1.glif ================================================ [File too large to display: 932 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f10.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f11.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f12.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f3.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f4.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f5.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f6.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f7.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f8.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f9.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-off-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-return.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-settings-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-settings.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-space.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-tab-reverse.glif ================================================ [File too large to display: 817 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-tab.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-variant.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/keyboard.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/khanda.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kickstarter.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kite-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kite.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kitesurfing.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/klingon.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/knife-military.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/knife.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/koala.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kodi.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/kubernetes.glif ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-multiple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-percent-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-percent.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-variant-outline.glif ================================================ [File too large to display: 980 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label-variant.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/label.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ladder.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ladybug.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lambda.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lamp-outline.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lamp.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lamps-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lamps.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lan-check.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lan-connect.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lan-disconnect.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lan-pending.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lan.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-fields.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-plots-circle-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-plots-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-plots.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-rows-horizontal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/land-rows-vertical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/landslide-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/landslide.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-c.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-cpp.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-csharp.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-css3.glif ================================================ [File too large to display: 901 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-fortran.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-go.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-haskell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-html5.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-java.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-javascript.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-kotlin.glif ================================================ [File too large to display: 440 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-lua.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-markdown-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-markdown.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-php.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-python.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-r.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-ruby-on-rails.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-ruby.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-rust.glif ================================================ [File too large to display: 15.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-swift.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-typescript.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/language-xaml.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/laptop-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/laptop-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/laptop.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/laravel.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/laser-pointer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lasso.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lastpass.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/latitude.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/launch.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lava-lamp.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-edit.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-minus.glif ================================================ [File too large to display: 957 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-outline.glif ================================================ [File too large to display: 880 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-search-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-triple-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers-triple.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/layers.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lead-pencil.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf-circle-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf-circle.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf-maple-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf-maple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leaf.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leak-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leak.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lecturn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-on.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-strip-variant-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-strip-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-strip.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-on.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/leek.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/less-than-or-equal.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/less-than.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/library-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/library-shelves.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/library.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/license.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lifebuoy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/light-flood-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/light-flood-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/light-recessed.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/light-switch-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/light-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-alert-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-auto-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-auto.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-spiral-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-spiral.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-fluorescent-tube-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-fluorescent-tube.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-off-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-off.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-off-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-night-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-night.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-10.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-20.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-30.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-40.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-50.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-60.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-70.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-80.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-90.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-question-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-question.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-spot-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-spot.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-variant-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lighthouse-on.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lighthouse.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt-circle.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt-outline.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/line-scan.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lingerie.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-box-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-box-variant-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-box-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-box.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-lock.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-minus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-plus.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-remove.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/link.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/linkedin.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/linux-mint.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/linux.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lipstick.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/liquid-spot.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/liquor.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/list-status.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/litecoin.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/loading.glif ================================================ [File too large to display: 599 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/location-enter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/location-exit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-check-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-minus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-variant-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-open.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-pattern.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-question.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-remove-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-reset.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock-smart.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/locker-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/locker.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/login.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/logout-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/logout.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/longitude.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/looks.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lotion-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lotion-plus-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lotion-plus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lotion.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/loupe.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lumx.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/lungs.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mace.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magazine-pistol.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magazine-rifle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magic-staff.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnet-on.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnet.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-close.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-expand.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus-cursor.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus-cursor.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-remove-cursor.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify-scan.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/magnify.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mail.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-up-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-up-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mailbox.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/manjaro.glif ================================================ [File too large to display: 869 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-clock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-legend.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-account-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-account.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-distance.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-down.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-left-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-minus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-multiple-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-path.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-question-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-radius-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-radius.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-right-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-star-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-star.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-marker.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-search-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/map.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mapbox.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/margin.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/marker-cancel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/marker-check.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/marker.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mastodon.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/material-design.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/material-ui.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-compass.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-cos.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-integral-box.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-integral.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-log.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-norm-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-norm.glif ================================================ [File too large to display: 580 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-sin.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/math-tan.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/matrix.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/medal-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/medal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/medical-bag.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/medical-cotton-swab.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meditation.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/memory.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menorah-fire.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menorah.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-down-outline.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-down.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-left-outline.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-left.glif ================================================ [File too large to display: 343 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-open.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-right-outline.glif ================================================ [File too large to display: 604 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-right.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-swap-outline.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-swap.glif ================================================ [File too large to display: 501 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-up-outline.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu-up.glif ================================================ [File too large to display: 340 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/menu.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/merge.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-left-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-left.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-right-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-right.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-badge-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-badge.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-bookmark-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-bookmark.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-bulleted-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-bulleted.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-cog-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-cog.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-draw.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-fast-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-fast.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-flash-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-flash.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-image-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-image.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-minus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-off.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-processing-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-processing.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-question-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-question.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-reply.glif ================================================ [File too large to display: 825 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-settings.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-star-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-star.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-clock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-fast-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-fast.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message-video.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/message.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meteor.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meter-electric-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meter-electric.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meter-gas-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/meter-gas.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/metronome-tick.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/metronome.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/micro-sd.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-question-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-question.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-variant-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microphone.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microscope.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-access.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-azure-devops.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-azure.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-bing.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-dynamics-365.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-edge.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-excel.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-internet-explorer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-office.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-onedrive.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-onenote.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-outlook.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-powerpoint.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-sharepoint.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-teams.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-visual-studio-code.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-visual-studio.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-windows-classic.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-windows.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-word.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-alert.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-charging.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-empty.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-full.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-low.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-medium.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-unknown.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-menu.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-view.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microsoft.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microwave-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/microwave.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/middleware-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/middleware.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/midi-port.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/midi.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mine.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minecraft.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mini-sd.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minidisc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-multiple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle.glif ================================================ [File too large to display: 968 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-network-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-network.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus-thick.glif ================================================ [File too large to display: 389 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/minus.glif ================================================ [File too large to display: 379 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mirror-rectangle.glif ================================================ [File too large to display: 998 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mirror-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mirror.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mixed-martial-arts.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mixed-reality.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/molecule-co.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/molecule-co2.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/molecule.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-account.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-arrow-down-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-arrow-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-cellphone-star.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-cellphone.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-dashboard.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-eye.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-screenshot.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-share.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-shimmer.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-small.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-speaker-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-speaker.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor-star.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/monitor.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-first-quarter.glif ================================================ [File too large to display: 506 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-full.glif ================================================ [File too large to display: 728 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-last-quarter.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-new.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-waning-crescent.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-waning-gibbous.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-waxing-crescent.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moon-waxing-gibbous.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moped-electric-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moped-electric.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moped-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/moped.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/more.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mortar-pestle-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mortar-pestle.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mosque.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mother-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mother-nurse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-pause-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-pause.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-play-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-play.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-sensor-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion-sensor.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motion.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motorbike-electric.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/motorbike.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-bluetooth.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-down.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-vertical.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-variant-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mouse.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/move-resize-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/move-resize.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-filter-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-filter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-cog-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-cog.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-play-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-play.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-settings-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-star-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-open.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-play-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-play.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-roll.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-settings-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-star-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie-star.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/movie.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mower-bag.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mower.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/muffin.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/multicast.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/multiplication-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/multiplication.glif ================================================ [File too large to display: 991 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mushroom.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-double-flat.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-double-sharp.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-flat.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-natural.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-sharp.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-alto.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-bass.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-treble.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-bluetooth-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-bluetooth.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-eighth-dotted.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-half-dotted.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-half.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-quarter-dotted.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-quarter.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-sixteenth-dotted.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-sixteenth.glif ================================================ [File too large to display: 950 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-whole-dotted.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note-whole.glif ================================================ [File too large to display: 977 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-note.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-eighth.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-half.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-quarter.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-sixteenth.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-whole.glif ================================================ [File too large to display: 573 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/music.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/mustache.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nail.glif ================================================ [File too large to display: 621 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nas.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nativescript.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nature-people.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nature.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/navigation-outline.glif ================================================ [File too large to display: 768 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/navigation-variant-outline.glif ================================================ [File too large to display: 701 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/navigation.glif ================================================ [File too large to display: 467 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/near-me.glif ================================================ [File too large to display: 488 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/necklace.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/needle-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/needle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/netflix.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-pos.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-1-alert.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-1.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-2-alert.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-2.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-3-alert.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-3.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4-alert.glif ================================================ [File too large to display: 849 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4-cog.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4.glif ================================================ [File too large to display: 357 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-off-outline.glif ================================================ [File too large to display: 990 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-off.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-outline.glif ================================================ [File too large to display: 525 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/network.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/new-box.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/newspaper.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nfc-search-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nfc-tap.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nfc-variant-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nfc-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nfc.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ninja.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-game-boy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-switch.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-wii.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-wiiu.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nix.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nodejs.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/noodles.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/not-equal-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/not-equal.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-alert.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-minus-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-off.glif ================================================ [File too large to display: 991 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-search-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note-text.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/note.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-check-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-edit-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-edit.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-heart-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-heart.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-minus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-multiple.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-plus-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-remove-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notebook.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/notification-clear-all.glif ================================================ [File too large to display: 811 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/npm.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nuke.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/null.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-multiple-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4.glif ================================================ [File too large to display: 643 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7.glif ================================================ [File too large to display: 514 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-multiple.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-circle-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-multiple-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-multiple.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-circle-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-negative-1.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric-positive-1.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/numeric.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nut.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nutrition.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/nuxt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oar.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ocarina.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oci.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ocr.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octagon-outline.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octagon.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octagram-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octagram.glif ================================================ [File too large to display: 895 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octahedron-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/octahedron.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/odnoklassniki.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/offer.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building-cog-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building-cog.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building-marker-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building-marker.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/office-building.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oil-lamp.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oil-level.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oil-temperature.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/oil.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/om.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/omega.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/one-up.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/onepassword.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/opacity.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/open-in-app.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/open-in-new.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/open-source-initiative.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/openid.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/opera.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/orbit-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/orbit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-alphabetical-ascending.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-alphabetical-descending.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-ascending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-ascending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-descending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-descending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-numeric-ascending.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/order-numeric-descending.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/origin.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ornament-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ornament.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/outdoor-lamp.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/overscan.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/owl.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pac-man.glif ================================================ [File too large to display: 947 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-minus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-plus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-remove.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/package.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-first.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-last.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-body.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-footer.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-header-footer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-header.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-sidebar-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-sidebar-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-next-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-next.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-previous-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/page-previous.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pail.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette-advanced.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palette.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/palm-tree.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-bottom-left.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-bottom-right.glif ================================================ [File too large to display: 691 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-down.glif ================================================ [File too large to display: 675 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-horizontal.glif ================================================ [File too large to display: 846 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-left.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-right.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-top-left.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-top-right.glif ================================================ [File too large to display: 687 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-up.glif ================================================ [File too large to display: 673 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan-vertical.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pan.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panda.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pandora.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-fisheye.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-horizontal-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-horizontal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-sphere-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-sphere.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-variant-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-vertical-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-vertical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-wide-angle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama-wide-angle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/panorama.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paper-cut-vertical.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paper-roll-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paper-roll.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-check.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-lock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paperclip.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/parachute-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/parachute.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paragliding.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/parking.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/party-popper.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/passport-biometric.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/passport.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pasta.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/patio-heater.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/patreon.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pause-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pause-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pause-octagon-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pause-octagon.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pause.glif ================================================ [File too large to display: 576 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paw-off-outline.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paw-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paw-outline.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/paw.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/peace.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/peanut-off-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/peanut-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/peanut-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/peanut.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pen.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-lock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-minus-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-minus.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-remove.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil-ruler.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pencil.glif ================================================ [File too large to display: 884 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/penguin.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pentagon-outline.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pentagon.glif ================================================ [File too large to display: 427 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pentagram.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/percent.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/periodic-table.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/perspective-less.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/perspective-more.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ph.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-bluetooth-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-bluetooth.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-cancel-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-cancel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-classic-off.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-classic.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-dial-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-dial.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-forward-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-forward.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-hangup-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-hangup.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-in-talk-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-in-talk.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-incoming-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-incoming.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-lock-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-log-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-log.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-message-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-message.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-minus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-missed-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-missed.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-outgoing-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-outgoing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-paused-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-paused.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-refresh-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-refresh.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-remove-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-return-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-return.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-ring-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-ring.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-rotate-landscape.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-rotate-portrait.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-settings-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-sync-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-sync.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone-voip.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/phone.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pi-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pi-hole.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pi.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/piano-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/piano.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pickaxe.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-bottom-right-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-bottom-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-top-right-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-top-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pier-crane.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pier.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pig-variant-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pig-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pig.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/piggy-bank-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/piggy-bank.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pill-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pill.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pillar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pin-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pin-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pin-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pin.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree-fire.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree.glif ================================================ [File too large to display: 851 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pinterest.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pinwheel-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pinwheel.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pipe-disconnected.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pipe-leak.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pipe-valve.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pipe-wrench.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pipe.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pirate.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pistol.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/piston.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pitchfork.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pizza.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-open-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-box.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-circle.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-network-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-network.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-outline.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-pause.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-protected-content.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play-speed.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/play.glif ================================================ [File too large to display: 333 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-check.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-edit.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-minus.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-music-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-music.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-play.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/playlist-star.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plex.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pliers.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-lock-open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-network.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus-thick.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/plus.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/podcast.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/podium-bronze.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/podium-gold.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/podium-silver.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/podium.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/point-of-sale.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pokeball.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pokemon-go.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/poker-chip.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/polaroid.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/police-badge-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/police-badge.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/police-station.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/poll.glif ================================================ [File too large to display: 777 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/polo.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/polymer.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pool-thermometer.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pool.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/popcorn.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/post-lamp.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/post-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/post.glif ================================================ [File too large to display: 970 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/postage-stamp.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot-mix-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot-mix.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot-outline.glif ================================================ [File too large to display: 1014 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot-steam-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot-steam.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pot.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pound-box-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pound-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pound.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-cycle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-on.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-plug.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-sleep.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-au.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-ch.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-de.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-eu.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-fr.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-it.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-jp.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-uk.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-us.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-socket.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power-standby.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/power.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/powershell.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/prescription.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/presentation-play.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/presentation.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pretzel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-heat-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-heat.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-eye.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-pos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer-wireless.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/printer.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/priority-high.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/priority-low.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/professional-hexagon.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-clock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-close.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-download.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-pencil.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-question.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-star.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-upload.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/progress-wrench.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-off.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-off-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/projector.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/propane-tank-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/propane-tank.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/protocol.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/publish-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/publish.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pulse.glif ================================================ [File too large to display: 806 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pump.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pumpkin.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/purse-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/purse.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-check-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-edit-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-edit.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-heart-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-heart.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-minus-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-plus-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-remove-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-star-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-star.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/puzzle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pyramid-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/pyramid.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qi.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qqchat.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-edit.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-minus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-plus.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-remove.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-scan.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/qrcode.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/quadcopter.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/quality-high.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/quality-low.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/quality-medium.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/quora.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rabbit-variant-outline.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rabbit-variant.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rabbit.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/racing-helmet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/racquetball.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radar.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiator-disabled.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiator-off.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiator.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio-am.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio-fm.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio-handheld.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio-tower.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radio.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-circle-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radioactive.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiobox-marked.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiology-box-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radiology-box.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radius-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/radius.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/railroad-light.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rake.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/raspberry-pi.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/raw-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/raw.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-end-arrow.glif ================================================ [File too large to display: 889 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-end.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-arrow.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-vertex-end.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-start.glif ================================================ [File too large to display: 747 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ray-vertex.glif ================================================ [File too large to display: 811 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/razor-double-edge.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/razor-single-edge.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/react.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/read.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/receipt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/record-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/record-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/record-player.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/record-rec.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/record.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rectangle-outline.glif ================================================ [File too large to display: 598 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rectangle.glif ================================================ [File too large to display: 383 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/recycle-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/recycle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reddit.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/redhat.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/redo-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/redo.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reflect-horizontal.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reflect-vertical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/refresh-auto.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/refresh-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/refresh.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/regex.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/registered-trademark.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reiterate.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-many.glif ================================================ [File too large to display: 919 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-one-or-many.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-one.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-only-one.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-zero-or-many.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-zero-or-one.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-many.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-one-or-many.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-one.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-only-one.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-zero-or-many.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-zero-or-one.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-many.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-one-or-many.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-one.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-only-one.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-zero-or-many.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-zero-or-one.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-many.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-one-or-many.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-one.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-only-one.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-zero-or-many.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-zero-or-one.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-many.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-one-or-many.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-one.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-only-one.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-zero-or-many.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-zero-or-one.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-many.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-one-or-many.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-one.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-only-one.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-zero-or-many.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-zero-or-one.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/relative-scale.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reload-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reload.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reminder.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/remote-desktop.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/remote-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/remote-tv-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/remote-tv.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/remote.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rename-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reorder-horizontal.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reorder-vertical.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/repeat-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/repeat-once.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/repeat-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/repeat.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/replay.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reply-all-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reply-all.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reply-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reply-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reply.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/reproduction.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/resistor-nodes.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/resistor.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/resize-bottom-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/resize.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/responsive.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/restart-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/restart-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/restart.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/restore-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/restore.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-10.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-15.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-30.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-60.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind-outline.glif ================================================ [File too large to display: 825 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rewind.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-medium-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-medium.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-split-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-split.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rhombus.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ribbon.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rice.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rickshaw-electric.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rickshaw.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ring.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rivet.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/road-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/road.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robber.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-angry-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-angry.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-confused-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-confused.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-dead-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-dead.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-excited-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-excited.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-happy-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-happy.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-industrial-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-industrial.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-love-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-love.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-mower-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-mower.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-off-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-vacuum-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot-vacuum.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/robot.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rocket-launch-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rocket-launch.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rocket-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rodent.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roller-shade-closed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roller-shade.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roller-skate-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roller-skate.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rollerblade-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rollerblade.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rollupjs.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rolodex-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rolodex.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-2.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-3.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-4.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-6.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-7.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-8.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/room-service-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/room-service.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-360.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-3d-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-3d.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-left-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-orbit.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-right-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rotate-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rounded-corner.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/router-network.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless-settings.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/router.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/routes-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/routes.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rowing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rss-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rss-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rss.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rug.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rugby.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ruler-square-compass.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ruler-square.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ruler.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/run-fast.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/run.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/rv-truck.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sack-percent.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sack.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/safe-square-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/safe-square.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/safe.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/safety-goggles.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sail-boat-sink.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sail-boat.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sale-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sale.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/salesforce.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sass.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/satellite-uplink.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/satellite-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/satellite.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sausage-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sausage.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/saw-blade.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sawtooth-wave.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/saxophone.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scale-balance.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scale-bathroom.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scale-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scale-unbalanced.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scale.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scan-helper.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scanner-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scanner.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scatter-plot-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scatter-plot.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scent-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scent.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/school-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/school.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scissors-cutting.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scooter-electric.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scooter.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scoreboard-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/scoreboard.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screen-rotation-lock.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screen-rotation.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screw-flat-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screw-lag.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screw-machine-flat-top.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screw-machine-round-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screw-round-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/screwdriver.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text-key-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text-key.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text-play-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text-play.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script-text.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/script.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sd.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seal-variant.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seal.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/search-web.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-flat-angled.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-flat.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-individual-suite.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-extra.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-normal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-reduced.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-passenger.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-recline-extra.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat-recline-normal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seat.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seatbelt.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/security-network.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/security.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed-plus-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seed.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/seesaw.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/segment.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-all.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-color.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-compare.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-drag.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-group.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-inverse.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-marker.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-multiple-marker.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-multiple.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-off.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-place.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-remove.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select-search.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/select.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-drag.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse-arrow-inside.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-marker.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-multiple-marker.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-multiple.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-remove.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection-search.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/selection.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/semantic-web.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-check-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-check.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-clock-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-clock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-lock-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-lock.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send-outline.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/send.glif ================================================ [File too large to display: 457 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/serial-port.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-network-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-network.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-off.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server-security.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/server.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-all.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-center-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-center.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-left-center.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-left-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-left.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-merge.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-none.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-right.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-split.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-square.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/set-top-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/settings-helper.glif ================================================ [File too large to display: 801 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shaker-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shaker.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-circle-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-oval-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-polygon-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-rectangle-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-square-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape-square-rounded-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shape.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-all-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-all.glif ================================================ [File too large to display: 937 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-off.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-variant-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/share.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shark-fin-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shark-fin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shark-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shark.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sheep.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-variant-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-account.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-airplane-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-airplane.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-alert.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-bug-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-bug.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-car.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-check.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-cross-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-cross.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-crown-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-crown.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-edit-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-edit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-half-full.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-half.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-home-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-home.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-key-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-key.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-link-variant-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-link-variant.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-open-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-open.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-moon-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-moon.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-off.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-refresh-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-refresh.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-search.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-star-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-star.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sun-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sun.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sword-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sword.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sync-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield-sync.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shield.glif ================================================ [File too large to display: 678 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shimmer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ship-wheel.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shipping-pallet.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-ballet.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-cleat.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-formal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-heel.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-print.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shoe-sneaker.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shopping-music.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shopping-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shopping-search-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shopping-search.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shopping.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shore.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shovel-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shovel.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shower-head.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shower.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shredder.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shuffle-disabled.glif ================================================ [File too large to display: 857 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shuffle-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shuffle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/shuriken.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sickle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sigma-lower.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sigma.glif ================================================ [File too large to display: 718 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-caution.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-pole.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-real-estate.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sign-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-2g.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-3g.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-4g.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-5g.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-2.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-3.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-distance-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-hspa-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-hspa.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signal.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signature-freehand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signature-image.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signature-text.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/signature.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silo.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware-clean.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware-fork-knife.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware-fork.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware-spoon.glif ================================================ [File too large to display: 826 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/silverware.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim-alert-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sim.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/simple-icons.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sina-weibo.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sine-wave.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sitemap-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sitemap.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-m.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-s.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-xl.glif ================================================ [File too large to display: 1008 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-xs.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-xxl.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-xxs.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/size-xxxl.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skate-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skate.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skateboard.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skateboarding.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skew-less.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skew-more.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ski-cross-country.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ski-water.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ski.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-backward-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-backward.glif ================================================ [File too large to display: 705 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-forward-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-forward.glif ================================================ [File too large to display: 703 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-outline.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-next.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-outline.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous.glif ================================================ [File too large to display: 550 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull-crossbones-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull-crossbones.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull-scan-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull-scan.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skull.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skype-business.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/skype.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slack.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slash-forward-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slash-forward.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sledding.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sleep-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sleep.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slide.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slope-downhill.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slope-uphill.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slot-machine-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/slot-machine.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-reader-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-reader.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smart-card.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smog.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant-alert.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant-off.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoke.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoking-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoking-pipe-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoking-pipe.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/smoking.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snail.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snake.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snapchat.glif ================================================ [File too large to display: 9.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowboard.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-alert.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-check.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-melt.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-thermometer.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowflake.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowman.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowmobile.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/snowshoeing.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soccer-field.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soccer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/social-distance-2-meters.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/social-distance-6-feet.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sofa-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sofa-single-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sofa-single.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sofa.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solar-panel-large.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solar-panel.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solar-power-variant-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solar-power-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solar-power.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soldering-iron.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/solid.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sony-playstation.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-ascending-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-ascending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-descending-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-descending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-ascending.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-ascending-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-ascending.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-descending-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-descending.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-calendar-ascending.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-calendar-descending.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-ascending-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-ascending.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-descending-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-descending.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-descending.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-ascending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-ascending.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-descending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-descending.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-reverse-variant.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-lock-open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sort.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soundbar.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soundcloud.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-check.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-minus.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-plus.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-refresh.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-remove.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-sync.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-branch.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-end-local.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-local.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-next-local.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-start-next-local.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-start.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-commit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-fork.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-merge.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-pull.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-repository-multiple.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/source-repository.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soy-sauce-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/soy-sauce.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spa-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spa.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/space-invaders.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/space-station.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spade.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speaker-bluetooth.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speaker-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speaker-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speaker-wireless.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speaker.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spear.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speedometer-medium.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speedometer-slow.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/speedometer.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spellcheck.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sphere-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sphere.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spider-thread.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spider-web.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spider.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spirit-level.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spoon-sugar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spotify.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spotlight-beam.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spotlight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spray-bottle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/spray.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler-fire.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler-variant.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sprout-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sprout.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-medium-outline.glif ================================================ [File too large to display: 612 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-medium.glif ================================================ [File too large to display: 395 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-off-outline.glif ================================================ [File too large to display: 968 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-off.glif ================================================ [File too large to display: 667 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-opacity.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-outline.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-root-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-root.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-badge-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-badge.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-small.glif ================================================ [File too large to display: 393 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square-wave.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/square.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/squeegee.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ssh.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stack-exchange.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stack-overflow.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stackpath.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stadium-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stadium.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stairs-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stairs-down.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stairs-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stairs.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stamper.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/standard-definition.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-box-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-check-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-check.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-cog-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-cog.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-crescent.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-david.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-face.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-four-points-outline.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-four-points.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-half-full.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-half.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-minus.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-off.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-remove.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-settings.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-shooting-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-shooting.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-three-points-outline.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star-three-points.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/star.glif ================================================ [File too large to display: 629 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/state-machine.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/steam.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/steering-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/steering.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/step-backward-2.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/step-backward.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/step-forward-2.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/step-forward.glif ================================================ [File too large to display: 548 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stethoscope.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-emoji.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-text-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sticker.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stocking.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stomach.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stool-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stool.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stop-circle.glif ================================================ [File too large to display: 966 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stop.glif ================================================ [File too large to display: 375 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/storage-tank-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/storage-tank.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-24-hour.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-alert-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-clock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-edit-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-search-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-settings-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store-settings.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/store.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/storefront-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/storefront.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stove.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/strategy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stretch-to-page-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/stretch-to-page.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/string-lights-off.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/string-lights.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subdirectory-arrow-left.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subdirectory-arrow-right.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/submarine.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subtitles-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subtitles.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subway-alert-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subway-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/subway.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/summit.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-clock-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-compass.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-snowflake-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-snowflake.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-thermometer-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-thermometer.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-wireless-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sun-wireless.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sunglasses.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surfing.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-2-0.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-2-1.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-3-1.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-5-1-2.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-5-1.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-7-1.glif ================================================ [File too large to display: 1013 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/svg.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-bold.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-bold.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/swim.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/switch.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sword-cross.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sword.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-hangul.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-hiragana.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-katakana-halfwidth.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-katakana.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/symbol.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/symfony.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sync-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sync-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sync-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/sync.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab-unselected.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tab.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-account.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-down.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-left.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-up.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-border.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-cancel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-chair.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-clock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-cog.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-column-plus-after.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-column-plus-before.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-column-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-column-width.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-column.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-eye-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-eye.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-furniture.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-headers-eye-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-headers-eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-heart.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-key.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-large-plus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-large-remove.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-large.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-merge-cells.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-network.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-of-contents.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-picnic.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-pivot.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-refresh.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-row-height.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-row-plus-after.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-row-plus-before.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-row-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-row.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-settings.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-split-cell.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-sync.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table-tennis.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/table.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tablet-android.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tablet-cellphone.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tablet-dashboard.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tablet.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/taco.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-down-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-down.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-left-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-left.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-right-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-right.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-up-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-check-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-faces.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-heart-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-heart.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-minus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-off-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-plus-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-remove-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-search-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-search.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-text-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tag.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tailwind.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-1.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-2.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-3.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-4.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-5.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tangram.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tank.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tanker-truck.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tape-drive.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tape-measure.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/target-account.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/target-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/target.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/taxi.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tea-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tea.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/teamviewer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/teddy-bear.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/telescope.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-ambient-light.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-classic-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-classic.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-guide.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-pause.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-play.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-shimmer.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television-stop.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/television.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/temperature-celsius.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/temperature-fahrenheit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/temperature-kelvin.glif ================================================ [File too large to display: 745 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tennis-ball.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tennis.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tent.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/terraform.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/test-tube-empty.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/test-tube-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/test-tube.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-account.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-edit-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-edit.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-search-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box-search.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-long.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-recognition.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-search-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-shadow.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-short.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-to-speech-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text-to-speech.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/text.glif ================================================ [File too large to display: 771 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/texture-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/texture.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/theater.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/theme-light-dark.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-chevron-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-chevron-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-high.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-lines.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-low.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-water.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermometer.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermostat-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thermostat.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thought-bubble-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thought-bubble.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumb-down-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumb-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumb-up-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumb-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumbs-up-down-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/thumbs-up-down.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-account.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-confirmation-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-confirmation.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-percent-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket-percent.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ticket.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tie.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tilde-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tilde.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timelapse.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-check-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-clock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-clock.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-help-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-help.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-text-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline-text.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timeline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-10.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-3.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-cancel-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-cancel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-check-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-cog-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-cog.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-edit-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-open-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-open.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-marker-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-marker.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-music-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-music.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-pause-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-pause.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-play-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-play.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-plus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-refresh-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-refresh.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-complete.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-empty.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-full.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-paused.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-settings-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-star-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-stop-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-stop.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sync-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer-sync.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/timetable.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tire.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toaster-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toaster-oven.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toaster.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-variant-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toilet.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toolbox-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toolbox.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tools.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-cellphone.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-image-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-text-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-text.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooltip.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooth-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tooth.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush-electric.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush-paste.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/torch.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tortoise.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toslink.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tournament.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tow-truck.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tower-beach.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tower-fire.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/town-hall.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-marker-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-plus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-remove-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-search-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/track-light.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trackpad-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trackpad.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tractor-variant.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tractor.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trademark.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/traffic-cone.glif ================================================ [File too large to display: 961 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/traffic-light-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/traffic-light.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-door-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-door.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-car.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/train.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tram-side.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tram.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transcribe-close.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transcribe.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transfer-down.glif ================================================ [File too large to display: 955 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transfer-left.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transfer-right.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transfer-up.glif ================================================ [File too large to display: 943 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transfer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection-horizontal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection-variant.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-detour.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-skip.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transit-transfer.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transition-masked.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transition.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/translate-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/translate.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-export.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-import.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trash-can-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trash-can.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-arrow-down.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-arrow-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-full.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-minus.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tray.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/treasure-chest.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tree-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tree.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trello.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trending-down.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trending-neutral.glif ================================================ [File too large to display: 528 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trending-up.glif ================================================ [File too large to display: 688 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triangle-outline.glif ================================================ [File too large to display: 508 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triangle-small-down.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triangle-small-up.glif ================================================ [File too large to display: 360 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triangle-wave.glif ================================================ [File too large to display: 564 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triangle.glif ================================================ [File too large to display: 337 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/triforce.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy-award.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy-broken.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy-variant-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trophy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-alert-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-cargo-container.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-check-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-check.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-delivery-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-delivery.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-fast-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-fast.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-flatbed.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-minus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-snowflake.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck-trailer.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/truck.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/trumpet.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-crew-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-crew.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-v-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-v.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tsunami.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer-alert.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tune-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tune-vertical-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tune-vertical.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tune.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tunnel-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/tunnel.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/turbine.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/turkey.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/turnstile-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/turnstile.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/turtle.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/twitch.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/two-factor-authentication.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/typewriter.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ubisoft.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ubuntu.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ufo-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ufo.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ultra-high-definition.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbraco.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-beach-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-beach.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/undo-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/undo.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unfold-less-horizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unfold-less-vertical.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unfold-more-horizontal.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unfold-more-vertical.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/ungroup.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unicode.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unicorn-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unicorn.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unicycle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unity.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/unreal.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/update.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-multiple.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-network.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/upload.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/usb-flash-drive-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/usb-flash-drive.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/usb-port.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/usb.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vacuum-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vacuum.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/valve-closed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/valve-open.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/valve.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/van-passenger.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/van-utility.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vanish-quarter.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vanish.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vanity-light.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/variable-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/variable.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-arrange-above.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-arrange-below.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-bezier.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-circle-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-circle.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-combine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-curve.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference-ab.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference-ba.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-ellipse.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-intersection.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-line.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-link.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-point.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polygon-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polygon.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-edit.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-radius.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-rectangle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-selection.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-close.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-edit.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-open.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-square.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-triangle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vector-union.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vhs.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vibrate-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vibrate.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-2d.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-3d-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-3d-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-3d.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-4k-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-account.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-box-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-high-definition.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-image.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-input-antenna.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-input-component.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-input-hdmi.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-input-scart.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-input-svideo.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-stabilization.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-switch-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-vintage.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-wireless-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video-wireless.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/video.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-agenda-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-agenda.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-array-outline.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-array.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-carousel-outline.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-carousel.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-column-outline.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-column.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-comfy-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-comfy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-compact-outline.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-compact.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-edit-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-variant-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-day-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-day.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-gallery-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-gallery.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-grid.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-headline.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-list-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-list.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-module-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-module.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-parallel-outline.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-parallel.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-quilt-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-quilt.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-sequential-outline.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-sequential.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-split-horizontal.glif ================================================ [File too large to display: 805 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-split-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-stream-outline.glif ================================================ [File too large to display: 805 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-stream.glif ================================================ [File too large to display: 586 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-week-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/view-week.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vimeo.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/violin.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/virtual-reality.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/virus-off-outline.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/virus-off.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/virus-outline.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/virus.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vlc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/voicemail.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volcano-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volcano.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volleyball.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-high.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-low.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-medium.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-minus.glif ================================================ [File too large to display: 677 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-mute.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-plus.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-source.glif ================================================ [File too large to display: 878 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-variant-off.glif ================================================ [File too large to display: 815 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/volume-vibrate.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vote-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vote.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vpn.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vuejs.glif ================================================ [File too large to display: 749 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/vuetify.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/walk.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-fire.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-variant-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-variant.glif ================================================ [File too large to display: 1017 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-variant-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wall.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-giftcard.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-membership.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet-travel.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallet.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wallpaper.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wan.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wardrobe-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wardrobe.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/warehouse.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-export-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-export.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-import-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-import.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-vibrate-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch-vibrate.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watch.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-opacity.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-percent-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-percent.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-polo.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-pump-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-pump.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-sync.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-thermometer-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-thermometer.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-well-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water-well.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/water.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waterfall.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watering-can-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watering-can.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/watermark.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wave.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waveform.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-left.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waves.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/waze.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-clock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-fog.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-hail.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-hazy.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-hurricane.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-lightning-rainy.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-lightning.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-night-partly-cloudy.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-night.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-cloudy.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-lightning.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-rainy.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-snowy-rainy.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-snowy.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-pouring.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-rainy.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy-heavy.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy-rainy.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset-down.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-tornado.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-windy-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weather-windy.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-box.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-cancel.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-check.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-clock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-minus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-plus.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-refresh.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-remove.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web-sync.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/web.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/webcam-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/webcam.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/webhook.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/webpack.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/webrtc.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wechat.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weight-gram.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weight-kilogram.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weight-lifter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weight-pound.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/weight.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/whatsapp.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wheel-barrow.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wheelchair-accessibility.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wheelchair.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/whistle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/whistle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-auto.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-incandescent.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-iridescent.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-sunny.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/widgets-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/widgets.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-down.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-left-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-left.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-up-down.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-cancel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-cog.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-lock-open.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-marker.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-refresh.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-lock-open.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1.glif ================================================ [File too large to display: 923 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2.glif ================================================ [File too large to display: 923 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-lock-open.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4.glif ================================================ [File too large to display: 537 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-alert-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-lock-open-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-off.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-outline.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi-sync.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wifi.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wikipedia.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wind-power-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wind-power.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine-alert.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine-check.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-close.glif ================================================ [File too large to display: 903 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-closed-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-closed.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-maximize.glif ================================================ [File too large to display: 594 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-minimize.glif ================================================ [File too large to display: 397 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-open-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-restore.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-cog.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-open.glif ================================================ [File too large to display: 946 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/windsock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wiper-wash-alert.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wiper-wash.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wiper.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wizard-hat.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wordpress.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wrap-disabled.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wrap.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wrench-clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wrench-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/wrench.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/xamarin.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/xml.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/xmpp.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/yahoo.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/yeast.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/yin-yang.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/yoga.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/youtube-gaming.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/youtube-studio.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/youtube-subscription.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/youtube-tv.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/youtube.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/yurt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/z-wave.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zend.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zigbee.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zip-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zip-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zip-disk.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-aquarius.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-aries.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-cancer.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-capricorn.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-gemini.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-leo.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-libra.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-pisces.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-sagittarius.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-scorpio.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-taurus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-virgo.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/lib.plist ================================================ [File too large to display: 685.5 KB] ================================================ FILE: sources/nerdfonts/full/original/MaterialDesignIconsDesktop.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/fontinfo.plist ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/A_W_A_Y_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/C_L_E_A_N__C_O_D_E_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/E_X_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif ================================================ [File too large to display: 662 B] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/I_N_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/L_O_N_G__P_A_U_S_E_.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/P_A_I_R__P_R_O_G_R_A_M_M_I_N_G_.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__D_O_N_E_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__E_S_T_I_M_A_T_E_D_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__S_Q_U_A_S_H_E_D_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__T_I_C_K_I_N_G_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/S_H_O_R_T__P_A_U_S_E_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/lib.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/Pomicons.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/fontinfo.plist ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/_notdef.glif ================================================ [File too large to display: 634 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/contents.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uni2630.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_0.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_1.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_2.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_3.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_0.glif ================================================ [File too large to display: 352 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_1.glif ================================================ [File too large to display: 503 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_2.glif ================================================ [File too large to display: 353 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_3.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_4.glif ================================================ [File too large to display: 809 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_5.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_6.glif ================================================ [File too large to display: 807 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_7.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_8.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_9.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_A_.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_B_.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_C_.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_D_.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_E_.glif ================================================ [File too large to display: 364 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_F_.glif ================================================ [File too large to display: 415 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_0.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_1.glif ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_2.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_3.glif ================================================ [File too large to display: 13.2 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_4.glif ================================================ [File too large to display: 28.7 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_5.glif ================================================ [File too large to display: 28.7 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_6.glif ================================================ [File too large to display: 17.1 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_7.glif ================================================ [File too large to display: 17.0 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_8.glif ================================================ [File too large to display: 38.5 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_A_.glif ================================================ [File too large to display: 39.0 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_C_.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_D_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_E_.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_F_.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_0.glif ================================================ [File too large to display: 20.8 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_1.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_2.glif ================================================ [File too large to display: 615 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_4.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/lib.plist ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/PowerlineExtraSymbols.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/fontinfo.plist ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/H_E_A_V_Y_ C_I_R_C_L_E_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ O_N_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ O_N_-O_F_F_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ S_L_E_E_P_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/glyphs/contents.plist ================================================ [File too large to display: 626 B] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/lib.plist ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/Unicode_IEC_symbol_font.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/features.fea ================================================ [File too large to display: 118 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/fontinfo.plist ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/account.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/activate-breakpoints.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/add.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/archive.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-both.glif ================================================ [File too large to display: 892 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-small-down.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-small-left.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-small-right.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-small-up.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-swap.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/azure-devops.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/azure.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/beaker-stop.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bell-dot.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bell.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bold.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/book.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bracket-dot.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bracket-error.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/browser.glif ================================================ [File too large to display: 942 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/bug.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/calendar.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/call-incoming.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/call-outgoing.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/case-sensitive.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/check-all.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/check.glif ================================================ [File too large to display: 501 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/checklist.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 517 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 521 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 515 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chrome-close.glif ================================================ [File too large to display: 728 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chrome-maximize.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chrome-minimize.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/chrome-restore.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circle-filled.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circle-large-filled.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circle-large-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circle-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circle-slash.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/circuit-board.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/clear-all.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/clippy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/close-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/close.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/cloud-download.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/cloud-upload.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/cloud.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/code.glif ================================================ [File too large to display: 1022 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/collapse-all.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/color-mode.glif ================================================ [File too large to display: 938 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/combine.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/comment-discussion.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/compass-active.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/compass-dot.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/compass.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/contents.plist ================================================ [File too large to display: 24.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/copy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/dash.glif ================================================ [File too large to display: 374 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/dashboard.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/database.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-all.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-alt-small.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-alt.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-conditional-unverified.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-conditional.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-data-unverified.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-data.glif ================================================ [File too large to display: 493 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-function-unverified.glif ================================================ [File too large to display: 552 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-function.glif ================================================ [File too large to display: 372 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-log-unverified.glif ================================================ [File too large to display: 627 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-log.glif ================================================ [File too large to display: 406 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-breakpoint-unsupported.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-console.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-continue-small.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-continue.glif ================================================ [File too large to display: 832 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-coverage.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-disconnect.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-line-by-line.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-pause.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-rerun.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-restart-frame.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-restart.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-reverse-continue.glif ================================================ [File too large to display: 849 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-stackframe-active.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-stackframe-dot.glif ================================================ [File too large to display: 542 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-stackframe.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-start.glif ================================================ [File too large to display: 629 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-step-back.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-step-into.glif ================================================ [File too large to display: 1023 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-step-out.glif ================================================ [File too large to display: 1021 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-step-over.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug-stop.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/debug.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/desktop-download.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/device-camera-video.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/device-camera.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/device-mobile.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff-added.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff-ignored.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff-modified.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff-removed.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff-renamed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/diff.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/discard.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/edit.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/editor-layout.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/empty-window.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/error.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/exclude.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/expand-all.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/export.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/extensions.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/eye-closed.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/eye.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/feedback.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-binary.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-code.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-media.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-pdf.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-submodule.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-symlink-directory.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-symlink-file.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file-zip.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/file.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/files.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/filter-filled.glif ================================================ [File too large to display: 562 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/filter.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/flame.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/fold-down.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/fold-up.glif ================================================ [File too large to display: 833 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/fold.glif ================================================ [File too large to display: 827 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/folder-active.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/folder-library.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/folder-opened.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/folder.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/gear.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/gift.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/gist-secret.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-commit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-compare.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-merge.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-pull-request-closed.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-pull-request-create.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-pull-request-draft.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/git-pull-request.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/github-action.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/github-alt.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/github-inverted.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/github.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/globe.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/go-to-file.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/grabber.glif ================================================ [File too large to display: 579 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/graph-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/graph-line.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/graph-scatter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/gripper.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/group-by-ref-type.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/heart.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/history.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/home.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/horizontal-rule.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/hubot.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/info.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/inspect.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/issue-draft.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/issue-reopened.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/issues.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/italic.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/jersey.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/json.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/kebab-vertical.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/key.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/law.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/layers-active.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/layers-dot.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/layers.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/layout.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/library.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/lightbulb-autofix.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/lightbulb.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/link-external.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/link.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-filter.glif ================================================ [File too large to display: 784 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-flat.glif ================================================ [File too large to display: 977 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-ordered.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-selection.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-tree.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/list-unordered.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/live-share.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/loading.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/location.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/lock-small.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/lock.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/magnet.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mail-read.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mail.glif ================================================ [File too large to display: 980 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/markdown.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/megaphone.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mention.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/menu.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/merge.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/milestone.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mirror.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mortar-board.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/move.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/multiple-windows.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/mute.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/new-file.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/new-folder.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/newline.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/no-newline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/note.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/notebook-template.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/notebook.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/octoface.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/open-preview.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/organization.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/output.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/package.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/paintcan.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pass-filled.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pass.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/person-add.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/person.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pie-chart.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pin.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pinned-dirty.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pinned.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/play-circle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/play.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/plug.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/preserve-case.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/preview.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/primitive-square.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/project.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/pulse.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/quote.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/radio-tower.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/reactions.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/record-keys.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/record.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/redo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/references.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/refresh.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/regex.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/remote-explorer.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/remote.glif ================================================ [File too large to display: 833 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/remove.glif ================================================ [File too large to display: 378 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/replace-all.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/replace.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/reply.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo-clone.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo-force-push.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo-forked.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo-pull.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo-push.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/repo.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/report.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/request-changes.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/root-folder-opened.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/root-folder.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/rss.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/run-above.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/run-all.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/run-below.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/run-errors.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/save-all.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/save-as.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/save.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/screen-full.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/screen-normal.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/search-stop.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/search.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/server-environment.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/server-process.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/server.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/settings-gear.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/settings.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/shield.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/sign-in.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/sign-out.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/smiley.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/sort-precedence.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/source-control.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/split-horizontal.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/split-vertical.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/squirrel.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/star-empty.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/star-full.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/star-half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/stop-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-array.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-boolean.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-class.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-color.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-constant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-enum-member.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-enum.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-event.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-field.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-file.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-interface.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-key.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-keyword.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-method.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-misc.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-namespace.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-numeric.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-operator.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-parameter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-property.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-ruler.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-snippet.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-string.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-structure.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/symbol-variable.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/sync-ignored.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/sync.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/table.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/tag.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/tasklist.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/telescope.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-bash.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-cmd.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-debian.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-linux.glif ================================================ [File too large to display: 13.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-powershell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-tmux.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal-ubuntu.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/terminal.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/text-size.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/three-bars.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/thumbsdown.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/thumbsup.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/tools.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/trash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/triangle-down.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/triangle-left.glif ================================================ [File too large to display: 476 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/triangle-right.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/triangle-up.glif ================================================ [File too large to display: 472 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/type-hierarchy-sub.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/type-hierarchy-super.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/type-hierarchy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/unfold.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/ungroup-by-ref-type.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/unlock.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/unmute.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/unverified.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/variable-group.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/verified-filled.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/verified.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/versions.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/vm-active.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/vm-connect.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/vm-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/vm-running.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/vm.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/wand.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/warning.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/watch.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/whitespace.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/whole-word.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/window.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/word-wrap.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/workspace-trusted.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/workspace-unknown.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/workspace-untrusted.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/zoom-in.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/glyphs/zoom-out.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/lib.plist ================================================ [File too large to display: 36.3 KB] ================================================ FILE: sources/nerdfonts/full/original/codicon.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/codicon_LICENSE.txt ================================================ [File too large to display: 18.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/fontinfo.plist ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_600.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_601.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_602.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_603.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_604.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_605.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_606.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_607.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_608.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_609.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60A_.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60B_.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60C_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60D_.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60E_.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_60F_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_610.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_611.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_612.glif ================================================ [File too large to display: 28.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_613.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_614.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_615.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_616.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_617.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_618.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_619.glif ================================================ [File too large to display: 14.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61A_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61B_.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61C_.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61D_.glif ================================================ [File too large to display: 12.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_61F_.glif ================================================ [File too large to display: 12.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_620.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_621.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_622.glif ================================================ [File too large to display: 17.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_623.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_624.glif ================================================ [File too large to display: 23.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_625.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_626.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_627.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_628.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_629.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62A_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62B_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62D_.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62E_.glif ================================================ [File too large to display: 18.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_62F_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_630.glif ================================================ [File too large to display: 13.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_631.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_632.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_633.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_634.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_635.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_636.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_637.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_638.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_639.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63A_.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63B_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63C_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63D_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63E_.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_63F_.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_640.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_641.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_642.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_643.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_644.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_645.glif ================================================ [File too large to display: 15.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_646.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_647.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_648.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_649.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64A_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64B_.glif ================================================ [File too large to display: 20.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64C_.glif ================================================ [File too large to display: 26.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64D_.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64E_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_64F_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_650.glif ================================================ [File too large to display: 16.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_651.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_652.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_653.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_654.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_655.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_656.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_657.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_658.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_659.glif ================================================ [File too large to display: 23.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65B_.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65C_.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65D_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65E_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_65F_.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_660.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_661.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_662.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_663.glif ================================================ [File too large to display: 12.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_664.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_665.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_666.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_667.glif ================================================ [File too large to display: 76.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_668.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_669.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66A_.glif ================================================ [File too large to display: 19.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66B_.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66C_.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66D_.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66E_.glif ================================================ [File too large to display: 12.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_66F_.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_670.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_671.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_672.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_673.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_674.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_675.glif ================================================ [File too large to display: 19.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_676.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_677.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_678.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_679.glif ================================================ [File too large to display: 65.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67A_.glif ================================================ [File too large to display: 13.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67B_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67C_.glif ================================================ [File too large to display: 42.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67D_.glif ================================================ [File too large to display: 13.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_67F_.glif ================================================ [File too large to display: 23.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_680.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_681.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_682.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_683.glif ================================================ [File too large to display: 56.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_684.glif ================================================ [File too large to display: 45.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_685.glif ================================================ [File too large to display: 45.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_686.glif ================================================ [File too large to display: 16.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_687.glif ================================================ [File too large to display: 8.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_688.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_689.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68A_.glif ================================================ [File too large to display: 20.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68B_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68C_.glif ================================================ [File too large to display: 28.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68D_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68E_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_68F_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_690.glif ================================================ [File too large to display: 17.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_691.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_692.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_693.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_694.glif ================================================ [File too large to display: 26.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_695.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_696.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_697.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_698.glif ================================================ [File too large to display: 15.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_699.glif ================================================ [File too large to display: 8.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69A_.glif ================================================ [File too large to display: 25.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69B_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69C_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69D_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69E_.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_69F_.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_0.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_1.glif ================================================ [File too large to display: 15.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_2.glif ================================================ [File too large to display: 859 B] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_4.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_5.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_6.glif ================================================ [File too large to display: 8.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_7.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_8.glif ================================================ [File too large to display: 21.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_9.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_A_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_B_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_C_.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_D_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_E_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6A_F_.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_0.glif ================================================ [File too large to display: 72.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_1.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_2.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_3.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_4.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_5.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_6.glif ================================================ [File too large to display: 81.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_7.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_8.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_9.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_A_.glif ================================================ [File too large to display: 12.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_B_.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_C_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_D_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_E_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6B_F_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_0.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_1.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_3.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_4.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/glyphs/uniE_6C_5.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/lib.plist ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/devicons.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/fontinfo.plist ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/apple-fruit.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/atom.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bacteria.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/banana.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bath.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bed.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/benzene.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bigger.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/biohazard.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/blogger-circle.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/blogger-square.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bones.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/book-open-o.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/book-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/brain.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/bread.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/butterfly.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/carot.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-by.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-cc.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-nc-eu.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-nc-jp.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-nc.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-nd.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-remix.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-sa.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-share.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cc-zero.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/checklist-o.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cherry.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-bishop.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-horse.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-king.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-pawn.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-queen.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chess-tower.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chesse.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chicken-thigh.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chilli.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/chip.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cicling.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cockroach.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/coffe-beans.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/coins.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/comb.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/comet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/contents.plist ================================================ [File too large to display: 9.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/crown.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/cup-coffe.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/dice.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/disco.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/dna.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/donut.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/dress.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/drop.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ello.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/envelope-open-o.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/envelope-open.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/equal-bigger.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/equal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/feedly.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/file-export.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/file-import.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/fingerprint.glif ================================================ [File too large to display: 10.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/floppy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/footprint.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/freecodecamp.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/galaxy.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/galery.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/gift-card.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/glass.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/google-drive.glif ================================================ [File too large to display: 934 B] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/google-play.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/gps.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/grav.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/guitar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/gut.glif ================================================ [File too large to display: 59.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/halter.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/hamburger.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/hat.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/hexagon.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/high-heel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/hotdog.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ice-cream.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/id-card.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/imdb.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/injection.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/isle.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/java.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/layers.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/lips.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/lipstick.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/liver.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/lollipop.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/loyalty-card.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/lung.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/makeup-brushes.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/maximize.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/meat.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/medicine.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/microscope.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/milk-bottle.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/minimize.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/molecule.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/moon-cloud.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/mountains.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/mushroom.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/mustache.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/mysql.glif ================================================ [File too large to display: 21.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/nintendo.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/orange.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/palette-color.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/peach.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/pear.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/pi.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/pizza.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/planet.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/plant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/playstation.glif ================================================ [File too large to display: 20.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/poison.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/popcorn.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/popsicle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/pulse.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/python.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/quora-circle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/quora-square.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/radioactive.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/raining.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/real-heart.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/refrigerator.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/restore.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ring.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ruby-o.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/ruler.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/shirt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/slash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/smaller.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/snowing.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/soda.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/sofa.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/soup.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/spermatozoon.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/spin-double.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/stomach.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/storm.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/sun-cloud.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/sushi.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/tacos.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/telegram-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/telegram.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/telescope.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/thermometer-high.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/thermometer-low.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/thermometer.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/thin-close.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/toilet.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/tools.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/tooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/tree.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/triangle-ruler.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/uterus.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/virus.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/w3c.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/walking.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/wallet.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/wind.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/glyphs/xbox.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/lib.plist ================================================ [File too large to display: 15.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-awesome-extension.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/fontinfo.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_O_S_C_ O_S_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_lma L_inux.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_lpine.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_pple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rch L_inux.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rchL_abs.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rchcraft.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rcoL_inux.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rduino.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_rtix L_inux.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/A_wesome W_M_.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/B_igL_inux.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/B_udgie.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/C_entO_S_.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/C_innamon.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/C_odeberg.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/C_oreO_S_.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/C_rystal L_inux.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/D_ebian.glif ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/D_eepin.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/D_evuan.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/D_ocker.glif ================================================ [File too large to display: 15.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/E_ndeavour O_S_.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/E_nlightenment.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_-droid.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_O_S_D_E_M_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_edora (inverse).glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_edora.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_erris.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_lathub.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_luxbox.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_orgejo.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_reeB_S_D_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/F_reeC_A_D_.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_I_M_P_.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_N_O_M_E_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_N_U_ G_uix.glif ================================================ [File too large to display: 15.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_T_K_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_aruda L_inux.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_entoo.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/G_itea.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/H_yperbola G_N_U_L_inux-libre.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/H_yprland.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/I_nkscape.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/J_W_M_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_D_E_ N_eon.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_D_E_ P_lasma.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_ali L_inux.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_denlive.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_iC_ad.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_rita.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_ubuntu (inverse).glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/K_ubuntu.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_X_D_E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_X_L_E_ L_inux.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_X_Q_t.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_inux M_int (inverse).glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_inux M_int.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/L_oc-O_S_.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/M_A_T_E_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/M_X_ L_inux.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/M_ageia.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/M_andriva.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/M_anjaro.glif ================================================ [File too large to display: 957 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/N_eovim.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/N_ixO_S_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_S_H_.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_S_H_W_A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_S_I_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_ctoprint.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_penB_S_D_.glif ================================================ [File too large to display: 90.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_penS_C_A_D_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/O_penS_U_S_E_.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/P_arabola G_N_U_L_inux-libre.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/P_arrot O_S_.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/P_op!_O_S_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/P_rusa S_licer.glif ================================================ [File too large to display: 839 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/P_uppy L_inux.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/Q_tile.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/Q_ubesO_S_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/R_I_S_C_-V_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/R_aspberry pi.glif ================================================ [File too large to display: 15.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/R_ed H_at.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/R_epR_ap.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/R_ocky L_inux.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_abayon.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_lackware (inverse).glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_lackware.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_nappy.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_olus.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/S_way.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/T_ails.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/T_hunderbird.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/T_or B_rowser.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/T_risquel G_N_U_L_inux.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/T_ux.glif ================================================ [File too large to display: 39.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/U_buntu (inverse).glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/U_buntu.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/V_S_ C_odium.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/V_anilla O_S_.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/V_oid.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/W_ayland.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/W_ikimedia.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/X_F_C_E_.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/X_eroL_inux.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/X_monad.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/X_org.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/Z_orin O_S_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/bspwm.glif ================================================ [File too large to display: 14.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/contents.plist ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/dwm.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/elementary O_S_.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/freedesktop.org.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/i3.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/illumos.glif ================================================ [File too large to display: 20.7 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs/mpv.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs.public.background/T_ux.glif ================================================ [File too large to display: 39.1 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 242 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/lib.plist ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/original/font-logos.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/font_awesome_LICENSE.txt ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/materialDesign_LICENSE.txt ================================================ [File too large to display: 992 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/fontinfo.plist ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/accessibility-inset.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/accessibility.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/alert-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/alert.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/apps.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/archive.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-both.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-down-left.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-down-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-switch.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-up-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-up-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/beaker.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bell-fill.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bell-slash.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bell.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/blocked.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bold.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/book.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bookmark-fill.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bookmark-slash-fill.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bookmark-slash.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/browser.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/bug.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/cache.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/calendar.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/check-circle-fill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/check-circle.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/checkbox.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/checklist.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/circle-slash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/clock-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/cloud-offline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/cloud.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/code-of-conduct.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/code-review.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/code-square.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/code.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/codescan-checkmark.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/codescan.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/codespaces.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/columns.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/command-palette.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/comment-discussion.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/comment.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/commit.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/container.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 18.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/copilot-error.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/copilot-warning.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/copilot.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/copy.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/cpu.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/cross-reference.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/dash.glif ================================================ [File too large to display: 833 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/database.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/dependabot.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/desktop-download.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/device-camera-video.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/device-camera.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/device-desktop.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/device-mobile.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diamond.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff-added.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff-ignored.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff-modified.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff-removed.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff-renamed.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/diff.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/discussion-closed.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/discussion-duplicate.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/discussion-outdated.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/dot-fill.glif ================================================ [File too large to display: 739 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/dot.glif ================================================ [File too large to display: 1010 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/download.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/duplicate.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/eye-closed.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-discussion.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-forked.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-heart.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-merged.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-person.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-repo.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-rocket.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-star.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-tag.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/feed-trophy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-added.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-badge.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-binary.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-code.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-diff.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-directory-fill.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-directory-open-fill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-directory.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-media.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-moved.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-removed.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-submodule.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-symlink-directory.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-symlink-file.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file-zip.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/file.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/fiscal-host.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/flame.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/fold-down.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/fold-up.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/fold.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/gear.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/gift.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-branch.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-commit.glif ================================================ [File too large to display: 28.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-compare.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-merge-queue.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-merge.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-pull-request-closed.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-pull-request-draft.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/git-pull-request.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/globe.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/goal.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/grabber.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/hash.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/heading.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/heart-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/heart.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/history.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/home-fill.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/home.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/horizontal-rule.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/hourglass.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/hubot.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/id-badge.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/image.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/inbox.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/info.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-closed.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-draft.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-opened.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-reopened.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-tracked-by.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/issue-tracks.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/italic.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/iterations.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/kebab-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/key-asterisk.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/key.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/law.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/light-bulb.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/link-external.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/link.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/list-ordered.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/list-unordered.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/location.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/log.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/logo-gist.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/logo-github.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mail.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mark-github.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/markdown.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/megaphone.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mention.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/meter.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/milestone.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mirror.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/moon.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mortar-board.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/move-to-bottom.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/move-to-end.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/move-to-start.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/move-to-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/multi-select.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/mute.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/no-entry.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/north-star.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/note.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/number.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/organization.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/package-dependencies.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/package-dependents.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/package.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/paintbrush.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/paper-airplane.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/paperclip.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/passkey-fill.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/paste.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/pencil.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/people.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/person-add.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/person-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/person.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/pin.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/play.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/plug.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/plus-circle.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/project-roadmap.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/project-symlink.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/project-template.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/project.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/pulse.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/question.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/quote.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/read.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/rel-file-path.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/reply.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-clone.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-deleted.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-forked.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-locked.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-pull.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-push.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo-template.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/repo.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/report.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/rocket.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/rows.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/rss.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/screen-full.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/screen-normal.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/server.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/share-android.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/share.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/shield-check.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/shield-lock.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/shield-slash.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/shield-x.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/shield.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sidebar-collapse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sidebar-expand.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sign-in.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sign-out.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/single-select.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/skip-fill.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/skip.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sliders.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/smiley.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sort-asc.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sort-desc.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sparkle-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sponsor-tiers.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/square-fill.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/square.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/squirrel.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/stack.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/star-fill.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/star.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/stop.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/stopwatch.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/strikethrough.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sun.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/sync.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/tab-external.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/tab.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/table.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/tag.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/tasklist.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/telescope-fill.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/telescope.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/terminal.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/three-bars.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/thumbsdown.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/thumbsup.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/tools.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/trash.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/triangle-down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/triangle-left.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/triangle-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/triangle-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/trophy.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/typography.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unfold.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unlink.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unlock.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unmute.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unread.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/unverified.glif ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/upload.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/verified.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/versions.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/video.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/webhook.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/workflow.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/x-circle-fill.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/x-circle.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/x.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/zap.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/zoom-in.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/glyphs/zoom-out.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/lib.plist ================================================ [File too large to display: 27.1 KB] ================================================ FILE: sources/nerdfonts/full/original/octicons.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/octicons_LICENSE.txt ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/fontinfo.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/contents.plist ================================================ [File too large to display: 12.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_asm.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_c.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_common_lisp.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_cpp.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_crystal.glif ================================================ [File too large to display: 828 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_default.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_electron.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_elixir.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_elm.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_emacs.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_fennel.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder.glif ================================================ [File too large to display: 651 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_config.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_git.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_github.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_npm.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_oct.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_folder_open.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_go.glif ================================================ [File too large to display: 12.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_home.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_kotlin.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_msdos.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_neovim.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_orgmode.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_play_arrow.glif ================================================ [File too large to display: 520 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_purescript.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_scheme.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_toml.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_v_lang.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_vim.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_custom_windows.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_indent_line.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_apple.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_argdown.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_asm.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_audio.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_babel.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_bazel.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_bicep.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_bower.glif ================================================ [File too large to display: 14.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_bsl.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_c.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_c_sharp.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_cake.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_cake_php.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_checkbox.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_checkbox_unchecked.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_clock.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_clojure.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_code_climate.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_code_search.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_coffee.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_coldfusion.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_config.glif ================================================ [File too large to display: 8.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_cpp.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_crystal_embedded.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_css.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_csv.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_cu.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_d.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_dart.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_db.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_default.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_deprecation_cop.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_docker.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_editorconfig.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ejs.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_elixir_script.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_error.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_eslint.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ethereum.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_f_sharp.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_favicon.glif ================================================ [File too large to display: 844 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_firebase.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_firefox.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_folder.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_font.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_git.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_github.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_gitlab.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_go.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_go2.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_godot.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_gradle.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_grails.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_graphql.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_grunt.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_gulp.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_hacklang.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_haml.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_happenings.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_haskell.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_haxe.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_heroku.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_hex.glif ================================================ [File too large to display: 953 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_html.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ignored.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_illustrator.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_image.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_info.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ionic.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_jade.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_java.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_javascript.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_jenkins.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_jinja.glif ================================================ [File too large to display: 14.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_json.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_julia.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_karma.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_license.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_liquid.glif ================================================ [File too large to display: 12.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_livescript.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_lua.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_makefile.glif ================================================ [File too large to display: 972 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_markdown.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_maven.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_mdo.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_mustache.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_new_file.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_nim.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_notebook.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_npm.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_nunjucks.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ocaml.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_odata.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_pddl.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_pdf.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_perl.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_photoshop.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_php.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_pipeline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_plan.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_platformio.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_powershell.glif ================================================ [File too large to display: 980 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_prisma.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_project.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_prolog.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_pug.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_puppet.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_python.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_r.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_rails.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_react.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_reasonml.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_rescript.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_rollup.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_ruby.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_rust.glif ================================================ [File too large to display: 29.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_salesforce.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_sass.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_sbt.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_scala.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_search.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_settings.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_shell.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_slim.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_smarty.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_spring.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_stylelint.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_stylus.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_sublime.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_svelte.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_svg.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_swift.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_terraform.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_tex.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_todo.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_tsconfig.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_twig.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_typescript.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_vala.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_video.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_vue.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_wasm.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_wat.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_webpack.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_wgt.glif ================================================ [File too large to display: 13.2 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_word.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_xls.glif ================================================ [File too large to display: 8.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_xml.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_yarn.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_yml.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_zig.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/glyphs/i_seti_zip.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/lib.plist ================================================ [File too large to display: 18.7 KB] ================================================ FILE: sources/nerdfonts/full/original/original-source.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/fontinfo.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/contents.plist ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_000.glif ================================================ [File too large to display: 16.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_001.glif ================================================ [File too large to display: 13.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_002.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_003.glif ================================================ [File too large to display: 13.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_004.glif ================================================ [File too large to display: 10.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_005.glif ================================================ [File too large to display: 13.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_006.glif ================================================ [File too large to display: 12.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_007.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_008.glif ================================================ [File too large to display: 16.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_009.glif ================================================ [File too large to display: 10.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_00A_.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_00B_.glif ================================================ [File too large to display: 14.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_00C_.glif ================================================ [File too large to display: 12.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_00D_.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_00E_.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_010.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_011.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_012.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_013.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_014.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_015.glif ================================================ [File too large to display: 12.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_016.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_017.glif ================================================ [File too large to display: 20.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_018.glif ================================================ [File too large to display: 9.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_019.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_01A_.glif ================================================ [File too large to display: 17.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_01B_.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_01C_.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_01D_.glif ================================================ [File too large to display: 14.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_01E_.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_021.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_022.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_023.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_024.glif ================================================ [File too large to display: 14.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_025.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_026.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_027.glif ================================================ [File too large to display: 12.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_028.glif ================================================ [File too large to display: 12.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_029.glif ================================================ [File too large to display: 18.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02A_.glif ================================================ [File too large to display: 13.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02B_.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02C_.glif ================================================ [File too large to display: 15.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02D_.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02E_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_02F_.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_030.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_031.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_032.glif ================================================ [File too large to display: 13.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_033.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_034.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_035.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_036.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_037.glif ================================================ [File too large to display: 18.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_038.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_039.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_03A_.glif ================================================ [File too large to display: 12.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_03B_.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_03C_.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_03D_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_03E_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_040.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_041.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_042.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_043.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_044.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_045.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_046.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_047.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_048.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_049.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_04A_.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_04B_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_04C_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_04D_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_04E_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_050.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_051.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_052.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_053.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_054.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_055.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_056.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_057.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_058.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_059.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_05A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_05B_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_05C_.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_05D_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_05E_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_060.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_061.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_062.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_063.glif ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_064.glif ================================================ [File too large to display: 12.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_065.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_066.glif ================================================ [File too large to display: 14.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_067.glif ================================================ [File too large to display: 14.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_068.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_069.glif ================================================ [File too large to display: 14.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_06A_.glif ================================================ [File too large to display: 15.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_06B_.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_06C_.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_06D_.glif ================================================ [File too large to display: 12.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_06E_.glif ================================================ [File too large to display: 11.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_070.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_071.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_072.glif ================================================ [File too large to display: 14.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_073.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_074.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_075.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_076.glif ================================================ [File too large to display: 10.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_077.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_078.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_079.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_07A_.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_07B_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_07C_.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_07D_.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_07E_.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_080.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_081.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_082.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_083.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_084.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_085.glif ================================================ [File too large to display: 15.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_086.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_087.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_088.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_089.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08A_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08B_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08C_.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08D_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08E_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_08F_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_090.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_091.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_092.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_093.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_094.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_095.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_096.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_097.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_098.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_099.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09A_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09B_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09C_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09D_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09E_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_09F_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_0.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_1.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_2.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_3.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_4.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_5.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_6.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_7.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_8.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_A_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_B_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_D_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_E_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0A_F_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_0.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_1.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_2.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_3.glif ================================================ [File too large to display: 18.5 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_4.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_5.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_6.glif ================================================ [File too large to display: 14.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_7.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_8.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_9.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_A_.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_B_.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_C_.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_D_.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_E_.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0B_F_.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_0.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_1.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_2.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_3.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_4.glif ================================================ [File too large to display: 14.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_5.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_6.glif ================================================ [File too large to display: 8.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_7.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_8.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_9.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_B_.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_D_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_E_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0C_F_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_0.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_1.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_2.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_3.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_4.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_5.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_6.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_8.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_9.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_A_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_B_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_C_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_D_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_E_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0D_F_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_0.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_1.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_2.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_3.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_4.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_5.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_6.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_7.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_8.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_9.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_A_.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/glyphs/uniF_0E_B_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/lib.plist ================================================ [File too large to display: 23.0 KB] ================================================ FILE: sources/nerdfonts/full/original/weathericons-regular-webfont.ufo/metainfo.plist ================================================ [File too large to display: 328 B] ================================================ FILE: sources/nerdfonts/full/original/weathericons_OFL.txt ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/process.py ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/fontinfo.plist ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_279.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_283.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_303.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_312.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_317.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_329.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_334.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_335.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_366.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_372.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_374.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_376.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_378.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_380.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_382.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_383.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_384.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_385.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_386.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_387.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_388.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_389.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_392.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_393.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_395.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_396.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_397.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_398.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_399.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_400.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_402.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_403.glif ================================================ [File too large to display: 14.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_404.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_406.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_407.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_408.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_409.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_410.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_411.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_412.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_413.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_414.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_415.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_416.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_417.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_418.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_419.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_422.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_423.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_424.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_425.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_426.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_427.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_428.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_429.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_430.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_431.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_432.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_433.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_434.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_438.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_439.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_443.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_444.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_445.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_446.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_447.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_448.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_449.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_451.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_452.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_453.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_454.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_455.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_456.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_457.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_458.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_459.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_460.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_461.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_462.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_463.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_464.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_466.glif ================================================ [File too large to display: 19.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_467.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_469.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_470.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_471.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_472.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_473.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_474.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_475.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_476.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_478.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_479.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_480.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_481.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_482.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_483.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_484.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_485.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_486.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_487.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_488.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_489.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_490.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_491.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_492.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_493.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_494.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_496.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_498.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_499.glif ================================================ [File too large to display: 9.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_500.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_501.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_502.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_503.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_504.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_505.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_506.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_507.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_508.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_509.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_511.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_512.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_513.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_514.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_515.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_516.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_517.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_518.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_519.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_520.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_521.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_522.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_523.glif ================================================ [File too large to display: 176 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_524.glif ================================================ [File too large to display: 176 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_525.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_526.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_527.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_528.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_529.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_530.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_531.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_532.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_533.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_534.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_535.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_536.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_537.glif ================================================ [File too large to display: 24.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_538.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_539.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_540.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_541.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_542.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_543.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_544.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_545.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_546.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_547.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_548.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_549.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_550.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_551.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_552.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_553.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_554.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_555.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_556.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_557.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_558.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_559.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_560.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_561.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_562.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_563.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_564.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_565.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_566.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_567.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_568.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_569.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_572.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_574.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_575.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_576.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_577.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_578.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_579.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_580.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_581.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_582.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_583.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_584.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_585.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_586.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_587.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_588.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_589.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_590.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_591.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_592.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_593.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_594.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_595.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_596.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_597.glif ================================================ [File too large to display: 942 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_598.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_602.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_603.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_604.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_607.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_608.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_609.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_610.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_611.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_612.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_613.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_614.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_615.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_616.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_617.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_618.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_619.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_620.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_621.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_622.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_623.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_624.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_625.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_626.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_627.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_628.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/_629.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/adjust.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/adn.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/align_center.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/align_justify.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/align_left.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/align_right.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ambulance.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/anchor.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/android.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/angle_down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/angle_left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/angle_right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/angle_up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/apple.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/archive.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/arrow_circle_alt_left.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/arrow_down.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/arrow_left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/arrow_right.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/arrow_up.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/backward.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ban_circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bar_chart.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/barcode.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/beer.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bell.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bell_alt.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bitbucket_sign.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bold.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bolt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/book.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bookmark_empty.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/btc.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bug.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/building.glif ================================================ [File too large to display: 14.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bullhorn.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/calendar.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/calendar_empty.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/camera.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/camera_retro.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/caret_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/caret_left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/caret_right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/caret_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/certificate.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/check.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/check_empty.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/check_minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/check_sign.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_sign_down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_sign_left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_sign_right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_sign_up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/chevron_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle_arrow_down.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle_arrow_left.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle_arrow_right.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle_arrow_up.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/circle_blank.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cloud_download.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cloud_upload.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/code.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/code_fork.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/coffee.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cog.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cogs.glif ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/collapse.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/collapse_alt.glif ================================================ [File too large to display: 192 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/collapse_top.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/columns.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/comment_alt.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/comments.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/comments_alt.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/compass.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/contents.plist ================================================ [File too large to display: 37.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/copy.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/credit_card.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/crop.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/css3.glif ================================================ [File too large to display: 896 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/cut.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/dashboard.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/desktop.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/dot_circle_alt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/double_angle_down.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/double_angle_left.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/double_angle_right.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/double_angle_up.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/download.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/download_alt.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/dribble.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/dropbox.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/edit.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/edit_sign.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/eject.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ellipsis_horizontal.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ellipsis_vertical.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/envelope.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/envelope_alt.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/eur.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/exchange.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/exclamation.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/exclamation_sign.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/expand_alt.glif ================================================ [File too large to display: 188 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/external_link.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/eye_close.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/eye_open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f0fe.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f171.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f1a1.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f1a4.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f1ab.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f1f3.glif ================================================ [File too large to display: 15.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f1fc.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f210.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f212.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f260.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f261.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f263.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/f27e.glif ================================================ [File too large to display: 711 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/facebook.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/facebook_sign.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/facetime_video.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fast_backward.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fast_forward.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/female.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fighter_jet.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/file.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/file_alt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/file_text.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/file_text_alt.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/film.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fire.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fire_extinguisher.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/flag.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/flag_alt.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/flag_checkered.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/flickr.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/folder_close.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/folder_close_alt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/folder_open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/folder_open_alt.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/font.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/food.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/forward.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/foursquare.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/frown.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/fullscreen.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/gamepad.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/gbp.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/gift.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/github.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/github_alt.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/github_sign.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/gittip.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/glass.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/globe.glif ================================================ [File too large to display: 19.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/google_plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/google_plus_sign.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/group.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/h_sign.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hand_down.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hand_left.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hand_right.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hand_up.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hdd.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/headphones.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/heart.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/heart_empty.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/home.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/hospital.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/html5.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/indent_left.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/indent_right.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/info_sign.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/inr.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/instagram.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/italic.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/jpy.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/key.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/keyboard.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/krw.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/laptop.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/leaf.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/legal.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/lemon.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/level_down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/level_up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/light_bulb.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/link.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/linkedin.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/linkedin_sign.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/linux.glif ================================================ [File too large to display: 16.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/list.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/list_alt.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/location_arrow.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/lock.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/long_arrow_down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/long_arrow_left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/long_arrow_right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/long_arrow_up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/magic.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/magnet.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/male.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/map_marker.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/maxcdn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/medkit.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/meh.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/microphone.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/microphone_off.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/minus.glif ================================================ [File too large to display: 907 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/minus_sign.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/minus_sign_alt.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/mobile_phone.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/money.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/move.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/music.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ok.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ok_circle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ok_sign.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ol.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/paper_clip.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/paste.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/pause.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/pencil.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/phone.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/phone_sign.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/picture.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/pinterest.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/pinterest_sign.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/plane.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/play.glif ================================================ [File too large to display: 738 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/play_circle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/play_sign.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/plus_sign.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/plus_square_o.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/print.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/pushpin.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/puzzle_piece.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/qrcode.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/question.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/question_sign.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/quote_left.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/quote_right.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/random.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/refresh.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/remove_circle.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/remove_sign.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/renren.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/reorder.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/repeat.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/reply.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/reply_all.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/resize_full.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/resize_horizontal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/resize_small.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/resize_vertical.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/retweet.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/road.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/rss.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/rub.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/save.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/screenshot.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/search.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/share.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/share_alt.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/share_sign.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/shield.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/shopping_cart.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sign_blank.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/signal.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/signin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/signout.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sitemap.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/skype.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/smile.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_by_alphabet.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_by_attributes.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_by_attributes_alt.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_by_order.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_by_order_alt.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sort_up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/spinner.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/stack_exchange.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/stackexchange.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/star_empty.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/star_half.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/star_half_empty.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/step_backward.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/step_forward.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/stethoscope.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/stop.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/strikethrough.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/subscript.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/suitcase.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/sun.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/superscript.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/table.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tablet.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tag.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tags.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tasks.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/terminal.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/text_height.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/text_width.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/th.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/th_large.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/th_list.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/thumbs_down_alt.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/thumbs_up_alt.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ticket.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/time.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tint.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/trash.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/trello.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/trophy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/truck.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tumblr.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/tumblr_sign.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/twitter_sign.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/ul.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/underline.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/undo.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1A_0.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1B_1.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1C_0.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1C_1.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_0.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_1.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_2.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_5.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_6.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1D_7.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1E_0.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_1F_0.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_280.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_281.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_285.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_286.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_0.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_1.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_2.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_3.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_4.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_5.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_6.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_7.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_8.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_9.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_A_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_B_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_C_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_D_.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2A_E_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_0.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_1.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_2.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_3.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_4.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_5.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_6.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_7.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_8.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_9.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_A_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_B_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_C_.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_D_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2B_E_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_0.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_1.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_2.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_3.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_4.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_5.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_6.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_8.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_9.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_A_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_B_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_C_.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_D_.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2C_E_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_0.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_1.glif ================================================ [File too large to display: 913 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_2.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_3.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_4.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_5.glif ================================================ [File too large to display: 893 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_6.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_8.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_9.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_A_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_B_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_C_.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_D_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2D_E_.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/uniF_2E_0.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/unlink.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/unlock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/unlock_alt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/upload.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/upload_alt.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/usd.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/user.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/user_md.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/venus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/vimeo_square.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/vk.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/volume_down.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/volume_off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/volume_up.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/warning_sign.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/weibo.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/windows.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/wrench.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/xing.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/xing_sign.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/youtube.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/youtube_play.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/youtube_sign.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/zoom_in.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/glyphs/zoom_out.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/lib.plist ================================================ [File too large to display: 78.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/FontAwesome.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/fontinfo.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ab-testing.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/abacus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/abjad-arabic.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/abjad-hebrew.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/abugida-devanagari.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/abugida-thai.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-network-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-network.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/access-point.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-down-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-left-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-right-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-up-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-arrow-up.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-box-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-box-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cancel-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cancel.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cash-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cash.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-check.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-child-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-child-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-child.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-circle-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-clock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cog-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cog.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-convert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-convert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cowboy-hat-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-cowboy-hat.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-details-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-details.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-edit-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-edit.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-eye-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-eye.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-filter-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-filter.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-group-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-group.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-hard-hat-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-hard-hat.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-heart-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-injury-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-injury.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-key-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-key.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-open-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-open.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-lock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-lock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-check-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-check.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-minus-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-minus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-plus-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-plus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-remove-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-music-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-music.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-network.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-question-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-reactivate-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-reactivate.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-remove-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-school-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-school.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-search-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-settings-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-star-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-star.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-circle-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-circle.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-supervisor.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-switch-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-switch.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-sync-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-sync.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-hat-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-hat.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-off-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-voice.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie-woman.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-tie.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-voice-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-voice.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-wrench-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account-wrench.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/account.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/adjust.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/advertisements-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/advertisements.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-conditioner.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-filter.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-horn.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-humidifier-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-humidifier.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/air-purifier.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airbag.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airballoon-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airballoon.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-cog.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-landing.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-marker.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane-takeoff.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airplane.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/airport.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-bell.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-light.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-note-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-note.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-panel-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-panel.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm-snooze.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alarm.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/album.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-decagram-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-decagram.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-minus.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagon-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagon.glif ================================================ [File too large to display: 974 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagram-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-octagram.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-outline.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-rhombus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert-rhombus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alert.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alien-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alien.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-distribute.glif ================================================ [File too large to display: 834 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-left.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-horizontal-right.glif ================================================ [File too large to display: 822 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-bottom.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-distribute.glif ================================================ [File too large to display: 826 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/align-vertical-top.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive-box-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/all-inclusive.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/allergy.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-a.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-circle-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-b.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-c.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-d.glif ================================================ [File too large to display: 856 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-e.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-f.glif ================================================ [File too large to display: 644 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-g.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-h.glif ================================================ [File too large to display: 726 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-i.glif ================================================ [File too large to display: 755 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-j.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-k.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-l.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-m.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-n.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-o.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-p.glif ================================================ [File too large to display: 944 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-q.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-r.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-s.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-t.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-u.glif ================================================ [File too large to display: 821 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-v.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-w.glif ================================================ [File too large to display: 1001 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-x.glif ================================================ [File too large to display: 752 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-y.glif ================================================ [File too large to display: 600 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha-z.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alpha.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-aurebesh.glif ================================================ [File too large to display: 951 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-cyrillic.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-greek.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-latin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-piqad.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabet-tengwar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-variant-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/alphabetical.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/altimeter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ambulance.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ammunition.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ampersand.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/amplifier-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/amplifier.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/anchor.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/android-messages.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/android-studio.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/android.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/angle-acute.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/angle-obtuse.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/angle-right.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/angular.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/angularjs.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/animation-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/animation-play-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/animation-play.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/animation.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ansible.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/antenna.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/anvil.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apache-kafka.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/api-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/api.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-finder.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-icloud.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-ios.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-caps.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-command.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-control.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-option.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-keyboard-shift.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple-safari.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apple.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-array-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-array.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-braces-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-braces.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-brackets-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-brackets.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-cog-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-export.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-import.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-parentheses-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-parentheses.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-variable-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application-variable.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/application.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/approximately-equal-box.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/approximately-equal.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apps-box.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/apps.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arch.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-down-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-down.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-up-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-arrow-up.glif ================================================ [File too large to display: 937 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-cancel-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-cancel.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-edit-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-eye-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-eye.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-open-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-music-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-music.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-refresh-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-refresh.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-search-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-search.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-settings-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-star-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-star.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-sync-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/archive.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arm-flex-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arm-flex.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrange-bring-forward.glif ================================================ [File too large to display: 875 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrange-bring-to-front.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrange-send-backward.glif ================================================ [File too large to display: 904 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrange-send-to-back.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-all.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-bold-outline.glif ================================================ [File too large to display: 892 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thick.glif ================================================ [File too large to display: 636 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left-thin.glif ================================================ [File too large to display: 545 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-left.glif ================================================ [File too large to display: 621 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-bold-outline.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thick.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right-thin.glif ================================================ [File too large to display: 548 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-bottom-right.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-down.glif ================================================ [File too large to display: 870 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-horizontal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-left.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-right.glif ================================================ [File too large to display: 877 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-up.glif ================================================ [File too large to display: 870 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-collapse.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-auto-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-auto.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-decision.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold-outline.glif ================================================ [File too large to display: 879 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-bold.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-drop-circle.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-left-bold.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-left.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-right-bold.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-right.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thick.glif ================================================ [File too large to display: 620 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down-thin.glif ================================================ [File too large to display: 529 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 608 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-down.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-horizontal.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-left.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-right.glif ================================================ [File too large to display: 796 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-up.glif ================================================ [File too large to display: 791 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand-vertical.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-expand.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-horizontal-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold-outline.glif ================================================ [File too large to display: 879 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bold.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bottom-bold.glif ================================================ [File too large to display: 930 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-bottom.glif ================================================ [File too large to display: 1009 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-drop-circle.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right-bold-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right-bold.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-right.glif ================================================ [File too large to display: 832 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thick.glif ================================================ [File too large to display: 620 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-thin.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-top-bold.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left-top.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 608 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-projectile-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-projectile.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold-outline.glif ================================================ [File too large to display: 877 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bold.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bottom-bold.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-bottom.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-drop-circle.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thick.glif ================================================ [File too large to display: 620 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-thin.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-top-bold.glif ================================================ [File too large to display: 922 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right-top.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 608 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-split-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-split-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bold-outline.glif ================================================ [File too large to display: 887 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bottom-right-bold.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-bottom-right.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thick.glif ================================================ [File too large to display: 628 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left-thin.glif ================================================ [File too large to display: 540 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-left.glif ================================================ [File too large to display: 618 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bold-outline.glif ================================================ [File too large to display: 892 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bottom-left-bold.glif ================================================ [File too large to display: 695 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-bottom-left.glif ================================================ [File too large to display: 861 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thick.glif ================================================ [File too large to display: 630 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right-thin.glif ================================================ [File too large to display: 543 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-top-right.glif ================================================ [File too large to display: 623 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-left-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-right-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-down-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-bottom-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-bottom.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-top-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-left-top.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-bottom-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-bottom.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-top-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-right-top.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-left-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-right-bold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-u-up-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-hexagon-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold-outline.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-bold.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down-bold-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down-bold.glif ================================================ [File too large to display: 665 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-down.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-drop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-drop-circle.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-left-bold.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-left.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-right-bold.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-right.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thick.glif ================================================ [File too large to display: 615 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thin-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up-thin.glif ================================================ [File too large to display: 522 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/arrow-vertical-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/artstation.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/aspect-ratio.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/assistant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/asterisk-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/asterisk.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/at.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/atlassian.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/atm.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/atom-variant.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/atom.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-lock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/attachment.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-rca.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-stereo-minijack.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/audio-input-xlr.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/audio-video-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/audio-video.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/augmented-reality.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/auto-download.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/auto-fix.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/auto-upload.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/autorenew-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/autorenew.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/av-timer.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/aws.glif ================================================ [File too large to display: 8.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axe-battle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axe.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow-info.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-arrow.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-arrow-lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-arrow.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-rotate-clockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-rotate-counterclockwise.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-x-y-arrow-lock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-arrow-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-arrow.glif ================================================ [File too large to display: 741 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-rotate-clockwise.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-y-rotate-counterclockwise.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-arrow-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-arrow.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-rotate-clockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis-z-rotate-counterclockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/axis.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/babel.glif ================================================ [File too large to display: 12.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-bottle-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-bottle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-buggy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-carriage-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-carriage.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-face-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby-face.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baby.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backburger.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backspace-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backspace-reverse-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backspace-reverse.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backspace.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/backup-restore.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bacteria-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bacteria.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-alert-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-alert.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-horizontal-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-horizontal.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badge-account.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/badminton.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-carry-on.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-checked.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-personal.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-off-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bag-suitcase.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baguette.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/balcony.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/balloon.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ballot-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ballot-recount-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ballot-recount.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ballot.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bandage.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer-in.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer-out.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank-transfer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bank.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barcode-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barcode-scan.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barcode.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barley-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barley.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barn.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barrel-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/barrel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baseball-bat.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baseball-diamond-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baseball-diamond.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/baseball.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-fill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket-unfill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basket.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basketball-hoop-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basketball-hoop.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/basketball.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bat.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bathtub-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bathtub.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-10-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-10.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-20-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-20.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-30-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-30.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-40-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-40.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-50-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-50.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-60-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-60.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-70-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-70.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-80-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-80.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-90-bluetooth.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-90.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-bluetooth.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-variant-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-down-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-up-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-arrow-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-bluetooth-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-bluetooth.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-10.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-100.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-20.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-30.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-40.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-50.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-60.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-70.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-80.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-90.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-high.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-low.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-medium.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-10.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-20.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-30.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-40.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-50.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-60.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-70.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-80.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-90.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging-wireless.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-charging.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-heart.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-high.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-lock-open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-low.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-medium.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-negative.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-positive.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-sync-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-sync.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-unknown-bluetooth.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery-unknown.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/battery.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beach.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-question-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-question.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-double-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-double.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-empty.glif ================================================ [File too large to display: 874 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-king-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-king.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-queen-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-queen.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-single-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed-single.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bed.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bee-flower.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bee.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beehive-off-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beehive-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beekeeper.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beer-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beer.glif ================================================ [File too large to display: 882 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-badge-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-badge.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-cancel-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-cancel.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-cog-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-cog.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-ring-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-ring.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-sleep-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell-sleep.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/beta.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/betamax.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/biathlon.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-basket.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-cargo.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-electric.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bicycle-penny-farthing.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bicycle.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bike-fast.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bike.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/billboard.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/billiards-rack.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/billiards.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/binoculars.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bio.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/biohazard.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bird.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bitbucket.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bitcoin.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/black-mesa.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blender-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blender-software.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blender.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds-horizontal-closed.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds-horizontal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds-open.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds-vertical-closed.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds-vertical.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blinds.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/block-helper.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blood-bag.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-audio.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-connect.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth-transfer.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bluetooth.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blur-linear.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blur-off.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blur-radial.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/blur.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bolt.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bomb-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bomb.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bone-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bone.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-account-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-alert-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-alphabet.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-down-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-left-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-right-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-up-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-arrow-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-cancel-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-cancel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-check.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-clock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-cog-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-cog.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-cross.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-education-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-education.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-heart-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-information-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-open-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-open.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-marker-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-marker.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-music-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-music.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open-blank-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open-page-variant-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open-page-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-play-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-play.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-refresh-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-refresh.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-search-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-sync-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-variant-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/book.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-box-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-check-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-check.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-minus-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-minus.glif ================================================ [File too large to display: 913 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-multiple-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-multiple.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-music-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-music.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-off-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-off.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-outline.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-plus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-remove-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark-remove.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bookshelf.glif ================================================ [File too large to display: 998 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-alert-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-alert.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-down-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-down.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-up-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-arrow-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-up-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate-up.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boom-gate.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boombox.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boomerang.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bootstrap.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-all-variant.glif ================================================ [File too large to display: 613 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-all.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-bottom-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-bottom.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-color.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-horizontal.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-inside.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-left-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-left.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-none-variant.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-none.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-outside.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-right-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-right.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-style.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-top-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-top.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/border-vertical.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-classic-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-classic.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-soda.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-skull-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic-skull.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-tonic.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-wine-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bottle-wine.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bow-arrow.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bow-tie.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bowl-mix-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bowl-mix.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bowl-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bowl.glif ================================================ [File too large to display: 709 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bowling.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/box-cutter-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/box-cutter.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/box-shadow.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/box.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/boxing-glove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/braille.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brain.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bread-slice-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bread-slice.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bridge.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-account-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-account.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-left-right-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-left-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-up-down-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-arrow-up-down.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-clock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-download-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-download.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-edit-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-edit.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-eye-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-minus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-search-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-search.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-upload-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-upload.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-off-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-1.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-2.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-3.glif ================================================ [File too large to display: 864 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-4.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-5.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-6.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-7.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-auto.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brightness-percent.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/broadcast-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/broom.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brush-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brush-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brush-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/brush.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bucket-outline.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bucket.glif ================================================ [File too large to display: 560 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/buffet.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bug-check-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bug-check.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bug-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bug.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bugle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bulkhead-light.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bulldozer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullet.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bulletin-board.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-variant-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullhorn.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullseye-arrow.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bullseye.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bulma.glif ================================================ [File too large to display: 511 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bunk-bed-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bunk-bed.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-alert.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-articulated-end.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-articulated-front.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-clock.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-double-decker.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-electric.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-marker.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-multiple.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-school.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-side.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop-covered.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop-uncovered.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus-stop.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/bus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/butterfly-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/butterfly.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cabin-a-frame.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cable-data.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cached.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cactus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cake-layered.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cake-variant-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cake-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cake.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calculator-variant-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calculator-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calculator.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-account-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-account.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-arrow-left.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-arrow-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-blank.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-clock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-collapse-horizontal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-cursor.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-end.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-expand-horizontal.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-export.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-heart.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-import.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-lock-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-month-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-month.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiple-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-multiselect.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-range-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-range.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-refresh-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-refresh.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-star.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-start.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-sync-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-text-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-text.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-today-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-today.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-begin-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-begin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-end-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-end.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-week.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-weekend-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar-weekend.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/calendar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/call-made.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/call-merge.glif ================================================ [File too large to display: 808 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/call-missed.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/call-received.glif ================================================ [File too large to display: 613 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/call-split.glif ================================================ [File too large to display: 944 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camcorder-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camcorder.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-account.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-burst.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-control.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-document-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-document.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-enhance-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-enhance.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-flip-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-flip.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-front-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-front.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-gopro.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-image.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-iris.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-lock-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-lock.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-marker-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-marker.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-center.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-matrix.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-partial.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-metering-spot.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-off-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-party-mode.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-rear-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-rear.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-retake-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-retake.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-switch-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-timer.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-wireless-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera-wireless.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/camera.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/campfire.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cancel.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candelabra-fire.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candelabra.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candy-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candy-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candy-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/candycane.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cannabis-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cannabis.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/caps-lock.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-2-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-3-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-arrow-left.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-back.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-battery.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-abs.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-fluid-level.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-hold.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-low-pressure.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-parking.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-retarder.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-temperature.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-brake-worn-linings.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-child-seat.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-clock.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-clutch.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-cog.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-connected.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-convertible.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-coolant-level.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-cruise-control.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-defrost-front.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-defrost-rear.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-door-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-door.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-electric-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-electric.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-emergency.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-esp.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-estate.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-hatchback.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-info.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-key.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-lifted-pickup.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-light-alert.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-light-dimmed.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-light-fog.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-light-high.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-limousine.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-multiple.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-parking-lights.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-pickup.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-seat-cooler.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-seat-heater.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-seat.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-select.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-settings.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-shift-pattern.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-side.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-speed-limiter.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-sports.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-tire-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-traction-control.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-turbocharger.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-wash.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-windshield-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-windshield.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-wireless.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car-wrench.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/car.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/carabiner.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/caravan.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-star-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details-star.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-details.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-mail-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-mail.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-phone-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-account-phone.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-settings-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted-settings.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-bulleted.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-multiple-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-multiple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card-text.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/card.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-club-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-club.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-diamond-outline.glif ================================================ [File too large to display: 614 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-diamond.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-club.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-diamond.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-heart.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing-spade.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-playing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-spade-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-spade.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cards.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/carrot.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-down.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-right.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-arrow-up.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-heart.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/case-sensitive-alt.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-100.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-clock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-fast.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-refund.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-register.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cash.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cassette.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-audio-variant.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-audio.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-connected.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-education.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cast.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/castle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cat.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cctv-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cctv.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-fan-light.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-fan.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-multiple-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-multiple.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ceiling-light.glif ================================================ [File too large to display: 811 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-arrow-down-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-arrow-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-basic.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-charging.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-cog.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-dock.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-information.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-key.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-link-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-link.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-message-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-message.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-nfc-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-nfc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-play.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-screenshot.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-sound.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-text.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone-wireless.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cellphone.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/centos.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/certificate-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/certificate.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chair-rolling.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chair-school.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chandelier.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/charity.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-arc.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-areaspline-variant.glif ================================================ [File too large to display: 639 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-areaspline.glif ================================================ [File too large to display: 925 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-bar-stacked.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-bar.glif ================================================ [File too large to display: 908 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-bell-curve-cumulative.glif ================================================ [File too large to display: 996 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-bell-curve.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-box-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-bubble.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-donut-variant.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-donut.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-gantt.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-histogram.glif ================================================ [File too large to display: 748 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-line-stacked.glif ================================================ [File too large to display: 917 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-line-variant.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-line.glif ================================================ [File too large to display: 783 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-multiline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-multiple.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-pie.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-ppf.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-sankey-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-sankey.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-scatter-plot-hexbin.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-scatter-plot.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline-variant-shimmer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-timeline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-tree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chart-waterfall.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-processing-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-processing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-question-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-sleep-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat-sleep.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chat.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-all.glif ================================================ [File too large to display: 878 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-bold.glif ================================================ [File too large to display: 479 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-circle.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-decagram-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-decagram.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-network.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-outline.glif ================================================ [File too large to display: 772 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-underline-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-underline-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check-underline.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/check.glif ================================================ [File too large to display: 469 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbook.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-badge-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-badge.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-circle-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-circle.glif ================================================ [File too large to display: 828 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-off-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-off.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-blank.glif ================================================ [File too large to display: 940 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-intermediate.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle-plus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-marked.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-blank.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-marked.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkbox-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/checkerboard.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cheese-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cheese.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chef-hat.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chemical-weapon.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-bishop.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-king.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-knight.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-pawn.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-queen.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chess-rook.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-down.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-left.glif ================================================ [File too large to display: 788 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-right.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-double-up.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 482 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-down.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-left.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-right.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-triple-up.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-hot-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-hot.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-medium-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-medium.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-mild-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-mild.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chili-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/chip.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/church.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cigar-off.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cigar.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-double.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-expand.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-half-full.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-half.glif ================================================ [File too large to display: 556 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-medium.glif ================================================ [File too large to display: 533 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-multiple.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-opacity.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-1.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-2.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-3.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-4.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-6.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-7.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-slice-8.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circle-small.glif ================================================ [File too large to display: 531 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/circular-saw.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/city-variant-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/city-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/city.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-account-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-account.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-down-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-left-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-left.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-right-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-up-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-arrow-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-clock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-edit-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-file-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-file.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-flow-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-flow.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-list-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-list.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-minus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-play.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-plus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-pulse-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-pulse.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-search-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-search.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-clock-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-clock.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-multiple-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-play-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-play.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-search-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text-search.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard-text.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clipboard.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clippy.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-digital.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-edit-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-end.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-fast.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-in.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-out.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-start.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eight-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eight.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eleven-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-eleven.glif ================================================ [File too large to display: 1001 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-five-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-five.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-four-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-four.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-nine-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-nine.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-one-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-one.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-seven-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-seven.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-six-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-six.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-ten-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-ten.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-three-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-three.glif ================================================ [File too large to display: 956 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-twelve-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-twelve.glif ================================================ [File too large to display: 872 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-two-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock-time-two.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clock.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-network.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-octagon-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-octagon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close-thick.glif ================================================ [File too large to display: 740 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/close.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/closed-caption-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/closed-caption.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-braces.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-check-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-download-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-download.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-lock-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-percent-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-percent.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-print-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-print.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-question.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-search-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-sync-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-tags.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-upload-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud-upload.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/clover.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coach-lamp-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coach-lamp.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coat-rack.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-array.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-braces-box.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-braces.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-brackets.glif ================================================ [File too large to display: 951 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-equal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-greater-than-or-equal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-greater-than.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-json.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-less-than-or-equal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-less-than.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-not-equal-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-not-equal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-parentheses-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-parentheses.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-string.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-tags-check.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/code-tags.glif ================================================ [File too large to display: 764 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/codepen.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-check-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-maker.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-to-go-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee-to-go.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffee.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coffin.glif ================================================ [File too large to display: 1014 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-box.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-clockwise.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-counterclockwise.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-off-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-off.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-outline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-pause-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-pause.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-play-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-play.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-refresh-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-refresh.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-stop-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-stop.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-sync-outline.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-sync.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-transfer-outline.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog-transfer.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cog.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cogs.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/collage.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/collapse-all-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/collapse-all.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/color-helper.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comma-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comma-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comma-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comma-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comma.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-account-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-account.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-left-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-right-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-arrow-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-bookmark-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-bookmark.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-eye-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-eye.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-flash-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-flash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-processing-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-processing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-question-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-question.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-quote-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-quote.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-search-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-search.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-text-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compare-horizontal.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compare-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compare-vertical.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compare.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compass-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compass-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compass-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compass-rose.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compass.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/compost.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cone-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cone.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/connection.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/console-line.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/console-network-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/console-network.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/console.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/consolidate.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contactless-payment.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contacts-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contacts.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contain-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contain-start.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contain.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-copy.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-cut.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-duplicate.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-paste.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-all-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-all.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-cog-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-cog.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-move-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-move.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-settings-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/content-save.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contents.plist ================================================ [File too large to display: 490.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contrast-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contrast-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/contrast.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/controller-classic-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/controller-classic.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-alert-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-alert.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-check-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-check.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-clock-outline.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-clock.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-cog-outline.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-cog.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-edit-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-edit.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-lock-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-lock.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-minus-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-minus.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-off-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-off.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-plus-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-plus.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-refresh-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-refresh.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-remove-outline.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-remove.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-settings-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie-settings.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cookie.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/coolant-temperature.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/copyleft.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/copyright.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cordova.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/corn-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/corn.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cosine-wave.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/counter.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/countertop-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/countertop.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cow-off.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cow.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cpu-32-bit.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cpu-64-bit.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cradle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cradle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crane.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/creation.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/creative-commons.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-check-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-check.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-chip-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-chip.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-clock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-fast-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-fast.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-marker-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-marker.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-off-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refresh-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refresh.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refund-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-refund.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-scan-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-scan.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card-wireless.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cricket.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop-free.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop-landscape.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop-portrait.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop-rotate.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop-square.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crop.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cross-bolnisi.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cross-celtic.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cross-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cross.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-gps.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs-question.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crosshairs.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crowd.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crown-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crown-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crown-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crown.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cryengine.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/crystal-ball.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-scan.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-send.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube-unfolded.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cube.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cup-off-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cup-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cup-outline.glif ================================================ [File too large to display: 862 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cup-water.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cup.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cupboard-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cupboard.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cupcake.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/curling.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-bdt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-brl.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-btc.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-cny.glif ================================================ [File too large to display: 869 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-eth.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-eur-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-eur.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-fra.glif ================================================ [File too large to display: 998 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-gbp.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-ils.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-inr.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-jpy.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-krw.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-kzt.glif ================================================ [File too large to display: 773 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-mnt.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-ngn.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-php.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-rial.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-rub.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-rupee.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-sign.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-try.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-twd.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-usd-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/currency-usd.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/current-ac.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/current-dc.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-click-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-click.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-gesture-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-gesture.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-default.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-move.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-pointer.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cursor-text.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/curtains-closed.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/curtains.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cylinder-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/cylinder.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dance-ballroom.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dance-pole.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-edit.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-minus.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-plus.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-remove.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix-scan.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/data-matrix.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-alert-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-down-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-down.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-left-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-left.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-right-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-right.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-up-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-arrow-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-check-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-clock-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-cog-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-cog.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-edit-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-edit.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-export-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-export.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-off-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-off.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-eye-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-eye.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-import-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-import.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-lock-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-lock.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-marker-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-marker.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-minus-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-off-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-plus-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-refresh-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-refresh.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-remove-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-search-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-search.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-settings-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-settings.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-sync-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database-sync.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/database.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/death-star-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/death-star.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/deathly-hallows.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/debian.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-into.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-out.glif ================================================ [File too large to display: 944 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/debug-step-over.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decagram-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decagram.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma-decrease.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma-increase.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal-comma.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal-decrease.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal-increase.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/decimal.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-circle-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-clock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-empty-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-empty.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-forever-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-forever.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-restore.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-sweep-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-sweep.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delete.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/delta.glif ================================================ [File too large to display: 496 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desk-lamp.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desk.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/deskphone.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desktop-classic.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desktop-mac-dashboard.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desktop-mac.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desktop-tower-monitor.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/desktop-tower.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/details.glif ================================================ [File too large to display: 503 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dev-to.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/developer-board.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/deviantart.glif ================================================ [File too large to display: 825 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/devices.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dharmachakra.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diabetes.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dialpad.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diameter-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diameter-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diameter.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diamond-outline.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diamond-stone.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diamond.glif ================================================ [File too large to display: 429 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-1-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-2-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-3-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-3.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-4-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-4.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-5-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-5.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-6-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-6.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d10-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d10.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d12-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d12.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d20-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d20.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d4-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d4.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d6-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d6.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d8-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-d8.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-multiple-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dice-multiple.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/digital-ocean.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dip-switch.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/directions-fork.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/directions.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/disc-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/disc-player.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/disc.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/discord.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dishwasher.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/disqus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-center.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-left.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-horizontal-right.glif ================================================ [File too large to display: 977 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-bottom.glif ================================================ [File too large to display: 971 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-center.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/distribute-vertical-top.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diversify.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-flippers.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-helmet.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-flag.glif ================================================ [File too large to display: 523 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-tank-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba-tank.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-scuba.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving-snorkel.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/diving.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/division-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/division.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dlna.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dna.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dns-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dns.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dock-bottom.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dock-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dock-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dock-top.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dock-window.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/docker.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/doctor.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dog-service.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dog-side-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dog-side.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dolby.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dolly.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dolphin.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/domain-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/domain-plus.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/domain-remove.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/domain.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dome-light.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/domino-mask.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/donkey.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-closed-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-closed.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-open.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door-sliding.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/door.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/doorbell-video.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/doorbell.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dot-net.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-circle.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-grid.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-hexagon.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-square.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-triangle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dots-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-multiple.glif ================================================ [File too large to display: 942 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-network.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-off-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/download.glif ================================================ [File too large to display: 714 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag-horizontal-variant.glif ================================================ [File too large to display: 617 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag-horizontal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag-vertical-variant.glif ================================================ [File too large to display: 609 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag-vertical.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drag.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drama-masks.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/draw-pen.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/draw.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drawing-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drawing.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dresser-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dresser.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drone.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dropbox.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/drupal.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/duck.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dumbbell.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/dump-truck.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing-loop.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing-off.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ear-hearing.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earbuds-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earbuds.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-arrow-right.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-box-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-box.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/earth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg-easter.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg-fried.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/egg.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eiffel-tower.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eight-track.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eject-outline.glif ================================================ [File too large to display: 713 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eject.glif ================================================ [File too large to display: 539 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/electric-switch-closed.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/electric-switch.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/electron-framework.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elephant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevation-decline.glif ================================================ [File too large to display: 866 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevation-rise.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-passenger.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/elevator.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ellipse-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ellipse.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-alert-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-fast-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-fast.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-mark-as-unread.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-minus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-newsletter.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-open-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-open-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-open-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-open.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-receive-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-receive.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-seal-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-seal.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-send-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-send.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-sync-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-sync.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/email.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ember.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emby.glif ================================================ [File too large to display: 884 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-angry-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-angry.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-confused-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-confused.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cool-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cool.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cry-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-cry.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-dead-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-dead.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-devil-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-devil.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-excited-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-excited.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-frown-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-frown.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-happy-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-happy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-kiss-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-kiss.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-lol-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-lol.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-neutral-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-neutral.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-poop-outline.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-poop.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sad-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sad.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sick-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-sick.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-tongue-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-tongue.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-wink-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon-wink.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/emoticon.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/engine-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/engine-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/engine-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/engine.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/epsilon.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/equal-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/equal.glif ================================================ [File too large to display: 583 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/equalizer-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/equalizer.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eraser-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eraser.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/escalator-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/escalator-down.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/escalator-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/escalator.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eslint.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/et.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ethereum.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ethernet-cable-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ethernet-cable.glif ================================================ [File too large to display: 978 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ethernet.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-ccs1.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-ccs2.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-chademo.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-tesla.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-type1.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-plug-type2.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ev-station.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/evernote.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/excavator.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exclamation-thick.glif ================================================ [File too large to display: 603 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exclamation.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exit-run.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exit-to-app.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/expand-all-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/expand-all.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/expansion-card-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/expansion-card.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exponent-box.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/exponent.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/export-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/export.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-left-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-left.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-right-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-circle-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-circle.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-refresh-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-refresh.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-settings-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eye.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/eyedropper.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-agent.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-man-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-man-profile.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-man-shimmer-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-man-shimmer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-man.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-mask-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-mask.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-recognition.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-profile.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-shimmer-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-woman-shimmer.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/face-woman.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/facebook-gaming.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/facebook-messenger.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/facebook-workplace.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/facebook.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/factory.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/family-tree.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-alert.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-auto.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-chevron-down.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-chevron-up.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-clock.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-minus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-remove.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-1.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-2.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan-speed-3.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fan.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-10.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-15.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-30.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-60.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward-outline.glif ================================================ [File too large to display: 842 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fast-forward.glif ================================================ [File too large to display: 510 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fax.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/feather.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/feature-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/feature-search.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fedora.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fence-electric.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fence.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fencing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ferris-wheel.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ferry.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-account-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-account.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-left-right-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-left-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-up-down-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-arrow-up-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cabinet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cad-box.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cad.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cancel-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cancel.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-certificate-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-certificate.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-chart-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-chart.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-check-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-clock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-clock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cloud-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cloud.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-code-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-code.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cog-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-compare.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-delimited-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-delimited.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-alert-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-edit-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-multiple-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-document.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-download-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-download.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-excel-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-excel.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-export-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-export.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-eye-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-eye.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-find-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-find.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-gif-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-hidden.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-marker-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-marker.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-import-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-import.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-jpg-box.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-key-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-key.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-link-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-link.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-open-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-lock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-move-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-move.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-multiple-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-music-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-music.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-pdf-box.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-percent-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-percent.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-phone-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-phone.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-png-box.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-powerpoint.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-presentation-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-question-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-refresh-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-replace-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-replace.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-restore-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-restore.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-left-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-left.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-right-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-rotate-right.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-search-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-send-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-send.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-sign.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-star-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-star.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-swap-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-swap.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-sync-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-multiple-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-table.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-tree-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-tree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-undo-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-undo.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-upload-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-upload.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-video-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-video.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-word-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-word-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-word-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file-word.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/file.glif ================================================ [File too large to display: 976 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/film.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-box-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filmstrip.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-cog-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-menu-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-menu.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-settings-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-settings.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-minus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant-remove.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter-variant.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/finance.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/find-replace.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fingerprint-off.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fingerprint.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-alert.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-circle.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-extinguisher.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-hydrant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire-truck.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fire.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/firebase.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/firefox.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fireplace-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fireplace.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/firewire.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/firework-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/firework.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fish-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fish.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fishbowl-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fishbowl.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-page-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-page.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-screen-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fit-to-screen.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-checkered.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-minus-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-minus.glif ================================================ [File too large to display: 853 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-triangle.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-variant-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flag.glif ================================================ [File too large to display: 638 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flare.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-alert-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-alert.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-auto.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-off.glif ================================================ [File too large to display: 897 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-outline.glif ================================================ [File too large to display: 857 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash-red-eye.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flash.glif ================================================ [File too large to display: 509 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flashlight-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flashlight.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-plus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-empty.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-minus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-plus-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-remove-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-empty-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-empty.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask-round-bottom.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flask.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fleur-de-lis.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flip-horizontal.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flip-to-back.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flip-to-front.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flip-vertical.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-dual-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-dual.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-outline.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-outline.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-variant-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere-variant.glif ================================================ [File too large to display: 876 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp-torchiere.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-lamp.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floor-plan.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floppy-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/floppy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-outline.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-pollen-outline.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-pollen.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-poppy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-tulip-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower-tulip.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/flower.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/focus-auto.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/focus-field-horizontal.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/focus-field-vertical.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/focus-field.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-account-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-account.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-down-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-right-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left-right.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-right-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-down-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-arrow-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-cancel-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-cancel.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-clock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-clock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-cog-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-download-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-download.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-edit-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-eye-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-eye.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-file-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-file.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-google-drive.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-heart-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-heart.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-hidden.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-home-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-home.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-image.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-information-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-information.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-network-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-network.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-key-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-key.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-open-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-move-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-move.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-image.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-music-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-music.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-network-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-network.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-open-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-open.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-play-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-play.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-pound-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-pound.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-question-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-refresh-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-refresh.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-search-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-settings-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-settings.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-star-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-star.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-swap-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-swap.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-sync-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-table-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-table.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-text-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-upload-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-upload.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-wrench-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-wrench.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-zip-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder-zip.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/folder.glif ================================================ [File too large to display: 1010 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/font-awesome.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-apple-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-apple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-croissant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-off-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-drumstick.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-fork-drink.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-halal.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-hot-dog.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-kosher.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-off-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-steak-off.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-steak.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-takeout-box-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-takeout-box.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-turkey.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-variant-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/food.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/foot-print.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/football-australian.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/football-helmet.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/football.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forest.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forklift.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-dropdown.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-select.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-textarea.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox-lock.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox-password.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/form-textbox.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-bottom.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-center.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-justify.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-left.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-middle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-right.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-align-top.glif ================================================ [File too large to display: 1023 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-annotation-minus.glif ================================================ [File too large to display: 954 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-annotation-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-bold.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-clear.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-color-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-color-highlight.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-color-marker-cancel.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-color-text.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-columns.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-float-center.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-float-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-float-none.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-float-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-font-size-decrease.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-font-size-increase.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-font.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-3.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-4.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-5.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-6.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-decrease.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-equal.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-increase.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-header-pound.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-left.glif ================================================ [File too large to display: 758 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-horizontal-align-right.glif ================================================ [File too large to display: 762 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-indent-decrease.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-indent-increase.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-italic.glif ================================================ [File too large to display: 744 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case-lower.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case-upper.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-case.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-ends-with.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-matches.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-spacing.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-letter-starts-with.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-line-spacing.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-line-style.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-line-weight.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-square.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-triangle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted-type.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-bulleted.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-checkbox.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-checks.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-group.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-numbered-rtl.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-numbered.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-list-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-overline.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-page-break.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-page-split.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-paint.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-paragraph.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-pilcrow.glif ================================================ [File too large to display: 840 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-close-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-close.glif ================================================ [File too large to display: 870 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-open-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-quote-open.glif ================================================ [File too large to display: 868 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-rotate-90.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-section.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-size.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-strikethrough-variant.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-strikethrough.glif ================================================ [File too large to display: 992 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-subscript.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-superscript.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-angle-down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-angle-up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-down-vertical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-none.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-rotation-vertical.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-variant-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-variant.glif ================================================ [File too large to display: 737 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-clip.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-overflow.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text-wrapping-wrap.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-textbox.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-textdirection-l-to-r.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-textdirection-r-to-l.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-title.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-underline-wavy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-underline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-bottom.glif ================================================ [File too large to display: 756 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-center.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-vertical-align-top.glif ================================================ [File too large to display: 753 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-inline.glif ================================================ [File too large to display: 972 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-square.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-tight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/format-wrap-top-bottom.glif ================================================ [File too large to display: 778 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-minus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forum.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forward.glif ================================================ [File too large to display: 513 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/forwardburger.glif ================================================ [File too large to display: 1012 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fountain-pen-tip.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fountain-pen.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fountain.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fraction-one-half.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/freebsd.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/french-fries.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/frequently-asked-questions.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-bottom.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-industrial.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-top.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-alert-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fridge.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-cherries-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-cherries.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-citrus-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-citrus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-grapes-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-grapes.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-pear.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-pineapple.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fruit-watermelon.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuel-cell.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuel.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fullscreen-exit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fullscreen.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/function-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/function.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/furigana-horizontal.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/furigana-vertical.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuse-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuse-blade.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuse-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/fuse.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-down.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-left.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-right.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-down.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-left.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-down.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-left.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round-up.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-round.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-square-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-square.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-variant-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamepad.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gamma.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gantry-crane.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-alert-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-open-variant.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-open.glif ================================================ [File too large to display: 809 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-variant-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/garage.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-burner.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-cylinder.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-off-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-station-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gas-station.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-alert.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-and.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-arrow-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-arrow-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-nand.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-nor.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-not.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-or.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-xnor.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate-xor.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gate.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gatsby.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gauge-empty.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gauge-full.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gauge-low.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gauge.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gavel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-female.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-male-female-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-male-female.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-male.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-non-binary.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gender-transgender.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gentoo.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-double-tap.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-pinch.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-spread.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-horizontal.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe-vertical.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-swipe.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-box.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-button.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap-hold.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-tap.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-two-double-tap.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture-two-tap.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gesture.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ghost-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ghost-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ghost-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ghost.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift-off-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift-open-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift-open.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gift.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/git.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/github.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gitlab.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-cocktail-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-cocktail.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-flute.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-fragile.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-variant-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-mug.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-pint-outline.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-stange.glif ================================================ [File too large to display: 597 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-tulip.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glass-wine.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/glasses.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/globe-light.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/globe-model.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gmail.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gnome.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/go-kart-track.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/go-kart.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gog.glif ================================================ [File too large to display: 8.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gold.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/golf-cart.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/golf-tee.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/golf.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gondola.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/goodreads.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-ads.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-analytics.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-assistant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-cardboard.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-chrome.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-communities.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-extended.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-circles-group.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-circles.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-classroom.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-cloud.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-controller-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-controller.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-downasaur.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-drive.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-earth.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-fit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-glass.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-hangouts.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-home.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-keep.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-lens.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-maps.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-my-business.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-nearby.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-play.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-podcast.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-spreadsheet.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-street-view.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google-translate.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/google.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gradient-horizontal.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gradient-vertical.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grain.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/graph-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/graphql.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grass.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grave-stone.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grease-pencil.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/greater-than-or-equal.glif ================================================ [File too large to display: 696 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/greater-than.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/greenhouse.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grid-large.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grid-off.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grid.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grill-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/grill.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/group.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/guitar-acoustic.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/guitar-electric.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/guitar-pick-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/guitar-pick.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/guy-fawkes-mask.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/gymnastics.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hail.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hair-dryer-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hair-dryer.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/halloween.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hamburger.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hammer-screwdriver.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hammer-sickle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hammer-wrench.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hammer.glif ================================================ [File too large to display: 982 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-off-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-left.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-off-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-back-right.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-clap-off.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-clap.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-coin-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-coin.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-extended-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-extended.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-left-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-right-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-front-right.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-heart-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-heart.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-okay.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-peace-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-peace.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-pointing-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-saw.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-wash-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-wash.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-water.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-wave-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hand-wave.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/handball.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/handcuffs.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hands-pray.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/handshake-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/handshake.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hanger.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hard-hat.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/harddisk-plus.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/harddisk-remove.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/harddisk.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hat-fedora.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hazard-lights.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hdr-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hdr.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-alert-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-check-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-check.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-cog-outline.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-dots-horizontal-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-dots-horizontal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-flash-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-flash.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-heart-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-lightbulb-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-lightbulb.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-question-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-question.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-remove-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-snowflake-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-snowflake.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-sync-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head-sync.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/head.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headphones-bluetooth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headphones-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headphones-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headphones-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headphones.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headset-dock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headset-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/headset.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-broken-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-broken.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-cog-outline.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-cog.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-flash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-half-full.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-half-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-half.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-minus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-pulse.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-settings-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart-settings.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heart.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heat-pump-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heat-pump.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heat-wave.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/heating-coil.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/helicopter.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-box.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-circle-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-network-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-network.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-rhombus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help-rhombus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/help.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexadecimal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-multiple-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-multiple.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-1.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-4.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-5.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon-slice-6.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagon.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagram-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hexagram.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/high-definition-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/high-definition.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/highway.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hiking.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/history.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hockey-puck.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hockey-sticks.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hololens.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-account.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-alert-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-alert.glif ================================================ [File too large to display: 924 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-analytics.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-assistant.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-automation.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-battery-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-battery.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-city-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-city.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-clock-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-clock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-edit-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-edit.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-export-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-flood.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-0.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-1.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-2.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-a.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-b.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-g.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-l.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-floor-negative-1.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-group-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-group-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-group-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-group.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-heart.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-import-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lightbulb-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lightbulb.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lightning-bolt-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lightning-bolt.glif ================================================ [File too large to display: 827 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lock-open.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-lock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-map-marker.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-minus-outline.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-minus.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-modern.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-plus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-remove-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-roof.glif ================================================ [File too large to display: 676 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-search-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-search.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-switch-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-thermometer-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-thermometer.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-variant-outline.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home-variant.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/home.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hook-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hook.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hoop-house.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hops.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horizontal-rotate-clockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horizontal-rotate-counterclockwise.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horse-human.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horse-variant-fast.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horse-variant.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/horseshoe.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hospital-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hospital-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hospital-building.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hospital-marker.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hospital.glif ================================================ [File too large to display: 732 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hot-tub.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hours-24.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hubspot.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hulu.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-baby-changing-table.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-cane.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-capacity-decrease.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-capacity-increase.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-child.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-dolly.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-female-boy.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-female-dance.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-female-female.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-female-girl.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-female.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting-proximity.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-greeting.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-handsdown.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-handsup.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-board-poll.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-board.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-boy.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-child.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-female-child.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-female.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-girl.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-height-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-height.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male-male.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-male.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-non-binary.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-pregnant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-queue.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-scooter.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-wheelchair.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human-white-cane.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/human.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/humble-bundle.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hvac-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hvac.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hydraulic-oil-level.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hydraulic-oil-temperature.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hydro-power.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/hydrogen-station.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ice-cream-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ice-cream.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ice-pop.glif ================================================ [File too large to display: 927 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/id-card.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/identifier.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ideogram-cjk-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ideogram-cjk.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-album.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-area-close.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-area.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-auto-adjust.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-broken-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-broken.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-edit-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-black-white.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-strong-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-strong.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus-weak.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-center-focus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-drama.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-frames.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-hdr.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-none.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-tilt-shift.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-filter-vintage.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-frame.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-lock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-marker-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-move.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-refresh-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-refresh.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-search-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-actual.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-large.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-size-select-small.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-sync-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-sync.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/image.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/import.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-down-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-up-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-arrow-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-full-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-full.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-multiple-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-remove-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/incognito-circle-off.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/incognito-circle.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/incognito-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/incognito.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/induction.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/information-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/information-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/information-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/information-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/information.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/instagram.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/instrument-triangle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/integrated-circuit-chip.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/invert-colors-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/invert-colors.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/iobroker.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ip-network-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ip-network.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ip-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ip.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ipod.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/iron-board.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/iron-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/iron.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/island.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/iv-bag.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jabber.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jeepney.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jellyfish-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jellyfish.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jira.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jquery.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jsfiddle.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/jump-rope.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kabaddi.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kangaroo.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/karate.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kayaking.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keg.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-alert-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-off-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-off.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-pour-over.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-steam-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle-steam.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kettlebell.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-alert-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-arrow-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-chain-variant.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-chain.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-change.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-link.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-star.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key-wireless.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/key.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-backspace.glif ================================================ [File too large to display: 624 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-caps.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-close.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-esc.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f1.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f10.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f11.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f12.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f3.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f4.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f5.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f6.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f7.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f8.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-f9.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-return.glif ================================================ [File too large to display: 707 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-settings-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-settings.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-space.glif ================================================ [File too large to display: 839 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-tab-reverse.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-tab.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard-variant.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/keyboard.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/khanda.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kickstarter.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kite-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kite.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kitesurfing.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/klingon.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/knife-military.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/knife.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/koala.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kodi.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/kubernetes.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-multiple-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-percent-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-percent.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-variant-outline.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label-variant.glif ================================================ [File too large to display: 689 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/label.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ladder.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ladybug.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lambda.glif ================================================ [File too large to display: 990 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lamp-outline.glif ================================================ [File too large to display: 970 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lamp.glif ================================================ [File too large to display: 751 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lamps-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lamps.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lan-check.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lan-connect.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lan-disconnect.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lan-pending.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lan.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-fields.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-plots-circle-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-plots-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-plots.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-rows-horizontal.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/land-rows-vertical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/landslide-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/landslide.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-c.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-cpp.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-csharp.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-css3.glif ================================================ [File too large to display: 915 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-fortran.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-go.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-haskell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-html5.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-java.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-javascript.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-kotlin.glif ================================================ [File too large to display: 445 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-lua.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-markdown-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-markdown.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-php.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-python.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-r.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-ruby-on-rails.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-ruby.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-rust.glif ================================================ [File too large to display: 15.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-swift.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-typescript.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/language-xaml.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/laptop-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/laptop-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/laptop.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/laravel.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/laser-pointer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lasso.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lastpass.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/latitude.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/launch.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lava-lamp.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-edit.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-minus.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-outline.glif ================================================ [File too large to display: 888 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-search-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-triple-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers-triple.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/layers.glif ================================================ [File too large to display: 757 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lead-pencil.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf-circle-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf-circle.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf-maple-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf-maple.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leaf.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leak-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leak.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lecturn.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-on.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-strip-variant-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-strip-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-strip.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-on.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/led-variant-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/leek.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/less-than-or-equal.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/less-than.glif ================================================ [File too large to display: 478 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/library-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/library-shelves.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/library.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/license.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lifebuoy.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/light-flood-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/light-flood-up.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/light-recessed.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/light-switch-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/light-switch.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-alert-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-auto-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-auto.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-spiral-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl-spiral.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-cfl.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-fluorescent-tube-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-fluorescent-tube.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-off-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group-outline.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-group.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-off-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-night-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-night.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-off-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-10.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-20.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-30.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-40.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-50.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-60.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-70.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-80.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-90.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-on.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-question-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-question.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-spot-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-spot.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-variant-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightbulb.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lighthouse-on.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lighthouse.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt-circle.glif ================================================ [File too large to display: 837 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt-outline.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lightning-bolt.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/line-scan.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lingerie.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-box-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-box-variant-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-box-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-box.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-lock.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-minus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-plus.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-variant-remove.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/link.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/linkedin.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/linux-mint.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/linux.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lipstick.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/liquid-spot.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/liquor.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/list-status.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/litecoin.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/loading.glif ================================================ [File too large to display: 610 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/location-enter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/location-exit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-check-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-check.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-clock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-minus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-variant-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-open.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-pattern.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-question.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-remove-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-remove.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-reset.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock-smart.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/locker-multiple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/locker.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/login.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/logout-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/logout.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/longitude.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/looks.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lotion-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lotion-plus-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lotion-plus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lotion.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/loupe.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lumx.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/lungs.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mace.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magazine-pistol.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magazine-rifle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magic-staff.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnet-on.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnet.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-close.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-expand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus-cursor.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus-cursor.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-remove-cursor.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify-scan.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/magnify.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mail.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-up-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-up-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox-up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mailbox.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/manjaro.glif ================================================ [File too large to display: 876 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-clock-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-legend.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-account-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-account.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-alert-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-distance.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-left-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-minus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-multiple-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-path.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-plus-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-question-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-question.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-radius-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-radius.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-right-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-star-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-star.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker-up.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-marker.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-search-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map-search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/map.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mapbox.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/margin.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/marker-cancel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/marker-check.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/marker.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mastodon.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/material-design.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/material-ui.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-compass.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-cos.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-integral-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-integral.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-log.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-norm-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-norm.glif ================================================ [File too large to display: 585 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-sin.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/math-tan.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/matrix.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/medal-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/medal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/medical-bag.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/medical-cotton-swab.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meditation.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/memory.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menorah-fire.glif ================================================ [File too large to display: 8.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menorah.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-down-outline.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-down.glif ================================================ [File too large to display: 347 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-left-outline.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-left.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-open.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-right-outline.glif ================================================ [File too large to display: 607 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-right.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-swap-outline.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-swap.glif ================================================ [File too large to display: 503 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-up-outline.glif ================================================ [File too large to display: 602 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu-up.glif ================================================ [File too large to display: 342 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/menu.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/merge.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-left-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-left.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-right-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-arrow-right.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-badge-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-badge.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-bookmark-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-bookmark.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-bulleted-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-bulleted.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-cog-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-cog.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-draw.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-fast-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-fast.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-flash-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-flash.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-image-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-image.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-minus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-off.glif ================================================ [File too large to display: 989 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-plus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-processing-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-processing.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-question-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-question.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-reply-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-reply.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-settings.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-star-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-star.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-clock-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-fast-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-fast.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-lock-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message-video.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/message.glif ================================================ [File too large to display: 838 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meteor.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meter-electric-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meter-electric.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meter-gas-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/meter-gas.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/metronome-tick.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/metronome.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/micro-sd.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-question-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-question.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-variant-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microphone.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microscope.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-access.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-azure-devops.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-azure.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-bing.glif ================================================ [File too large to display: 656 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-dynamics-365.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-edge.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-excel.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-internet-explorer.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-office.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-onedrive.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-onenote.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-outlook.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-powerpoint.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-sharepoint.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-teams.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-visual-studio-code.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-visual-studio.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-windows-classic.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-windows.glif ================================================ [File too large to display: 1010 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-word.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-alert.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-charging.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-empty.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-full.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-low.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-medium.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-battery-unknown.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-menu.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller-view.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox-controller.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft-xbox.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microsoft.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microwave-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/microwave.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/middleware-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/middleware.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/midi-port.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/midi.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mine.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minecraft.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mini-sd.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minidisc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-box-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-off-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-circle.glif ================================================ [File too large to display: 986 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-network-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-network.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus-thick.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/minus.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mirror-rectangle.glif ================================================ [File too large to display: 1006 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mirror-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mirror.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mixed-martial-arts.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mixed-reality.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/molecule-co.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/molecule-co2.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/molecule.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-account.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-arrow-down-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-arrow-down.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-cellphone-star.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-cellphone.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-dashboard.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-eye.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-screenshot.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-share.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-shimmer.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-small.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-speaker-off.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-speaker.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor-star.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/monitor.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-first-quarter.glif ================================================ [File too large to display: 507 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-full.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-last-quarter.glif ================================================ [File too large to display: 505 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-new.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-waning-crescent.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-waning-gibbous.glif ================================================ [File too large to display: 813 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-waxing-crescent.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moon-waxing-gibbous.glif ================================================ [File too large to display: 809 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moped-electric-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moped-electric.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moped-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/moped.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/more.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mortar-pestle-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mortar-pestle.glif ================================================ [File too large to display: 833 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mosque.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mother-heart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mother-nurse.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-pause-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-pause.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-play-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-play.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-sensor-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion-sensor.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motion.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motorbike-electric.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/motorbike.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-bluetooth.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-down.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-up.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-move-vertical.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-variant-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mouse.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/move-resize-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/move-resize.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-check-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-check.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-cog.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-edit-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-edit.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-filter-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-filter.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-cog-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-cog.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-edit-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-edit.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-minus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-play-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-play.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-settings-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-settings.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-star-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-open.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-play-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-play.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-roll.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-settings-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-star-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie-star.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/movie.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mower-bag.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mower.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/muffin.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/multicast.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/multiplication-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/multiplication.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-off-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mushroom-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mushroom.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-double-flat.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-double-sharp.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-flat.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-natural.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-accidental-sharp.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-box-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-alto.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-bass.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-clef-treble.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-bluetooth-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-bluetooth.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-eighth-dotted.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-half-dotted.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-half.glif ================================================ [File too large to display: 1023 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-quarter-dotted.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-quarter.glif ================================================ [File too large to display: 694 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-sixteenth-dotted.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-sixteenth.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-whole-dotted.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note-whole.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-note.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-eighth.glif ================================================ [File too large to display: 931 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-half.glif ================================================ [File too large to display: 572 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-quarter.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-sixteenth.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music-rest-whole.glif ================================================ [File too large to display: 574 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/music.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/mustache.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nail.glif ================================================ [File too large to display: 626 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nas.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nativescript.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nature-people.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nature.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/navigation-outline.glif ================================================ [File too large to display: 775 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/navigation-variant-outline.glif ================================================ [File too large to display: 710 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/navigation.glif ================================================ [File too large to display: 471 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/near-me.glif ================================================ [File too large to display: 495 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/necklace.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/needle-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/needle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/netflix.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-pos.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-1-alert.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-1.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-2-alert.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-2.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-3-alert.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-3.glif ================================================ [File too large to display: 569 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4-alert.glif ================================================ [File too large to display: 873 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4-cog.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-4.glif ================================================ [File too large to display: 365 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-off-outline.glif ================================================ [File too large to display: 1010 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-off.glif ================================================ [File too large to display: 704 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network-strength-outline.glif ================================================ [File too large to display: 538 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/network.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/new-box.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-check.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-multiple.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/newspaper.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nfc-search-variant.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nfc-tap.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nfc-variant-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nfc-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nfc.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ninja.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-game-boy.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-switch.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-wii.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nintendo-wiiu.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nix.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nodejs.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/noodles.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/not-equal-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/not-equal.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-alert-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-alert.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-edit-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-multiple.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-off.glif ================================================ [File too large to display: 1017 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-text-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note-text.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/note.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-check-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-check.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-edit-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-edit.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-heart-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-heart.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-minus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-minus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-multiple.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-plus-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-remove-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notebook.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/notification-clear-all.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/npm.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nuke.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/null.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-0-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-multiple-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-multiple.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-1.glif ================================================ [File too large to display: 474 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-multiple-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-multiple.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-10.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-multiple-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-multiple.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-2.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3-circle.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-3.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-4.glif ================================================ [File too large to display: 648 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-multiple-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-5.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-6.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-multiple-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-box.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-7.glif ================================================ [File too large to display: 520 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-multiple.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-box.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-circle-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-8.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-multiple-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-circle-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-circle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-multiple-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-multiple.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-circle-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-negative-1.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric-positive-1.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/numeric.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nut.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nutrition.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/nuxt.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oar.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ocarina.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oci.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ocr.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octagon-outline.glif ================================================ [File too large to display: 951 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octagon.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octagram-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octagram.glif ================================================ [File too large to display: 908 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octahedron-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/octahedron.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/odnoklassniki.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/offer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building-cog-outline.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building-cog.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building-marker-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building-marker.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/office-building.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oil-lamp.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oil-level.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oil-temperature.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/oil.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/om.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/omega.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/one-up.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/onepassword.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/opacity.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/open-in-app.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/open-in-new.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/open-source-initiative.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/openid.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/opera.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/orbit-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/orbit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-alphabetical-ascending.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-alphabetical-descending.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-ascending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-ascending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-descending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-bool-descending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-numeric-ascending.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/order-numeric-descending.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/origin.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ornament-variant.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ornament.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/outdoor-lamp.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/overscan.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/owl.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pac-man.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-down.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-up.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-closed.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-minus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-plus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant-remove.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/package.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-first.glif ================================================ [File too large to display: 683 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-last.glif ================================================ [File too large to display: 679 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-body.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-footer.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-header-footer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-header.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-sidebar-left.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-layout-sidebar-right.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-next-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-next.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-previous-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/page-previous.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pail.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette-advanced.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette-swatch.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palette.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/palm-tree.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-bottom-left.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-bottom-right.glif ================================================ [File too large to display: 699 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-down.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-horizontal.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-left.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-right.glif ================================================ [File too large to display: 680 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-top-left.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-top-right.glif ================================================ [File too large to display: 690 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-up.glif ================================================ [File too large to display: 672 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan-vertical.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pan.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panda.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pandora.glif ================================================ [File too large to display: 820 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-fisheye.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-horizontal-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-horizontal.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-sphere-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-sphere.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-variant-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-vertical-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-vertical.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-wide-angle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama-wide-angle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/panorama.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paper-cut-vertical.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paper-roll-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paper-roll.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-check.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-lock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-minus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-off.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-plus.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paperclip.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/parachute-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/parachute.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paragliding.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/parking.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/party-popper.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/passport-biometric.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/passport.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pasta.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/patio-heater.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/patreon.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pause-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pause-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pause-octagon-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pause-octagon.glif ================================================ [File too large to display: 972 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pause.glif ================================================ [File too large to display: 581 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paw-off-outline.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paw-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paw-outline.glif ================================================ [File too large to display: 9.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/paw.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/peace.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/peanut-off-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/peanut-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/peanut-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/peanut.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pen.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-multiple-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-multiple.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-circle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-lock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-minus-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-minus.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-remove.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil-ruler.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pencil.glif ================================================ [File too large to display: 906 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/penguin.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pentagon-outline.glif ================================================ [File too large to display: 692 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pentagon.glif ================================================ [File too large to display: 430 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pentagram.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent-box-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent-circle-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent-circle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/percent.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/periodic-table.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/perspective-less.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/perspective-more.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ph.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-alert-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-bluetooth-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-bluetooth.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-cancel-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-cancel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-check-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-check.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-classic-off.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-classic.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-dial-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-dial.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-forward-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-forward.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-hangup-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-hangup.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-in-talk-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-in-talk.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-incoming-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-incoming.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-lock-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-log-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-log.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-message-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-message.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-minus-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-minus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-missed-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-missed.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-outgoing-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-outgoing.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-paused-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-paused.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-plus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-refresh-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-refresh.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-return-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-return.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-ring-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-ring.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-rotate-landscape.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-rotate-portrait.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-settings-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-sync-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-sync.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone-voip.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/phone.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pi-box.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pi-hole.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pi.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/piano-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/piano.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pickaxe.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-bottom-right-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-bottom-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-top-right-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/picture-in-picture-top-right.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pier-crane.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pier.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pig-variant-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pig-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pig.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/piggy-bank-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/piggy-bank.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pill-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pill.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pillar.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pin-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pin-off.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pin-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pin.glif ================================================ [File too large to display: 896 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree-fire.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pine-tree.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pinterest.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pinwheel-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pinwheel.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pipe-disconnected.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pipe-leak.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pipe-valve.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pipe-wrench.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pipe.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pirate.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pistol.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/piston.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pitchfork.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pizza.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-open-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-lock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-multiple-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-multiple.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-circle.glif ================================================ [File too large to display: 941 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-network-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-network.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-outline.glif ================================================ [File too large to display: 508 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-pause.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-protected-content.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play-speed.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/play.glif ================================================ [File too large to display: 333 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-check.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-edit.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-minus.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-music-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-music.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-play.glif ================================================ [File too large to display: 959 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/playlist-star.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plex.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pliers.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-multiple-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-multiple.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-lock-open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-minus.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-network-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-network.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus-thick.glif ================================================ [File too large to display: 736 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/plus.glif ================================================ [File too large to display: 724 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/podcast.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/podium-bronze.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/podium-gold.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/podium-silver.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/podium.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/point-of-sale.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pokeball.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pokemon-go.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/poker-chip.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/polaroid.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/police-badge-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/police-badge.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/police-station.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/poll.glif ================================================ [File too large to display: 776 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/polo.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/polymer.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pool-thermometer.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pool.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/popcorn.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/post-lamp.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/post-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/post.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/postage-stamp.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot-mix-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot-mix.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot-steam-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot-steam.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pot.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pound-box-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pound-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pound.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-cycle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-on.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-plug-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-plug.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-sleep.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-au.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-ch.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-de.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-eu.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-fr.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-it.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-jp.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-uk.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket-us.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-socket.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power-standby.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/power.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/powershell.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/prescription.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/presentation-play.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/presentation.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pretzel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-heat-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-heat.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d-nozzle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-3d.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-alert.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-eye.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-off-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-pos.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer-wireless.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/printer.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/priority-high.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/priority-low.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/professional-hexagon.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-alert.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-clock.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-close.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-download.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-pencil.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-question.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-star.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-upload.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/progress-wrench.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-off.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-off-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector-screen.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/projector.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/propane-tank-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/propane-tank.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/protocol.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/publish-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/publish.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pulse.glif ================================================ [File too large to display: 811 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pump.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pumpkin.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/purse-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/purse.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-check-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-check.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-edit-outline.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-edit.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-heart-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-heart.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-minus-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-minus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-plus-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-remove-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-star-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle-star.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/puzzle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pyramid-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/pyramid.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qi.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qqchat.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-edit.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-minus.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-plus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-remove.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode-scan.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/qrcode.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/quadcopter.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/quality-high.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/quality-low.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/quality-medium.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/quora.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rabbit-variant-outline.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rabbit-variant.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rabbit.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/racing-helmet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/racquetball.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radar.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiator-disabled.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiator-off.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiator.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio-am.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio-fm.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio-handheld.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio-tower.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radio.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-circle-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radioactive-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radioactive.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiobox-marked.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiology-box-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radiology-box.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radius-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/radius.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/railroad-light.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rake.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/raspberry-pi.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/raw-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/raw.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-end-arrow.glif ================================================ [File too large to display: 896 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-end.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-arrow.glif ================================================ [File too large to display: 894 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-start-vertex-end.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-start.glif ================================================ [File too large to display: 754 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ray-vertex.glif ================================================ [File too large to display: 814 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/razor-double-edge.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/razor-single-edge.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/react.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/read.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-check-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-check.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-minus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-minus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-plus-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-plus.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-remove-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt-text-remove.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/receipt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/record-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/record-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/record-player.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/record-rec.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/record.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rectangle-outline.glif ================================================ [File too large to display: 611 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rectangle.glif ================================================ [File too large to display: 390 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/recycle-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/recycle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reddit.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/redhat.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/redo-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/redo.glif ================================================ [File too large to display: 875 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reflect-horizontal.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reflect-vertical.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/refresh-auto.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/refresh-circle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/refresh.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/regex.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/registered-trademark.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reiterate.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-many.glif ================================================ [File too large to display: 934 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-one-or-many.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-one.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-only-one.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-zero-or-many.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-many-to-zero-or-one.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-many.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-one-or-many.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-one.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-only-one.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-zero-or-many.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-or-many-to-zero-or-one.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-many.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-one-or-many.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-one.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-only-one.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-zero-or-many.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-one-to-zero-or-one.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-many.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-one-or-many.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-one.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-only-one.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-zero-or-many.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-only-one-to-zero-or-one.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-many.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-one-or-many.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-one.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-only-one.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-zero-or-many.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-many-to-zero-or-one.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-many.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-one-or-many.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-one.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-only-one.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-zero-or-many.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relation-zero-or-one-to-zero-or-one.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/relative-scale.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reload-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reload.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reminder.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/remote-desktop.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/remote-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/remote-tv-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/remote-tv.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/remote.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rename-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reorder-horizontal.glif ================================================ [File too large to display: 1013 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reorder-vertical.glif ================================================ [File too large to display: 997 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/repeat-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/repeat-once.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/repeat-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/repeat.glif ================================================ [File too large to display: 1020 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/replay.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reply-all-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reply-all.glif ================================================ [File too large to display: 952 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reply-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reply-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reply.glif ================================================ [File too large to display: 655 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/reproduction.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/resistor-nodes.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/resistor.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/resize-bottom-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/resize.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/responsive.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/restart-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/restart-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/restart.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/restore-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/restore.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-10.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-15.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-30.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-5.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-60.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind-outline.glif ================================================ [File too large to display: 834 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rewind.glif ================================================ [File too large to display: 500 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-medium-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-medium.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-split-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus-split.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rhombus.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ribbon.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rice.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rickshaw-electric.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rickshaw.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ring.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rivet.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/road-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/road.glif ================================================ [File too large to display: 981 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robber.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-angry-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-angry.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-confused-outline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-confused.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-dead-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-dead.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-excited-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-excited.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-happy-outline.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-happy.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-industrial-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-industrial.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-love-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-love.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-mower-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-mower.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-off-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-vacuum-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot-vacuum.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/robot.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rocket-launch-outline.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rocket-launch.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rocket-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rodent.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roller-shade-closed.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roller-shade.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roller-skate-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roller-skate.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rollerblade-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rollerblade.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rollupjs.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rolodex-outline.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rolodex.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-2.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-3.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-4.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-6.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-7.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-8.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/roman-numeral-9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/room-service-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/room-service.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-360.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-3d-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-3d.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-left-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-orbit.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-right-variant.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rotate-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rounded-corner.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/router-network.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless-settings.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/router-wireless.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/router.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/routes-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/routes.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rowing.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rss-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rss-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rss.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rug.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rugby.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ruler-square-compass.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ruler-square.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ruler.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/run-fast.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/run.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/rv-truck.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sack-percent.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sack.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/safe-square-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/safe-square.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/safe.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/safety-goggles.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sail-boat-sink.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sail-boat.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sale-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sale.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/salesforce.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sass.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/satellite-uplink.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/satellite-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/satellite.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sausage-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sausage.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/saw-blade.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sawtooth-wave.glif ================================================ [File too large to display: 570 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/saxophone.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scale-balance.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scale-bathroom.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scale-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scale-unbalanced.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scale.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scan-helper.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scanner-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scanner.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scatter-plot-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scatter-plot.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scent-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scent.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/school-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/school.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scissors-cutting.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scooter-electric.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scooter.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scoreboard-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/scoreboard.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screen-rotation-lock.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screen-rotation.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screw-flat-top.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screw-lag.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screw-machine-flat-top.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screw-machine-round-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screw-round-top.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/screwdriver.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text-key-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text-key.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text-play-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text-play.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script-text.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/script.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sd.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seal-variant.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seal.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/search-web.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-flat-angled.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-flat.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-individual-suite.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-extra.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-normal.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-legroom-reduced.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-passenger.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-recline-extra.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat-recline-normal.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seat.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seatbelt.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/security-network.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/security.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed-plus-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed-plus.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seed.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/seesaw.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/segment.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-all.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-color.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-compare.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-drag.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-group.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-inverse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-marker.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-multiple-marker.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-multiple.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-off.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-place.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-remove.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select-search.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/select.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-drag.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse-arrow-inside.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse-remove.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-ellipse.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-marker.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-multiple-marker.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-multiple.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-remove.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection-search.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/selection.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/semantic-web.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-check-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-check.glif ================================================ [File too large to display: 763 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-circle-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-clock-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-clock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-lock-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-lock.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send-outline.glif ================================================ [File too large to display: 795 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/send.glif ================================================ [File too large to display: 462 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/serial-port.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-network-off.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-network.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-remove.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server-security.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/server.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-all.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-center-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-center.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-left-center.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-left-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-left.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-merge.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-none.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-right.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-split.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-square.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/set-top-box.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/settings-helper.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shaker-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shaker.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-circle-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-oval-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-polygon-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-rectangle-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-square-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape-square-rounded-plus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shape.glif ================================================ [File too large to display: 876 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-all-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-all.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-off.glif ================================================ [File too large to display: 1022 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-variant-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/share.glif ================================================ [File too large to display: 652 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shark-fin-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shark-fin.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shark-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shark.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sheep.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-variant-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-account-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-account.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-airplane-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-airplane.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-alert-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-alert.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-bug-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-bug.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-car.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-check-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-check.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-cross-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-cross.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-crown-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-crown.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-edit-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-edit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-half-full.glif ================================================ [File too large to display: 1018 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-half.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-home-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-home.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-key-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-key.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-link-variant-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-link-variant.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-open-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-open.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-moon-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-moon.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-off.glif ================================================ [File too large to display: 1002 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-plus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-refresh-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-refresh.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-remove-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-remove.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-search.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-star-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-star.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sun-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sun.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sword-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sword.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sync-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield-sync.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shield.glif ================================================ [File too large to display: 684 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shimmer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ship-wheel.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shipping-pallet.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-ballet.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-cleat.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-formal.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-heel.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-print.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shoe-sneaker.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shopping-music.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shopping-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shopping-search-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shopping-search.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shopping.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shore.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shovel-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shovel.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shower-head.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shower.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shredder.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shuffle-disabled.glif ================================================ [File too large to display: 863 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shuffle-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shuffle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/shuriken.glif ================================================ [File too large to display: 894 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sickle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sigma-lower.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sigma.glif ================================================ [File too large to display: 725 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-caution.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-direction.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-pole.glif ================================================ [File too large to display: 642 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-real-estate.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sign-text.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-2g.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-3g.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-4g.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-5g.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-1.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-2.glif ================================================ [File too large to display: 1013 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-3.glif ================================================ [File too large to display: 808 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-cellular-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-distance-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-hspa-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-hspa.glif ================================================ [File too large to display: 734 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-off.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal-variant.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signal.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signature-freehand.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signature-image.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signature-text.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/signature.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silo.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware-clean.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware-fork-knife.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware-fork.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware-spoon.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/silverware.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sim.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/simple-icons.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sina-weibo.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sine-wave.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sitemap-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sitemap.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-m.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-s.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-xl.glif ================================================ [File too large to display: 1021 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-xs.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-xxl.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-xxs.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/size-xxxl.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skate-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skate.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skateboard.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skateboarding.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skew-less.glif ================================================ [File too large to display: 921 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skew-more.glif ================================================ [File too large to display: 923 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ski-cross-country.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ski-water.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ski.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-backward-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-backward.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-forward-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-forward.glif ================================================ [File too large to display: 717 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-next-outline.glif ================================================ [File too large to display: 723 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-next.glif ================================================ [File too large to display: 549 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-circle-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-circle.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous-outline.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skip-previous.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull-crossbones-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull-crossbones.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull-scan-outline.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull-scan.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skull.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skype-business.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/skype.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slack.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slash-forward-box.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slash-forward.glif ================================================ [File too large to display: 394 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sledding.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sleep-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sleep.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slide.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slope-downhill.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slope-uphill.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slot-machine-outline.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/slot-machine.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-off-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-reader-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card-reader.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smart-card.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smog.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-off-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant-alert.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant-off.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector-variant.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke-detector.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoke.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoking-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoking-pipe-off.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoking-pipe.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/smoking.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snail.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snake.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snapchat.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowboard.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-alert.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-check.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-melt.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-thermometer.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowflake.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowman.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowmobile.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/snowshoeing.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soccer-field.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soccer.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/social-distance-2-meters.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/social-distance-6-feet.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sofa-outline.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sofa-single-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sofa-single.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sofa.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solar-panel-large.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solar-panel.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solar-power-variant-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solar-power-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solar-power.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soldering-iron.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/solid.glif ================================================ [File too large to display: 382 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sony-playstation.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-ascending-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-ascending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-descending-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-descending.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-alphabetical-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-ascending.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-ascending-variant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-ascending.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-descending-variant.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-bool-descending.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-calendar-ascending.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-calendar-descending.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-ascending-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-ascending.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-descending-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-clock-descending.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-descending.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-ascending-variant.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-ascending.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-descending-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-descending.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-numeric-variant.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-reverse-variant.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-lock-open.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-lock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort-variant.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sort.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soundbar.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soundcloud.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-check.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-minus.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-plus.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-refresh.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-remove.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch-sync.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-branch.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-end-local.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-end.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-local.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-next-local.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-start-next-local.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit-start.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-commit.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-fork.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-merge.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-pull.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-repository-multiple.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/source-repository.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soy-sauce-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/soy-sauce.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spa-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spa.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/space-invaders.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/space-station.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spade.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speaker-bluetooth.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speaker-multiple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speaker-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speaker-wireless.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speaker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spear.glif ================================================ [File too large to display: 670 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speedometer-medium.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speedometer-slow.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/speedometer.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spellcheck.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sphere-off.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sphere.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spider-thread.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spider-web.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spider.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spirit-level.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spoon-sugar.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spotify.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spotlight-beam.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spotlight.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spray-bottle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/spray.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler-fire.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler-variant.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sprinkler.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sprout-outline.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sprout.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-circle.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-edit-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-medium-outline.glif ================================================ [File too large to display: 617 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-medium.glif ================================================ [File too large to display: 398 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-off-outline.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-off.glif ================================================ [File too large to display: 685 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-opacity.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-outline.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-root-box.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-root.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-badge-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-badge.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-rounded.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-small.glif ================================================ [File too large to display: 396 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square-wave.glif ================================================ [File too large to display: 742 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/square.glif ================================================ [File too large to display: 384 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/squeegee.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ssh.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stack-exchange.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stack-overflow.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stackpath.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stadium-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stadium.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stairs-box.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stairs-down.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stairs-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stairs.glif ================================================ [File too large to display: 900 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stamper.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/standard-definition.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-box-multiple-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-box-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-box-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-box.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-check-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-check.glif ================================================ [File too large to display: 1015 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-circle-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-circle.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-cog-outline.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-cog.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-crescent.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-david.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-face.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-four-points-outline.glif ================================================ [File too large to display: 964 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-four-points.glif ================================================ [File too large to display: 575 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-half-full.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-half.glif ================================================ [File too large to display: 473 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-minus-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-minus.glif ================================================ [File too large to display: 929 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-off.glif ================================================ [File too large to display: 935 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-plus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-plus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-remove-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-remove.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-settings-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-settings.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-shooting-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-shooting.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-three-points-outline.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star-three-points.glif ================================================ [File too large to display: 491 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/star.glif ================================================ [File too large to display: 637 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/state-machine.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/steam.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/steering-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/steering.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/step-backward-2.glif ================================================ [File too large to display: 767 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/step-backward.glif ================================================ [File too large to display: 558 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/step-forward-2.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/step-forward.glif ================================================ [File too large to display: 554 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stethoscope.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-check-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-circle-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-emoji.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-plus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-remove-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-text-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sticker.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stocking.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stomach.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stool-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stool.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stop-circle-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stop-circle.glif ================================================ [File too large to display: 984 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stop.glif ================================================ [File too large to display: 380 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/storage-tank-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/storage-tank.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-24-hour.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-alert-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-clock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-clock.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-cog-outline.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-cog.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-edit-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-edit.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-marker.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-minus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-off-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-plus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-remove.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-search.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-settings-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store-settings.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/store.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/storefront-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/storefront.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stove.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/strategy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stretch-to-page-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/stretch-to-page.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/string-lights-off.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/string-lights.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subdirectory-arrow-left.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subdirectory-arrow-right.glif ================================================ [File too large to display: 719 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/submarine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subtitles-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subtitles.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subway-alert-variant.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subway-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/subway.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/summit.glif ================================================ [File too large to display: 645 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-clock-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-clock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-compass.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-snowflake-variant.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-snowflake.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-thermometer-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-thermometer.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-wireless-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sun-wireless.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sunglasses.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surfing.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-2-0.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-2-1.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-3-1.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-5-1-2.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-5-1.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound-7-1.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/surround-sound.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/svg.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-bold.glif ================================================ [File too large to display: 872 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-horizontal.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-bold.glif ================================================ [File too large to display: 865 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-circle-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-circle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swap-vertical.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/swim.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/switch.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sword-cross.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sword.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-hangul.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-hiragana.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-katakana-halfwidth.glif ================================================ [File too large to display: 968 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/syllabary-katakana.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/symbol.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/symfony.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sync-alert.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sync-circle.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sync-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/sync.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab-minus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab-search.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab-unselected.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tab.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-account.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-alert.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-down.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-left.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-arrow-up.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-border.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-cancel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-chair.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-clock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-cog.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-column-plus-after.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-column-plus-before.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-column-remove.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-column-width.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-column.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-edit.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-eye-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-furniture.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-headers-eye-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-headers-eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-heart.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-key.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-large-plus.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-large-remove.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-large.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-lock.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-merge-cells.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-multiple.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-network.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-of-contents.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-picnic.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-pivot.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-refresh.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-row-height.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-row-plus-after.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-row-plus-before.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-row-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-row.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-settings.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-split-cell.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-sync.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table-tennis.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/table.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tablet-android.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tablet-cellphone.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tablet-dashboard.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tablet.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/taco.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-down-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-down.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-left-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-left.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-right-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-right.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-up-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-arrow-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-check-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-faces.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-heart-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-heart.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-minus-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-multiple.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-off-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-plus-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-remove-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-search-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-search.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-text-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag-text.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tag.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tailwind.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-1.glif ================================================ [File too large to display: 392 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-2.glif ================================================ [File too large to display: 591 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-3.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-4.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tally-mark-5.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tangram.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tank.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tanker-truck.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tape-drive.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tape-measure.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/target-account.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/target-variant.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/target.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/taxi.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tea-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tea.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/teamviewer.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/teddy-bear.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/telescope.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-ambient-light.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-classic-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-classic.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-guide.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-off.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-pause.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-play.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-shimmer.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television-stop.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/television.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/temperature-celsius.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/temperature-fahrenheit.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/temperature-kelvin.glif ================================================ [File too large to display: 746 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tennis-ball.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tennis.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tent.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/terraform.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/test-tube-empty.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/test-tube-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/test-tube.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-account.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-check-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-edit-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-edit.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-minus-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-multiple-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-multiple.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-plus-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-remove-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-search-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box-search.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-box.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-long.glif ================================================ [File too large to display: 993 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-recognition.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-search-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-search.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-shadow.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-short.glif ================================================ [File too large to display: 589 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-to-speech-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text-to-speech.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/text.glif ================================================ [File too large to display: 780 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/texture-box.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/texture.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/theater.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/theme-light-dark.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-bluetooth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-check.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-chevron-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-chevron-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-high.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-lines.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-low.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-minus.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-plus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer-water.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermometer.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermostat-box.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thermostat.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thought-bubble-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thought-bubble.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumb-down-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumb-down.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumb-up-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumb-up.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumbs-up-down-outline.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/thumbs-up-down.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-account.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-confirmation-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-confirmation.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-percent-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket-percent.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ticket.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tie.glif ================================================ [File too large to display: 508 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tilde-off.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tilde.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timelapse.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-alert-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-alert.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-check-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-clock-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-clock.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-help-outline.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-help.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-minus-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-minus.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-plus.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-remove.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-text-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline-text.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timeline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-10.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-3.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-alert-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-alert.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-cancel-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-cancel.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-check-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-check.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-cog-outline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-cog.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-edit-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-edit.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-open-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-open.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock-outline.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-lock.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-marker-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-minus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-minus.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-music-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-music.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-off-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-off.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-pause-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-pause.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-play-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-play.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-plus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-refresh-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-refresh.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-remove-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-remove.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-complete.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-empty.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-full.glif ================================================ [File too large to display: 660 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand-paused.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sand.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-settings-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-star-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-stop-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-stop.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sync-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer-sync.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/timetable.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tire.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toaster-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toaster-oven.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toaster.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-off-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-off.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-variant-off.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toggle-switch.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toilet.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toolbox-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toolbox.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tools.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-account.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-cellphone.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-check-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-check.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-edit-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-edit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-image-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-minus-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-minus.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-remove-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-remove.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-text-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip-text.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooltip.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooth-outline.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tooth.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush-electric.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush-paste.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toothbrush.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/torch.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tortoise.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toslink.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tournament.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tow-truck.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tower-beach.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tower-fire.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/town-hall.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-marker-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-minus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-search-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick-search.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/toy-brick.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/track-light.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trackpad-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trackpad.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tractor-variant.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tractor.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trademark.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/traffic-cone.glif ================================================ [File too large to display: 970 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/traffic-light-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/traffic-light.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-door-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-door.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-car-passenger.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-car.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/train.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tram-side.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tram.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transcribe-close.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transcribe.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transfer-down.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transfer-left.glif ================================================ [File too large to display: 960 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transfer-right.glif ================================================ [File too large to display: 958 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transfer-up.glif ================================================ [File too large to display: 949 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transfer.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection-horizontal.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection-variant.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-connection.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-detour.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-skip.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transit-transfer.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transition-masked.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transition.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/translate-off.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/translate.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-export.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-import.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/transmission-tower.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trash-can-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trash-can.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-arrow-down.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-arrow-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-full.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-minus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray-remove.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tray.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/treasure-chest.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tree-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tree.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trello.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trending-down.glif ================================================ [File too large to display: 700 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trending-neutral.glif ================================================ [File too large to display: 530 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trending-up.glif ================================================ [File too large to display: 697 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triangle-outline.glif ================================================ [File too large to display: 519 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triangle-small-down.glif ================================================ [File too large to display: 367 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triangle-small-up.glif ================================================ [File too large to display: 362 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triangle-wave.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triangle.glif ================================================ [File too large to display: 344 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/triforce.glif ================================================ [File too large to display: 502 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy-award.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy-broken.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy-variant-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy-variant.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trophy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-alert-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-cargo-container.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-check-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-check.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-delivery-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-delivery.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-fast-outline.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-fast.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-flatbed.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-minus-outline.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-minus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-plus-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-remove-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-remove.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-snowflake.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck-trailer.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/truck.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/trumpet.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-crew-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-crew.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-v-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tshirt-v.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tsunami.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer-alert.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer-off.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tumble-dryer.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tune-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tune-vertical-variant.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tune-vertical.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tune.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tunnel-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/tunnel.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/turbine.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/turkey.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/turnstile-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/turnstile.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/turtle.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/twitch.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/two-factor-authentication.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/typewriter.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ubisoft.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ubuntu.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ufo-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ufo.glif ================================================ [File too large to display: 847 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ultra-high-definition.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbraco.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-beach-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-beach.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed-variant.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-closed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/undo-variant.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/undo.glif ================================================ [File too large to display: 846 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unfold-less-horizontal.glif ================================================ [File too large to display: 790 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unfold-less-vertical.glif ================================================ [File too large to display: 787 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unfold-more-horizontal.glif ================================================ [File too large to display: 789 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unfold-more-vertical.glif ================================================ [File too large to display: 785 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/ungroup.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unicode.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unicorn-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unicorn.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unicycle.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unity.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/unreal.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/update.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-lock.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-multiple.glif ================================================ [File too large to display: 933 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-network-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-network.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-off-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-off.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/upload.glif ================================================ [File too large to display: 709 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/usb-flash-drive-outline.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/usb-flash-drive.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/usb-port.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/usb.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vacuum-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vacuum.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/valve-closed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/valve-open.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/valve.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/van-passenger.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/van-utility.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vanish-quarter.glif ================================================ [File too large to display: 803 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vanish.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vanity-light.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/variable-box.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/variable.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-arrange-above.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-arrange-below.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-bezier.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-circle-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-circle.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-combine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-curve.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference-ab.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference-ba.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-difference.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-ellipse.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-intersection.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-line.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-link.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-point.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polygon-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polygon.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-edit.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-plus.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-polyline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-radius.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-rectangle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-selection.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-close.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-edit.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-minus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-open.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-plus.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square-remove.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-square.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-triangle.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vector-union.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vhs.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vibrate-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vibrate.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-2d.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-3d-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-3d-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-3d.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-4k-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-account.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-box-off.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-box.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-check-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-high-definition.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-image.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-input-antenna.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-input-component.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-input-hdmi.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-input-scart.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-input-svideo.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-marker-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-marker.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-minus-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-off-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-outline.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-plus-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-plus.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-stabilization.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-switch-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-switch.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-vintage.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-wireless-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video-wireless.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/video.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-agenda-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-agenda.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-array-outline.glif ================================================ [File too large to display: 1017 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-array.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-carousel-outline.glif ================================================ [File too large to display: 1023 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-carousel.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-column-outline.glif ================================================ [File too large to display: 1021 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-column.glif ================================================ [File too large to display: 800 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-comfy-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-comfy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-compact-outline.glif ================================================ [File too large to display: 1021 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-compact.glif ================================================ [File too large to display: 798 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-edit-outline.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-edit.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-variant-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard-variant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-dashboard.glif ================================================ [File too large to display: 1005 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-day-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-day.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-gallery-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-gallery.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-plus-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-grid-plus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-grid.glif ================================================ [File too large to display: 995 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-headline.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-list-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-list.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-module-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-module.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-parallel-outline.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-parallel.glif ================================================ [File too large to display: 792 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-quilt-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-quilt.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-sequential-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-sequential.glif ================================================ [File too large to display: 804 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-split-horizontal.glif ================================================ [File too large to display: 818 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-split-vertical.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-stream-outline.glif ================================================ [File too large to display: 816 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-stream.glif ================================================ [File too large to display: 595 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-week-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/view-week.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vimeo.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/violin.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/virtual-reality.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/virus-off-outline.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/virus-off.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/virus-outline.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/virus.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vlc.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/voicemail.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volcano-outline.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volcano.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volleyball.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-high.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-low.glif ================================================ [File too large to display: 475 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-medium.glif ================================================ [File too large to display: 786 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-minus.glif ================================================ [File too large to display: 682 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-mute.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-off.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-plus.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-source.glif ================================================ [File too large to display: 889 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-variant-off.glif ================================================ [File too large to display: 827 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/volume-vibrate.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vote-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vote.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vpn.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vuejs.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/vuetify.glif ================================================ [File too large to display: 633 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/walk.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-fire.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-variant-outline.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat-variant.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-flat.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-outline.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-outline.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-variant-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round-variant.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce-round.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall-sconce.glif ================================================ [File too large to display: 850 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wall.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-giftcard.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-membership.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-outline.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-plus-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-plus.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet-travel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallet.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wallpaper.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wan.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wardrobe-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wardrobe.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/warehouse.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine-alert.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine-off.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/washing-machine.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-export-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-export.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-import-variant.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-import.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-variant.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-vibrate-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch-vibrate.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watch.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-alert-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler-alert.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler-off.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-boiler.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-check-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-circle.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-minus-outline.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-minus.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-off-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-off.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-opacity.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-outline.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-percent-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-percent.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-plus-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-plus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-polo.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-pump-off.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-pump.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-remove-outline.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-remove.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-sync.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-thermometer-outline.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-thermometer.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-well-outline.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water-well.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/water.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waterfall.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watering-can-outline.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watering-can.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/watermark.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wave.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waveform.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-left.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-right.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waves-arrow-up.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waves.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/waze.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-arrow-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy-clock.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-cloudy.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-fog.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-hail.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-hazy.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-hurricane.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-lightning-rainy.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-lightning.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-night-partly-cloudy.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-night.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-cloudy.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-lightning.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-rainy.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-snowy-rainy.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-partly-snowy.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-pouring.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-rainy.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy-heavy.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy-rainy.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-snowy.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny-alert.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny-off.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunny.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset-down.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset-up.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-sunset.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-tornado.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-windy-variant.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weather-windy.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-box.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-cancel.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-check.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-clock.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-minus.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-off.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-plus.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-refresh.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-remove.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web-sync.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/web.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/webcam-off.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/webcam.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/webhook.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/webpack.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/webrtc.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wechat.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weight-gram.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weight-kilogram.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weight-lifter.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weight-pound.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/weight.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/whatsapp.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wheel-barrow.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wheelchair-accessibility.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wheelchair.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/whistle-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/whistle.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-auto.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-incandescent.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-iridescent.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/white-balance-sunny.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/widgets-outline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/widgets.glif ================================================ [File too large to display: 1017 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-down.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-left-right.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-left.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-right.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-up-down.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-arrow-up.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-cancel.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-check.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-cog.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-lock-open.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-lock.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-marker.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-minus.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-off.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-plus.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-refresh.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-remove.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-settings.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-star.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-alert.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-lock-open.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-1.glif ================================================ [File too large to display: 938 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2-lock.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-2.glif ================================================ [File too large to display: 938 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-alert.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-lock-open.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3-lock.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-3.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-alert.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-lock-open.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4-lock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-4.glif ================================================ [File too large to display: 547 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-alert-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-lock-open-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-lock-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-off-outline.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-off.glif ================================================ [File too large to display: 1019 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-strength-outline.glif ================================================ [File too large to display: 885 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi-sync.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wifi.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wikipedia.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wind-power-outline.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wind-power.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine-alert.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine-check.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wind-turbine.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-close.glif ================================================ [File too large to display: 918 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-closed-variant.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-closed.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-maximize.glif ================================================ [File too large to display: 605 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-minimize.glif ================================================ [File too large to display: 400 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-open-variant.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-open.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-restore.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-alert.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-cog.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-open.glif ================================================ [File too large to display: 957 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter-settings.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/window-shutter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/windsock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wiper-wash-alert.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wiper-wash.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wiper.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wizard-hat.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wordpress.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wrap-disabled.glif ================================================ [File too large to display: 926 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wrap.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wrench-clock.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wrench-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/wrench.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/xamarin.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/xml.glif ================================================ [File too large to display: 955 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/xmpp.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/yahoo.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/yeast.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/yin-yang.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/yoga.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/youtube-gaming.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/youtube-studio.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/youtube-subscription.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/youtube-tv.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/youtube.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/yurt.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/z-wave.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zend.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zigbee.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zip-box-outline.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zip-box.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zip-disk.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-aquarius.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-aries.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-cancer.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-capricorn.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-gemini.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-leo.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-libra.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-pisces.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-sagittarius.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-scorpio.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-taurus.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/glyphs/zodiac-virgo.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/lib.plist ================================================ [File too large to display: 685.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/MaterialDesignIconsDesktop.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/fontinfo.plist ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/A_W_A_Y_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/C_L_E_A_N__C_O_D_E_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/E_X_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif ================================================ [File too large to display: 668 B] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/I_N_T_E_R_N_A_L__I_N_T_E_R_R_U_P_T_I_O_N_.glif ================================================ [File too large to display: 999 B] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/L_O_N_G__P_A_U_S_E_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/P_A_I_R__P_R_O_G_R_A_M_M_I_N_G_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__D_O_N_E_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__E_S_T_I_M_A_T_E_D_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__S_Q_U_A_S_H_E_D_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/P_O_M_O_D_O_R_O__T_I_C_K_I_N_G_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/S_H_O_R_T__P_A_U_S_E_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/lib.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/Pomicons.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/fontinfo.plist ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/_notdef.glif ================================================ [File too large to display: 640 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/contents.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uni2630.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_0.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_1.glif ================================================ [File too large to display: 1016 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_2.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0A_3.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_0.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_1.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_2.glif ================================================ [File too large to display: 345 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_3.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_4.glif ================================================ [File too large to display: 731 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_5.glif ================================================ [File too large to display: 760 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_6.glif ================================================ [File too large to display: 730 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_7.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_8.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_9.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_A_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_B_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_C_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_D_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_E_.glif ================================================ [File too large to display: 346 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0B_F_.glif ================================================ [File too large to display: 391 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_0.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_1.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_2.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_3.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_4.glif ================================================ [File too large to display: 28.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_5.glif ================================================ [File too large to display: 28.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_6.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_7.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_8.glif ================================================ [File too large to display: 33.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_A_.glif ================================================ [File too large to display: 34.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_C_.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_D_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_E_.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0C_F_.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_0.glif ================================================ [File too large to display: 18.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_1.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_2.glif ================================================ [File too large to display: 588 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/glyphs/uniE_0D_4.glif ================================================ [File too large to display: 592 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/lib.plist ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/PowerlineExtraSymbols.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/fontinfo.plist ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/H_E_A_V_Y_ C_I_R_C_L_E_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ O_N_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ O_N_-O_F_F_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ S_L_E_E_P_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 686 B] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/P_O_W_E_R_ S_Y_M_B_O_L_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/glyphs/contents.plist ================================================ [File too large to display: 626 B] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/lib.plist ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/Unicode_IEC_symbol_font.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/features.fea ================================================ [File too large to display: 118 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/fontinfo.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/account.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/activate-breakpoints.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/add.glif ================================================ [File too large to display: 721 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/archive.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-both.glif ================================================ [File too large to display: 909 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 647 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 649 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 653 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-small-down.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-small-left.glif ================================================ [File too large to display: 659 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-small-right.glif ================================================ [File too large to display: 661 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-small-up.glif ================================================ [File too large to display: 657 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-swap.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 645 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/azure-devops.glif ================================================ [File too large to display: 944 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/azure.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/beaker-stop.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/beaker.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bell-dot.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bell.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bold.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/book.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 891 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bracket-dot.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bracket-error.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/browser.glif ================================================ [File too large to display: 969 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/bug.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/calendar.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/call-incoming.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/call-outgoing.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/case-sensitive.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/check-all.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/check.glif ================================================ [File too large to display: 510 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/checklist.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 524 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 524 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 526 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 520 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chrome-close.glif ================================================ [File too large to display: 743 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chrome-maximize.glif ================================================ [File too large to display: 606 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chrome-minimize.glif ================================================ [File too large to display: 399 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/chrome-restore.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circle-filled.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circle-large-filled.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circle-large-outline.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circle-outline.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circle-slash.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/circuit-board.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/clear-all.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/clippy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/close-all.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/close.glif ================================================ [File too large to display: 729 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/cloud-download.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/cloud-upload.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/cloud.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/code.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/collapse-all.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/color-mode.glif ================================================ [File too large to display: 962 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/combine.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/comment-discussion.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/comment.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/compass-active.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/compass-dot.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/compass.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/contents.plist ================================================ [File too large to display: 24.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/copy.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/dash.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/dashboard.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/database.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-all.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-alt-small.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-alt.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-conditional-unverified.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-conditional.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-data-unverified.glif ================================================ [File too large to display: 810 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-data.glif ================================================ [File too large to display: 499 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-function-unverified.glif ================================================ [File too large to display: 557 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-function.glif ================================================ [File too large to display: 377 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-log-unverified.glif ================================================ [File too large to display: 634 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-log.glif ================================================ [File too large to display: 410 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-breakpoint-unsupported.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-console.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-continue-small.glif ================================================ [File too large to display: 858 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-continue.glif ================================================ [File too large to display: 848 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-coverage.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-disconnect.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-line-by-line.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-pause.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-rerun.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-restart-frame.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-restart.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-reverse-continue.glif ================================================ [File too large to display: 865 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-stackframe-active.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-stackframe-dot.glif ================================================ [File too large to display: 546 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-stackframe.glif ================================================ [File too large to display: 910 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-start.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-step-back.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-step-into.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-step-out.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-step-over.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug-stop.glif ================================================ [File too large to display: 596 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/debug.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/desktop-download.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/device-camera-video.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/device-camera.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/device-mobile.glif ================================================ [File too large to display: 973 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff-added.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff-ignored.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff-modified.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff-removed.glif ================================================ [File too large to display: 975 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff-renamed.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/diff.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/discard.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/edit.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/editor-layout.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/empty-window.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/error.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/exclude.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/expand-all.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/export.glif ================================================ [File too large to display: 801 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/extensions.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/eye-closed.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/eye.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/feedback.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-binary.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-code.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-media.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-pdf.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-submodule.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-symlink-directory.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-symlink-file.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file-zip.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/file.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/files.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/filter-filled.glif ================================================ [File too large to display: 571 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/filter.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/flame.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/fold-down.glif ================================================ [File too large to display: 850 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/fold-up.glif ================================================ [File too large to display: 845 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/fold.glif ================================================ [File too large to display: 835 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/folder-active.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/folder-library.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/folder-opened.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/folder.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/gear.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/gift.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/gist-secret.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-commit.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-compare.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-merge.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-pull-request-closed.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-pull-request-create.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-pull-request-draft.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/git-pull-request.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/github-action.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/github-alt.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/github-inverted.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/github.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/globe.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/go-to-file.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/grabber.glif ================================================ [File too large to display: 584 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/graph-left.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/graph-line.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/graph-scatter.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/gripper.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/group-by-ref-type.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/heart.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/history.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/home.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/horizontal-rule.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/hubot.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/inbox.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/info.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/inspect.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/issue-draft.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/issue-reopened.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/issues.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/italic.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/jersey.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/json.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/kebab-vertical.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/key.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/law.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/layers-active.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/layers-dot.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/layers.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/layout.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/library.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/lightbulb-autofix.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/lightbulb.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/link-external.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/link.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-filter.glif ================================================ [File too large to display: 797 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-flat.glif ================================================ [File too large to display: 994 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-ordered.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-selection.glif ================================================ [File too large to display: 799 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-tree.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/list-unordered.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/live-share.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/loading.glif ================================================ [File too large to display: 761 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/location.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/lock-small.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/lock.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/magnet.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mail-read.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mail.glif ================================================ [File too large to display: 1003 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/markdown.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/megaphone.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mention.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/menu.glif ================================================ [File too large to display: 781 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/merge.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/milestone.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mirror.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mortar-board.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/move.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/multiple-windows.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/mute.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/new-file.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/new-folder.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/newline.glif ================================================ [File too large to display: 1004 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/no-newline.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/note.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/notebook-template.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/notebook.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/octoface.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/open-preview.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/organization.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/output.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/package.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/paintcan.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pass-filled.glif ================================================ [File too large to display: 985 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pass.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/person-add.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/person.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pie-chart.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pin.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pinned-dirty.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pinned.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/play-circle.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/play.glif ================================================ [File too large to display: 622 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/plug.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/preserve-case.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/preview.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/primitive-square.glif ================================================ [File too large to display: 782 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/project.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/pulse.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/question.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/quote.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/radio-tower.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/reactions.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/record-keys.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/record.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/redo.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/references.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/refresh.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/regex.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/remote-explorer.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/remote.glif ================================================ [File too large to display: 841 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/remove.glif ================================================ [File too large to display: 381 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/replace-all.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/replace.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/reply.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo-clone.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo-force-push.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo-forked.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo-pull.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo-push.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/repo.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/report.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/request-changes.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/rocket.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/root-folder-opened.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/root-folder.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/rss.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/run-above.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/run-all.glif ================================================ [File too large to display: 961 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/run-below.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/run-errors.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/save-all.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/save-as.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/save.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/screen-full.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/screen-normal.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/search-stop.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/search.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/server-environment.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/server-process.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/server.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/settings-gear.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/settings.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/shield.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/sign-in.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/sign-out.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/smiley.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/sort-precedence.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/source-control.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/split-horizontal.glif ================================================ [File too large to display: 987 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/split-vertical.glif ================================================ [File too large to display: 983 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/squirrel.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/star-empty.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/star-full.glif ================================================ [File too large to display: 646 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/star-half.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/stop-circle.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-array.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-boolean.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-class.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-color.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-constant.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-enum-member.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-enum.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-event.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-field.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-file.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-interface.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-key.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-keyword.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-method.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-misc.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-namespace.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-numeric.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-operator.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-parameter.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-property.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-ruler.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-snippet.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-string.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-structure.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/symbol-variable.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/sync-ignored.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/sync.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/table.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/tag.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/tasklist.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/telescope.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-bash.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-cmd.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-debian.glif ================================================ [File too large to display: 15.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-linux.glif ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-powershell.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-tmux.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal-ubuntu.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/terminal.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/text-size.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/three-bars.glif ================================================ [File too large to display: 793 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/thumbsdown.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/thumbsup.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/tools.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/trash.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/triangle-down.glif ================================================ [File too large to display: 481 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/triangle-left.glif ================================================ [File too large to display: 483 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/triangle-right.glif ================================================ [File too large to display: 485 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/triangle-up.glif ================================================ [File too large to display: 477 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/twitter.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/type-hierarchy-sub.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/type-hierarchy-super.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/type-hierarchy.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/unfold.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/ungroup-by-ref-type.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/unlock.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/unmute.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/unverified.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/variable-group.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/verified-filled.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/verified.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/versions.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/vm-active.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/vm-connect.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/vm-outline.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/vm-running.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/vm.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/wand.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/warning.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/watch.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/whitespace.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/whole-word.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/window.glif ================================================ [File too large to display: 965 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/word-wrap.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/workspace-trusted.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/workspace-unknown.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/workspace-untrusted.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/zoom-in.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/glyphs/zoom-out.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/lib.plist ================================================ [File too large to display: 36.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/codicon.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/fontinfo.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 11.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_600.glif ================================================ [File too large to display: 830 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_601.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_602.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_603.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_604.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_605.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_606.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_607.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_608.glif ================================================ [File too large to display: 7.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_609.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60A_.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60B_.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60C_.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60D_.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60E_.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_60F_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_610.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_611.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_612.glif ================================================ [File too large to display: 28.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_613.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_614.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_615.glif ================================================ [File too large to display: 9.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_616.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_617.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_618.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_619.glif ================================================ [File too large to display: 14.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61A_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61B_.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61C_.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61D_.glif ================================================ [File too large to display: 12.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_61F_.glif ================================================ [File too large to display: 12.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_620.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_621.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_622.glif ================================================ [File too large to display: 17.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_623.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_624.glif ================================================ [File too large to display: 23.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_625.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_626.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_627.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_628.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_629.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62A_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62B_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62D_.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62E_.glif ================================================ [File too large to display: 18.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_62F_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_630.glif ================================================ [File too large to display: 13.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_631.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_632.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_633.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_634.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_635.glif ================================================ [File too large to display: 1007 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_636.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_637.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_638.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_639.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63A_.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63B_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63C_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63D_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63E_.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_63F_.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_640.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_641.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_642.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_643.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_644.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_645.glif ================================================ [File too large to display: 15.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_646.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_647.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_648.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_649.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64A_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64B_.glif ================================================ [File too large to display: 20.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64C_.glif ================================================ [File too large to display: 26.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64D_.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64E_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_64F_.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_650.glif ================================================ [File too large to display: 17.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_651.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_652.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_653.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_654.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_655.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_656.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_657.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_658.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_659.glif ================================================ [File too large to display: 23.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65A_.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65B_.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65C_.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65D_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65E_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_65F_.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_660.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_661.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_662.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_663.glif ================================================ [File too large to display: 12.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_664.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_665.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_666.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_667.glif ================================================ [File too large to display: 76.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_668.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_669.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66A_.glif ================================================ [File too large to display: 19.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66B_.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66C_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66D_.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66E_.glif ================================================ [File too large to display: 13.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_66F_.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_670.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_671.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_672.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_673.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_674.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_675.glif ================================================ [File too large to display: 19.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_676.glif ================================================ [File too large to display: 11.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_677.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_678.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_679.glif ================================================ [File too large to display: 65.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67A_.glif ================================================ [File too large to display: 13.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67B_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67C_.glif ================================================ [File too large to display: 43.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67D_.glif ================================================ [File too large to display: 13.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_67F_.glif ================================================ [File too large to display: 23.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_680.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_681.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_682.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_683.glif ================================================ [File too large to display: 56.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_684.glif ================================================ [File too large to display: 45.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_685.glif ================================================ [File too large to display: 46.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_686.glif ================================================ [File too large to display: 17.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_687.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_688.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_689.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68A_.glif ================================================ [File too large to display: 20.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68B_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68C_.glif ================================================ [File too large to display: 28.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68D_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68E_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_68F_.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_690.glif ================================================ [File too large to display: 17.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_691.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_692.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_693.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_694.glif ================================================ [File too large to display: 26.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_695.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_696.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_697.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_698.glif ================================================ [File too large to display: 15.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_699.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69A_.glif ================================================ [File too large to display: 25.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69B_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69C_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69D_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69E_.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_69F_.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_0.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_1.glif ================================================ [File too large to display: 15.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_2.glif ================================================ [File too large to display: 860 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_3.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_4.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_5.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_6.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_7.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_8.glif ================================================ [File too large to display: 21.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_9.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_A_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_B_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_C_.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_D_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_E_.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6A_F_.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_0.glif ================================================ [File too large to display: 72.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_1.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_2.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_3.glif ================================================ [File too large to display: 10.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_4.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_5.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_6.glif ================================================ [File too large to display: 81.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_7.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_8.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_9.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_A_.glif ================================================ [File too large to display: 12.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_B_.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_C_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_D_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_E_.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6B_F_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_0.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_1.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_2.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_3.glif ================================================ [File too large to display: 867 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_4.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/glyphs/uniE_6C_5.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/lib.plist ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/devicons.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/fontinfo.plist ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/apple-fruit.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/atom.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bacteria.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/banana.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bath.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bed.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/benzene.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bigger.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/biohazard.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/blogger-circle.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/blogger-square.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bones.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/book-open-o.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/book-open.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/brain.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/bread.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/butterfly.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/carot.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-by.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-cc.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-nc-eu.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-nc-jp.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-nc.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-nd.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-remix.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-sa.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-share.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cc-zero.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/checklist-o.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cherry.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-bishop.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-horse.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-king.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-pawn.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-queen.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chess-tower.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chesse.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chicken-thigh.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chilli.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/chip.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cicling.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cloud.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cockroach.glif ================================================ [File too large to display: 12.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/coffe-beans.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/coins.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/comb.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/comet.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/contents.plist ================================================ [File too large to display: 9.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/crown.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/cup-coffe.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/dice.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/disco.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/dna.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/donut.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/dress.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/drop.glif ================================================ [File too large to display: 948 B] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ello.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/envelope-open-o.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/envelope-open.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/equal-bigger.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/equal.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/feedly.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/file-export.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/file-import.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/fingerprint.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/floppy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/footprint.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/freecodecamp.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/galaxy.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/galery.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/gift-card.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/glass.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/google-drive.glif ================================================ [File too large to display: 945 B] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/google-play.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/gps.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/grav.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/guitar.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/gut.glif ================================================ [File too large to display: 60.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/halter.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/hamburger.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/hat.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/hexagon.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/high-heel.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/hotdog.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ice-cream.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/id-card.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/imdb.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/injection.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/isle.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/java.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/layers.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/lips.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/lipstick.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/liver.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/lollipop.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/loyalty-card.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/lung.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/makeup-brushes.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/maximize.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/meat.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/medicine.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/microscope.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/milk-bottle.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/minimize.glif ================================================ [File too large to display: 939 B] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/molecule.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/moon-cloud.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/mountains.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/mushroom.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/mustache.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/mysql.glif ================================================ [File too large to display: 21.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/nintendo.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/orange.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/palette-color.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/peach.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/pear.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/pi.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/pizza.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/planet.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/plant.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/playstation.glif ================================================ [File too large to display: 20.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/poison.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/popcorn.glif ================================================ [File too large to display: 7.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/popsicle.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/pulse.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/python.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/quora-circle.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/quora-square.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/radioactive.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/raining.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/real-heart.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/refrigerator.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/restore.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ring.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ruby-o.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/ruler.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/shirt.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/slash.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/smaller.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/snowing.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/soda.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/sofa.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/soup.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/spermatozoon.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/spin-double.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/stomach.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/storm.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/sun-cloud.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/sushi.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/tacos.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/telegram-circle.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/telegram.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/telescope.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/thermometer-high.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/thermometer-low.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/thermometer.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/thin-close.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/toilet.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/tools.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/tooth.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/tree.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/triangle-ruler.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/umbrella.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/uterus.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/virus.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/w3c.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/walking.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/wallet.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/wind.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/glyphs/xbox.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/lib.plist ================================================ [File too large to display: 15.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-awesome-extension.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/fontinfo.plist ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_O_S_C_ O_S_.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_lma L_inux.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_lpine.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_pple.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rch L_inux.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rchL_abs.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rchcraft.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rcoL_inux.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rduino.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_rtix L_inux.glif ================================================ [File too large to display: 666 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/A_wesome W_M_.glif ================================================ [File too large to display: 819 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/B_igL_inux.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/B_udgie.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/C_entO_S_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/C_innamon.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/C_odeberg.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/C_oreO_S_.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/C_rystal L_inux.glif ================================================ [File too large to display: 812 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/D_ebian.glif ================================================ [File too large to display: 13.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/D_eepin.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/D_evuan.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/D_ocker.glif ================================================ [File too large to display: 15.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/E_ndeavour O_S_.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/E_nlightenment.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_-droid.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_O_S_D_E_M_.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_edora _inverse_.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_edora.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_erris.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_lathub.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_luxbox.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_orgejo.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_reeB_S_D_.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/F_reeC_A_D_.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_I_M_P_.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_N_O_M_E_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_N_U_ G_uix.glif ================================================ [File too large to display: 15.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_T_K_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_aruda L_inux.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_entoo.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/G_itea.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/H_yperbola G_N_U__L_inux-libre.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/H_yprland.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/I_nkscape.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/J_W_M_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_D_E_ N_eon.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_D_E_ P_lasma.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_ali L_inux.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_denlive.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_iC_ad.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_rita.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_ubuntu _inverse_.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/K_ubuntu.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_X_D_E_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_X_L_E_ L_inux.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_X_Q_t.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_inux M_int _inverse_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_inux M_int.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/L_oc-O_S_.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/M_A_T_E_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/M_X_ L_inux.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/M_ageia.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/M_andriva.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/M_anjaro.glif ================================================ [File too large to display: 963 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/N_eovim.glif ================================================ [File too large to display: 871 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/N_ixO_S_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_S_H_.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_S_H_W_A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_S_I_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_ctoprint.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_penB_S_D_.glif ================================================ [File too large to display: 91.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_penS_C_A_D_.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/O_penS_U_S_E_.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/P_arabola G_N_U__L_inux-libre.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/P_arrot O_S_.glif ================================================ [File too large to display: 779 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/P_op!_O_S_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/P_rusa S_licer.glif ================================================ [File too large to display: 852 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/P_uppy L_inux.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/Q_tile.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/Q_ubesO_S_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/R_I_S_C_-V_.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/R_aspberry pi.glif ================================================ [File too large to display: 15.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/R_ed H_at.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/R_epR_ap.glif ================================================ [File too large to display: 609 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/R_ocky L_inux.glif ================================================ [File too large to display: 967 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_abayon.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_lackware _inverse_.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_lackware.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_nappy.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_olus.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/S_way.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/T_ails.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/T_hunderbird.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/T_or B_rowser.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/T_risquel G_N_U__L_inux.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/T_ux.glif ================================================ [File too large to display: 40.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/U_buntu _inverse_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/U_buntu.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/V_S_ C_odium.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/V_anilla O_S_.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/V_oid.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/W_ayland.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/W_ikimedia.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/X_F_C_E_.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/X_eroL_inux.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/X_monad.glif ================================================ [File too large to display: 759 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/X_org.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/Z_orin O_S_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/bspwm.glif ================================================ [File too large to display: 14.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/contents.plist ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/dwm.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/elementary O_S_.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/freedesktop.org.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/i3.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/illumos.glif ================================================ [File too large to display: 21.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs/mpv.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs.public.background/T_ux.glif ================================================ [File too large to display: 39.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/glyphs.public.background/contents.plist ================================================ [File too large to display: 242 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/layercontents.plist ================================================ [File too large to display: 401 B] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/lib.plist ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/font-logos.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/fontinfo.plist ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/accessibility-inset.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/accessibility.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/alert-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/alert.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/apps.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/archive.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-both.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-down-left.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-down-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-down.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-left.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-right.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-switch.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-up-left.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-up-right.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/arrow-up.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/beaker.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bell-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bell-slash.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bell.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/blocked.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bold.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/book.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bookmark-fill.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bookmark-slash-fill.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bookmark-slash.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bookmark.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/briefcase.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/broadcast.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/browser.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/bug.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/cache.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/calendar.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/check-circle-fill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/check-circle.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/check.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/checkbox.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/checklist.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/chevron-down.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/chevron-left.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/chevron-right.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/chevron-up.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/circle-slash.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/circle.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/clock-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/clock.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/cloud-offline.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/cloud.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/code-of-conduct.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/code-review.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/code-square.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/code.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/codescan-checkmark.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/codescan.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/codespaces.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/columns.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/command-palette.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/comment-discussion.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/comment.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/commit.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/container.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/contents.plist ================================================ [File too large to display: 18.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/copilot-error.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/copilot-warning.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/copilot.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/copy.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/cpu.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/credit-card.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/cross-reference.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/dash.glif ================================================ [File too large to display: 829 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/database.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/dependabot.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/desktop-download.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/device-camera-video.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/device-camera.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/device-desktop.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/device-mobile.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diamond.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff-added.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff-ignored.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff-modified.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff-removed.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff-renamed.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/diff.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/discussion-closed.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/discussion-duplicate.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/discussion-outdated.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/dot-fill.glif ================================================ [File too large to display: 733 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/dot.glif ================================================ [File too large to display: 1000 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/download.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/duplicate.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/ellipsis.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/eye-closed.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/eye.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-discussion.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-forked.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-heart.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-merged.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-person.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-repo.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-rocket.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-star.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-tag.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/feed-trophy.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-added.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-badge.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-binary.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-code.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-diff.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-directory-fill.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-directory-open-fill.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-directory.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-media.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-moved.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-removed.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-submodule.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-symlink-directory.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-symlink-file.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file-zip.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/file.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/filter.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/fiscal-host.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/flame.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/fold-down.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/fold-up.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/fold.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/gear.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/gift.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-branch.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-commit.glif ================================================ [File too large to display: 28.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-compare.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-merge-queue.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-merge.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-pull-request-closed.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-pull-request-draft.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/git-pull-request.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/globe.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/goal.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/grabber.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/graph.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/hash.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/heading.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/heart-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/heart.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/history.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/home-fill.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/home.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/horizontal-rule.glif ================================================ [File too large to display: 849 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/hourglass.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/hubot.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/id-badge.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/image.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/inbox.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/infinity.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/info.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-closed.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-draft.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-opened.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-reopened.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-tracked-by.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/issue-tracks.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/italic.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/iterations.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/kebab-horizontal.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/key-asterisk.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/key.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/law.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/light-bulb.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/link-external.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/link.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/list-ordered.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/list-unordered.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/location.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/lock.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/log.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/logo-gist.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/logo-github.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mail.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mark-github.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/markdown.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/megaphone.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mention.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/meter.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/milestone.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mirror.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/moon.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mortar-board.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/move-to-bottom.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/move-to-end.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/move-to-start.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/move-to-top.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/multi-select.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/mute.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/no-entry.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/north-star.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/note.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/number.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/organization.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/package-dependencies.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/package-dependents.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/package.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/paintbrush.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/paper-airplane.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/paperclip.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/passkey-fill.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/paste.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/pencil.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/people.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/person-add.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/person-fill.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/person.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/pin.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/play.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/plug.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/plus-circle.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/plus.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/project-roadmap.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/project-symlink.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/project-template.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/project.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/pulse.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/question.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/quote.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/read.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/rel-file-path.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/reply.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-clone.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-deleted.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-forked.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-locked.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-pull.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-push.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo-template.glif ================================================ [File too large to display: 7.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/repo.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/report.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/rocket.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/rows.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/rss.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/ruby.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/screen-full.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/screen-normal.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/search.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/server.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/share-android.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/share.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/shield-check.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/shield-lock.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/shield-slash.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/shield-x.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/shield.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sidebar-collapse.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sidebar-expand.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sign-in.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sign-out.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/single-select.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/skip-fill.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/skip.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sliders.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/smiley.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sort-asc.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sort-desc.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sparkle-fill.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sponsor-tiers.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/square-fill.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/square.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/squirrel.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/stack.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/star-fill.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/star.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/stop.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/stopwatch.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/strikethrough.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sun.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/sync.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/tab-external.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/tab.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/table.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/tag.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/tasklist.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/telescope-fill.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/telescope.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/terminal.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/three-bars.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/thumbsdown.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/thumbsup.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/tools.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/trash.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/triangle-down.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/triangle-left.glif ================================================ [File too large to display: 979 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/triangle-right.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/triangle-up.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/trophy.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/typography.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unfold.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unlink.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unlock.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unmute.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unread.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/unverified.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/upload.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/verified.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/versions.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/video.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/webhook.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/workflow.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/x-circle-fill.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/x-circle.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/x.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/zap.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/zoom-in.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/glyphs/zoom-out.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/lib.plist ================================================ [File too large to display: 27.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/octicons.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/fontinfo.plist ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/contents.plist ================================================ [File too large to display: 12.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_asm.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_c.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_common_lisp.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_cpp.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_crystal.glif ================================================ [File too large to display: 794 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_default.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_electron.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_elixir.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_elm.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_emacs.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_fennel.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder.glif ================================================ [File too large to display: 635 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_config.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_git.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_github.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_npm.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_oct.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_folder_open.glif ================================================ [File too large to display: 887 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_go.glif ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_home.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_kotlin.glif ================================================ [File too large to display: 590 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_msdos.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_neovim.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_orgmode.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_play_arrow.glif ================================================ [File too large to display: 510 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_purescript.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_scheme.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_toml.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_v_lang.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_vim.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_custom_windows.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_indent_line.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_apple.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_argdown.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_asm.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_audio.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_babel.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_bazel.glif ================================================ [File too large to display: 716 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_bicep.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_bower.glif ================================================ [File too large to display: 12.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_bsl.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_c.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_c_sharp.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_cake.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_cake_php.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_checkbox.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_checkbox_unchecked.glif ================================================ [File too large to display: 2.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_clock.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_clojure.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_code_climate.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_code_search.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_coffee.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_coldfusion.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_config.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_cpp.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_crystal_embedded.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_css.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_csv.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_cu.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_d.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_dart.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_db.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_default.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_deprecation_cop.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_docker.glif ================================================ [File too large to display: 5.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_editorconfig.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ejs.glif ================================================ [File too large to display: 1.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_elixir_script.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_error.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_eslint.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ethereum.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_f_sharp.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_favicon.glif ================================================ [File too large to display: 802 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_firebase.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_firefox.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_folder.glif ================================================ [File too large to display: 890 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_font.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_git.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_github.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_gitlab.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_go.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_go2.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_godot.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_gradle.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_grails.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_graphql.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_grunt.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_gulp.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_hacklang.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_haml.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_happenings.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_haskell.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_haxe.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_heroku.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_hex.glif ================================================ [File too large to display: 910 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_html.glif ================================================ [File too large to display: 1001 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ignored.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_illustrator.glif ================================================ [File too large to display: 4.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_image.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_info.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ionic.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_jade.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_java.glif ================================================ [File too large to display: 1.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_javascript.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_jenkins.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_jinja.glif ================================================ [File too large to display: 12.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_json.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_julia.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_karma.glif ================================================ [File too large to display: 1011 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_license.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_liquid.glif ================================================ [File too large to display: 11.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_livescript.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_lock.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_lua.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_makefile.glif ================================================ [File too large to display: 936 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_markdown.glif ================================================ [File too large to display: 988 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_maven.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_mdo.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_mustache.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_new_file.glif ================================================ [File too large to display: 4.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_nim.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_notebook.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_npm.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_nunjucks.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ocaml.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_odata.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_pddl.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_pdf.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_perl.glif ================================================ [File too large to display: 4.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_photoshop.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_php.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_pipeline.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_plan.glif ================================================ [File too large to display: 943 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_platformio.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_powershell.glif ================================================ [File too large to display: 920 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_prisma.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_project.glif ================================================ [File too large to display: 1.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_prolog.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_pug.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_puppet.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_python.glif ================================================ [File too large to display: 5.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_r.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_rails.glif ================================================ [File too large to display: 9.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_react.glif ================================================ [File too large to display: 9.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_reasonml.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_rescript.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_rollup.glif ================================================ [File too large to display: 4.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_ruby.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_rust.glif ================================================ [File too large to display: 26.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_salesforce.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_sass.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_sbt.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_scala.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_search.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_settings.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_shell.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_slim.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_smarty.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_spring.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_stylelint.glif ================================================ [File too large to display: 4.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_stylus.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_sublime.glif ================================================ [File too large to display: 5.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_svelte.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_svg.glif ================================================ [File too large to display: 998 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_swift.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_terraform.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_tex.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_todo.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_tsconfig.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_twig.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_typescript.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_vala.glif ================================================ [File too large to display: 6.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_video.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_vue.glif ================================================ [File too large to display: 916 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_wasm.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_wat.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_webpack.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_wgt.glif ================================================ [File too large to display: 11.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_word.glif ================================================ [File too large to display: 8.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_xls.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_xml.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_yarn.glif ================================================ [File too large to display: 5.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_yml.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_zig.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/glyphs/i_seti_zip.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/lib.plist ================================================ [File too large to display: 18.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/original-source.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/fontinfo.plist ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/contents.plist ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_000.glif ================================================ [File too large to display: 15.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_001.glif ================================================ [File too large to display: 13.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_002.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_003.glif ================================================ [File too large to display: 13.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_004.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_005.glif ================================================ [File too large to display: 13.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_006.glif ================================================ [File too large to display: 12.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_007.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_008.glif ================================================ [File too large to display: 16.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_009.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_00A_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_00B_.glif ================================================ [File too large to display: 14.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_00C_.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_00D_.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_00E_.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_010.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_011.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_012.glif ================================================ [File too large to display: 6.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_013.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_014.glif ================================================ [File too large to display: 5.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_015.glif ================================================ [File too large to display: 12.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_016.glif ================================================ [File too large to display: 1.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_017.glif ================================================ [File too large to display: 20.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_018.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_019.glif ================================================ [File too large to display: 9.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_01A_.glif ================================================ [File too large to display: 16.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_01B_.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_01C_.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_01D_.glif ================================================ [File too large to display: 14.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_01E_.glif ================================================ [File too large to display: 9.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_021.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_022.glif ================================================ [File too large to display: 11.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_023.glif ================================================ [File too large to display: 9.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_024.glif ================================================ [File too large to display: 14.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_025.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_026.glif ================================================ [File too large to display: 10.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_027.glif ================================================ [File too large to display: 12.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_028.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_029.glif ================================================ [File too large to display: 18.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02A_.glif ================================================ [File too large to display: 13.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02B_.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02C_.glif ================================================ [File too large to display: 15.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02D_.glif ================================================ [File too large to display: 11.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02E_.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_02F_.glif ================================================ [File too large to display: 10.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_030.glif ================================================ [File too large to display: 7.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_031.glif ================================================ [File too large to display: 5.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_032.glif ================================================ [File too large to display: 13.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_033.glif ================================================ [File too large to display: 7.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_034.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_035.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_036.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_037.glif ================================================ [File too large to display: 18.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_038.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_039.glif ================================================ [File too large to display: 9.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_03A_.glif ================================================ [File too large to display: 12.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_03B_.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_03C_.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_03D_.glif ================================================ [File too large to display: 6.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_03E_.glif ================================================ [File too large to display: 7.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_040.glif ================================================ [File too large to display: 6.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_041.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_042.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_043.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_044.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_045.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_046.glif ================================================ [File too large to display: 10.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_047.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_048.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_049.glif ================================================ [File too large to display: 9.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_04A_.glif ================================================ [File too large to display: 7.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_04B_.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_04C_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_04D_.glif ================================================ [File too large to display: 2.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_04E_.glif ================================================ [File too large to display: 3.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_050.glif ================================================ [File too large to display: 5.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_051.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_052.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_053.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_054.glif ================================================ [File too large to display: 2.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_055.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_056.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_057.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_058.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_059.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_05A_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_05B_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_05C_.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_05D_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_05E_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_060.glif ================================================ [File too large to display: 3.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_061.glif ================================================ [File too large to display: 3.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_062.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_063.glif ================================================ [File too large to display: 11.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_064.glif ================================================ [File too large to display: 12.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_065.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_066.glif ================================================ [File too large to display: 13.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_067.glif ================================================ [File too large to display: 14.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_068.glif ================================================ [File too large to display: 10.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_069.glif ================================================ [File too large to display: 14.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_06A_.glif ================================================ [File too large to display: 15.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_06B_.glif ================================================ [File too large to display: 9.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_06C_.glif ================================================ [File too large to display: 11.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_06D_.glif ================================================ [File too large to display: 12.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_06E_.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_070.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_071.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_072.glif ================================================ [File too large to display: 14.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_073.glif ================================================ [File too large to display: 4.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_074.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_075.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_076.glif ================================================ [File too large to display: 10.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_077.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_078.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_079.glif ================================================ [File too large to display: 6.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_07A_.glif ================================================ [File too large to display: 5.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_07B_.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_07C_.glif ================================================ [File too large to display: 7.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_07D_.glif ================================================ [File too large to display: 10.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_07E_.glif ================================================ [File too large to display: 6.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_080.glif ================================================ [File too large to display: 6.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_081.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_082.glif ================================================ [File too large to display: 14.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_083.glif ================================================ [File too large to display: 5.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_084.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_085.glif ================================================ [File too large to display: 15.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_086.glif ================================================ [File too large to display: 7.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_087.glif ================================================ [File too large to display: 2.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_088.glif ================================================ [File too large to display: 2.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_089.glif ================================================ [File too large to display: 4.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08A_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08B_.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08C_.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08D_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08E_.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_08F_.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_090.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_091.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_092.glif ================================================ [File too large to display: 4.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_093.glif ================================================ [File too large to display: 4.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_094.glif ================================================ [File too large to display: 4.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_095.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_096.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_097.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_098.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_099.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09A_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09B_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09C_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09D_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09E_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_09F_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_0.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_1.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_2.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_3.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_4.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_5.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_6.glif ================================================ [File too large to display: 1.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_7.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_8.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_9.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_A_.glif ================================================ [File too large to display: 1.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_B_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_D_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_E_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0A_F_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_0.glif ================================================ [File too large to display: 1.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_1.glif ================================================ [File too large to display: 3.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_2.glif ================================================ [File too large to display: 11.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_3.glif ================================================ [File too large to display: 18.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_4.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_5.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_6.glif ================================================ [File too large to display: 14.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_7.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_8.glif ================================================ [File too large to display: 6.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_9.glif ================================================ [File too large to display: 8.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_A_.glif ================================================ [File too large to display: 9.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_B_.glif ================================================ [File too large to display: 8.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_C_.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_D_.glif ================================================ [File too large to display: 8.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_E_.glif ================================================ [File too large to display: 6.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0B_F_.glif ================================================ [File too large to display: 10.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_0.glif ================================================ [File too large to display: 8.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_1.glif ================================================ [File too large to display: 8.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_2.glif ================================================ [File too large to display: 7.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_3.glif ================================================ [File too large to display: 9.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_4.glif ================================================ [File too large to display: 13.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_5.glif ================================================ [File too large to display: 10.5 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_6.glif ================================================ [File too large to display: 8.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_7.glif ================================================ [File too large to display: 6.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_8.glif ================================================ [File too large to display: 5.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_9.glif ================================================ [File too large to display: 3.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_A_.glif ================================================ [File too large to display: 3.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_B_.glif ================================================ [File too large to display: 11.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_C_.glif ================================================ [File too large to display: 1.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_D_.glif ================================================ [File too large to display: 1.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_E_.glif ================================================ [File too large to display: 2.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0C_F_.glif ================================================ [File too large to display: 3.2 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_0.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_1.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_2.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_3.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_4.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_5.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_6.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_7.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_8.glif ================================================ [File too large to display: 2.9 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_9.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_A_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_B_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_C_.glif ================================================ [File too large to display: 3.3 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_D_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_E_.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0D_F_.glif ================================================ [File too large to display: 3.1 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_0.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_1.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_2.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_3.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_4.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_5.glif ================================================ [File too large to display: 3.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_6.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_7.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_8.glif ================================================ [File too large to display: 2.6 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_9.glif ================================================ [File too large to display: 2.8 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_A_.glif ================================================ [File too large to display: 2.7 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/glyphs/uniF_0E_B_.glif ================================================ [File too large to display: 1.4 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/layercontents.plist ================================================ [File too large to display: 287 B] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/lib.plist ================================================ [File too large to display: 23.0 KB] ================================================ FILE: sources/nerdfonts/full/processed/weathericons-regular-webfont.ufo/metainfo.plist ================================================ [File too large to display: 318 B] ================================================ FILE: sources/stat.yaml ================================================ [File too large to display: 4.4 KB]